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

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.
@@ -370,46 +370,44 @@ T['io.flow.shopify.v0.unions.shopify_cart_add_form'] = PropTypes.oneOfType([
370
370
  T['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'],
371
371
  ]);
372
372
 
373
- T['io.flow.billing.v0.models.bank_account_reference'] = PropTypes.exact({
374
- id: PropTypes.string.isRequired,
373
+ T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
374
+ discriminator: PropTypes.oneOf(['no_payout']).isRequired,
375
+ placeholder: PropTypes.string,
375
376
  });
376
377
 
377
- T['io.flow.billing.v0.models.organization_default_bank_account'] = PropTypes.exact({
378
- id: PropTypes.string.isRequired,
379
- bank_account: T['io.flow.billing.v0.models.bank_account_reference'].isRequired,
378
+ T['io.flow.billing.v0.enums.payout_attachment_type'] = PropTypes.oneOf(['transactions']);
379
+
380
+ T['io.flow.billing.v0.models.payout_attachment'] = PropTypes.exact({
381
+ type: T['io.flow.billing.v0.enums.payout_attachment_type'].isRequired,
382
+ url: PropTypes.string.isRequired,
380
383
  });
381
384
 
382
- T['io.flow.billing.v0.models.no_payout'] = PropTypes.exact({
383
- discriminator: PropTypes.oneOf(['no_payout']).isRequired,
384
- placeholder: PropTypes.string,
385
+ T['io.flow.billing.v0.models.bank_account_summary'] = PropTypes.exact({
386
+ last4: PropTypes.string.isRequired,
385
387
  });
386
388
 
387
- T['io.flow.billing.v0.models.account_reference'] = PropTypes.exact({
389
+ T['io.flow.billing.v0.models.bank_account_reference'] = PropTypes.exact({
388
390
  id: PropTypes.string.isRequired,
389
- currency: PropTypes.string.isRequired,
390
391
  });
391
392
 
392
- T['io.flow.billing.v0.models.billing_channel_organization_summary'] = PropTypes.exact({
393
+ T['io.flow.billing.v0.models.organization_default_bank_account'] = PropTypes.exact({
393
394
  id: PropTypes.string.isRequired,
395
+ bank_account: T['io.flow.billing.v0.models.bank_account_reference'].isRequired,
394
396
  });
395
397
 
396
- T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'] = PropTypes.exact({
397
- discriminator: PropTypes.oneOf(['usa']).isRequired,
398
- routing_number: PropTypes.string.isRequired,
399
- account_number: PropTypes.string.isRequired,
398
+ T['io.flow.billing.v0.models.channel_default_bank_account'] = PropTypes.exact({
399
+ id: PropTypes.string.isRequired,
400
+ bank_account: T['io.flow.billing.v0.models.bank_account_reference'].isRequired,
400
401
  });
401
402
 
402
- T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([T['io.flow.billing.bank.account.v0.models.bank_account_info_usa']]);
403
-
404
- T['io.flow.billing.v0.models.bank_account_form'] = PropTypes.exact({
405
- last4: PropTypes.string.isRequired,
406
- info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
403
+ T['io.flow.billing.v0.models.billing_channel_organization_summary'] = PropTypes.exact({
404
+ id: PropTypes.string.isRequired,
407
405
  });
408
406
 
409
- T['io.flow.billing.v0.enums.attachment_type'] = PropTypes.oneOf(['csv']);
407
+ T['io.flow.billing.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
410
408
 
411
409
  T['io.flow.billing.v0.models.attachment'] = PropTypes.exact({
412
- type: T['io.flow.billing.v0.enums.attachment_type'].isRequired,
410
+ type: T['io.flow.billing.v0.enums.statement_attachment_type'].isRequired,
413
411
  url: PropTypes.string.isRequired,
414
412
  });
415
413
 
@@ -1210,6 +1208,20 @@ T['io.flow.ftp.v0.models.ftp_organization_settings'] = PropTypes.exact({
1210
1208
  account: T['io.flow.ftp.v0.models.ftp_account'],
1211
1209
  });
1212
1210
 
1211
+ T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'] = PropTypes.oneOf(['passed', 'failed']);
1212
+
1213
+ T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'] = PropTypes.oneOf([
1214
+ 'restricted_party_screening',
1215
+ 'fraud_suspicious_behavior',
1216
+ 'fraud_suspicious_past_activity',
1217
+ 'fraud_risky_velocity',
1218
+ 'fraud_previous_chargebacks',
1219
+ 'order_restricted_goods',
1220
+ 'order_unsupported_destination',
1221
+ 'order_missing_information',
1222
+ 'order_domestic',
1223
+ ]);
1224
+
1213
1225
  T['io.flow.payment.gateway.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
1214
1226
  type: PropTypes.oneOf(['select_option']).isRequired,
1215
1227
  option_id: PropTypes.string.isRequired,
@@ -1271,6 +1283,13 @@ T['io.flow.payment.gateway.v0.models.payment_method_data_init_klarna'] = PropTyp
1271
1283
  placeholder: PropTypes.string,
1272
1284
  });
1273
1285
 
1286
+ T['io.flow.payment.gateway.v0.models.payment_request_review_check'] = PropTypes.exact({
1287
+ type: T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'].isRequired,
1288
+ status: T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'].isRequired,
1289
+ });
1290
+
1291
+ T['io.flow.payment.gateway.v0.enums.payment_request_review_status'] = PropTypes.oneOf(['pending', 'approved', 'rejected']);
1292
+
1274
1293
  T['io.flow.payment.gateway.v0.models.device_details_browser'] = PropTypes.exact({
1275
1294
  type: PropTypes.oneOf(['browser']).isRequired,
1276
1295
  user_agent: PropTypes.string.isRequired,
@@ -1535,7 +1554,7 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
1535
1554
  country_code: PropTypes.string,
1536
1555
  });
1537
1556
 
1538
- T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postal_address', 'phonetic_name']);
1557
+ T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postalAddress', 'phoneticName']);
1539
1558
 
1540
1559
  T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
1541
1560
  'amex',
@@ -1552,7 +1571,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['ship
1552
1571
  T['io.flow.apple.pay.v0.models.apple_pay_shipping_method'] = PropTypes.exact({
1553
1572
  label: PropTypes.string.isRequired,
1554
1573
  detail: PropTypes.string.isRequired,
1555
- amount: PropTypes.number.isRequired,
1574
+ amount: PropTypes.string.isRequired,
1556
1575
  identifier: PropTypes.string.isRequired,
1557
1576
  });
1558
1577
 
@@ -1561,7 +1580,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability'] = PropTypes.oneOf(
1561
1580
  T['io.flow.apple.pay.v0.models.apple_pay_line_item'] = PropTypes.exact({
1562
1581
  label: PropTypes.string.isRequired,
1563
1582
  type: T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'].isRequired,
1564
- amount: PropTypes.number.isRequired,
1583
+ amount: PropTypes.string.isRequired,
1565
1584
  });
1566
1585
 
1567
1586
  T['io.flow.apple.pay.v0.models.apple_pay_payment_info'] = PropTypes.exact({
@@ -2011,17 +2030,6 @@ T['io.flow.shopify.markets.v0.models.shopify_payment_schedules'] = PropTypes.exa
2011
2030
  expected_payment_method: PropTypes.string,
2012
2031
  });
2013
2032
 
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
2033
  T['io.flow.shopify.markets.v0.models.shopify_order_property'] = PropTypes.exact({
2026
2034
  name: PropTypes.string.isRequired,
2027
2035
  value: PropTypes.string.isRequired,
@@ -2504,7 +2512,6 @@ T['io.flow.shopify.external.v0.models.shopify_shipping_line'] = PropTypes.exact(
2504
2512
  title: PropTypes.string.isRequired,
2505
2513
  tax_lines: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_tax_line']).isRequired,
2506
2514
  carrier_identifier: PropTypes.string,
2507
- requested_fulfillment_service_id: PropTypes.string,
2508
2515
  });
2509
2516
 
2510
2517
  T['io.flow.shopify.external.v0.enums.shopify_processing_method_type'] = PropTypes.oneOf(['checkout', 'direct', 'manual', 'offsite', 'express']);
@@ -2532,7 +2539,6 @@ T['io.flow.shopify.external.v0.models.shopify_webhook_order'] = PropTypes.exact(
2532
2539
 
2533
2540
  T['io.flow.shopify.external.v0.models.shopify_line_item_form'] = PropTypes.exact({
2534
2541
  fulfillable_quantity: PropTypes.number,
2535
- fulfillment_service: PropTypes.string.isRequired,
2536
2542
  fulfillment_status: T['io.flow.shopify.external.v0.enums.fulfillment_status_type'],
2537
2543
  grams: PropTypes.number,
2538
2544
  price: PropTypes.string,
@@ -2557,7 +2563,6 @@ T['io.flow.shopify.external.v0.models.shopify_line_item'] = PropTypes.exact({
2557
2563
  id: PropTypes.number.isRequired,
2558
2564
  quantity: PropTypes.number.isRequired,
2559
2565
  fulfillable_quantity: PropTypes.number,
2560
- fulfillment_service: PropTypes.string.isRequired,
2561
2566
  fulfillment_status: T['io.flow.shopify.external.v0.enums.fulfillment_status_type'],
2562
2567
  grams: PropTypes.number,
2563
2568
  price: PropTypes.string,
@@ -4470,8 +4475,6 @@ T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
4470
4475
  carrier_tracking_number: PropTypes.string.isRequired,
4471
4476
  });
4472
4477
 
4473
- T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
4474
-
4475
4478
  T['io.flow.experience.v0.enums.order_payment_type'] = PropTypes.oneOf([
4476
4479
  'card',
4477
4480
  'online',
@@ -5466,6 +5469,12 @@ T['io.flow.payment.v0.models.klarna_sdk_authorization_result_action_details'] =
5466
5469
  payment_method_categories: PropTypes.arrayOf(T['io.flow.payment.v0.models.klarna_payment_method_category']).isRequired,
5467
5470
  });
5468
5471
 
5472
+ T['io.flow.payment.v0.models.applepay_sdk_authorization_result_action_details'] = PropTypes.exact({
5473
+ discriminator: PropTypes.oneOf(['applepay_sdk_authorization_result_action_details']).isRequired,
5474
+ merchant_identifier: PropTypes.string.isRequired,
5475
+ payment_data_request: PropTypes.object.isRequired,
5476
+ });
5477
+
5469
5478
  T['io.flow.payment.v0.models.threeds_challenge_action_details'] = PropTypes.exact({
5470
5479
  discriminator: PropTypes.oneOf(['threeds_challenge_action_details']).isRequired,
5471
5480
  threeds_challenge_action: T['io.flow.payment.v0.unions.threeds_challenge_action'].isRequired,
@@ -6417,6 +6426,7 @@ T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
6417
6426
  paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
6418
6427
  });
6419
6428
 
6429
+ T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
6420
6430
  T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
6421
6431
 
6422
6432
  T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
@@ -7325,6 +7335,23 @@ T['io.flow.internal.v0.models.search_item_summary'] = PropTypes.exact({
7325
7335
  name: PropTypes.string.isRequired,
7326
7336
  });
7327
7337
 
7338
+ T['io.flow.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
7339
+ discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
7340
+ organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
7341
+ num_events: PropTypes.number.isRequired,
7342
+ });
7343
+
7344
+ T['io.flow.internal.v0.models.generate_load_single_org'] = PropTypes.exact({
7345
+ discriminator: PropTypes.oneOf(['generate_load_single_org']).isRequired,
7346
+ organization_id: PropTypes.string.isRequired,
7347
+ num_events: PropTypes.number.isRequired,
7348
+ });
7349
+
7350
+ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
7351
+ T['io.flow.internal.v0.models.generate_load_single_org'],
7352
+ T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
7353
+ ]);
7354
+
7328
7355
  T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
7329
7356
  discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
7330
7357
  percent: PropTypes.number.isRequired,
@@ -7818,6 +7845,14 @@ T['io.flow.internal.v0.models.localized_content_upserted'] = PropTypes.exact({
7818
7845
  source_localization_id: PropTypes.string.isRequired,
7819
7846
  });
7820
7847
 
7848
+ T['io.flow.internal.v0.models.catalog_settings_deleted'] = PropTypes.exact({
7849
+ discriminator: PropTypes.oneOf(['catalog_settings_deleted']).isRequired,
7850
+ event_id: PropTypes.string.isRequired,
7851
+ timestamp: PropTypes.string.isRequired,
7852
+ organization: PropTypes.string.isRequired,
7853
+ id: PropTypes.string.isRequired,
7854
+ });
7855
+
7821
7856
  T['io.flow.internal.v0.models.carrier_account_deleted'] = PropTypes.exact({
7822
7857
  discriminator: PropTypes.oneOf(['carrier_account_deleted']).isRequired,
7823
7858
  event_id: PropTypes.string.isRequired,
@@ -8773,6 +8808,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
8773
8808
  'locations/create',
8774
8809
  'locations/update',
8775
8810
  'locations/delete',
8811
+ 'order_transactions/create',
8776
8812
  'orders/cancelled',
8777
8813
  'orders/create',
8778
8814
  'orders/fulfilled',
@@ -9093,6 +9129,68 @@ T['io.flow.internal.v0.models.ratecard_standard_settings'] = PropTypes.exact({
9093
9129
  margin: PropTypes.number.isRequired,
9094
9130
  });
9095
9131
 
9132
+ T['io.flow.internal.v0.models.rate_level_ratecard'] = PropTypes.exact({
9133
+ id: PropTypes.string.isRequired,
9134
+ ratecard_id: PropTypes.string.isRequired,
9135
+ rate_level_id: PropTypes.string.isRequired,
9136
+ });
9137
+
9138
+ T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'] = PropTypes.exact({
9139
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_ratecard_upserted']).isRequired,
9140
+ event_id: PropTypes.string.isRequired,
9141
+ timestamp: PropTypes.string.isRequired,
9142
+ rate_level_ratecard: T['io.flow.internal.v0.models.rate_level_ratecard'].isRequired,
9143
+ });
9144
+
9145
+ T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'] = PropTypes.exact({
9146
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_ratecard_deleted']).isRequired,
9147
+ event_id: PropTypes.string.isRequired,
9148
+ timestamp: PropTypes.string.isRequired,
9149
+ rate_level_ratecard: T['io.flow.internal.v0.models.rate_level_ratecard'].isRequired,
9150
+ });
9151
+
9152
+ T['io.flow.internal.v0.models.rate_level_organization'] = PropTypes.exact({
9153
+ id: PropTypes.string.isRequired,
9154
+ organization_id: PropTypes.string.isRequired,
9155
+ rate_level_id: PropTypes.string.isRequired,
9156
+ effective_at: PropTypes.string.isRequired,
9157
+ });
9158
+
9159
+ T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'] = PropTypes.exact({
9160
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_organization_upserted']).isRequired,
9161
+ event_id: PropTypes.string.isRequired,
9162
+ timestamp: PropTypes.string.isRequired,
9163
+ organization: PropTypes.string.isRequired,
9164
+ rate_level_organization: T['io.flow.internal.v0.models.rate_level_organization'].isRequired,
9165
+ });
9166
+
9167
+ T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'] = PropTypes.exact({
9168
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_organization_deleted']).isRequired,
9169
+ event_id: PropTypes.string.isRequired,
9170
+ timestamp: PropTypes.string.isRequired,
9171
+ organization: PropTypes.string.isRequired,
9172
+ rate_level_organization: T['io.flow.internal.v0.models.rate_level_organization'].isRequired,
9173
+ });
9174
+
9175
+ T['io.flow.internal.v0.models.rate_level'] = PropTypes.exact({
9176
+ id: PropTypes.string.isRequired,
9177
+ name: PropTypes.string.isRequired,
9178
+ });
9179
+
9180
+ T['io.flow.internal.v0.models.ratecard_rate_level_upserted'] = PropTypes.exact({
9181
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_upserted']).isRequired,
9182
+ event_id: PropTypes.string.isRequired,
9183
+ timestamp: PropTypes.string.isRequired,
9184
+ rate_level: T['io.flow.internal.v0.models.rate_level'].isRequired,
9185
+ });
9186
+
9187
+ T['io.flow.internal.v0.models.ratecard_rate_level_deleted'] = PropTypes.exact({
9188
+ discriminator: PropTypes.oneOf(['ratecard_rate_level_deleted']).isRequired,
9189
+ event_id: PropTypes.string.isRequired,
9190
+ timestamp: PropTypes.string.isRequired,
9191
+ rate_level: T['io.flow.internal.v0.models.rate_level'].isRequired,
9192
+ });
9193
+
9096
9194
  T['io.flow.ratecard.v0.models.ratecard_lanes_import_request_data'] = PropTypes.exact({
9097
9195
  id: PropTypes.string.isRequired,
9098
9196
  source_url: PropTypes.string.isRequired,
@@ -9605,6 +9703,7 @@ T['io.flow.internal.v0.models.restriction_organization_status'] = PropTypes.exac
9605
9703
  full_review_start_date: PropTypes.string,
9606
9704
  full_review_end_date: PropTypes.string,
9607
9705
  reason: PropTypes.string,
9706
+ updated_at: PropTypes.string.isRequired,
9608
9707
  });
9609
9708
 
9610
9709
  T['io.flow.internal.v0.models.restriction_organization_status_upserted'] = PropTypes.exact({
@@ -9678,6 +9777,33 @@ T['io.flow.payment.gateway.v0.models.payment_capture_option_automatic_immediate'
9678
9777
 
9679
9778
  T['io.flow.internal.v0.enums.organization_payment_status'] = PropTypes.oneOf(['active', 'archived']);
9680
9779
 
9780
+ T['io.flow.internal.v0.models.organization_business_entity'] = PropTypes.exact({
9781
+ id: PropTypes.string.isRequired,
9782
+ name: PropTypes.string.isRequired,
9783
+ streets: PropTypes.arrayOf(PropTypes.string).isRequired,
9784
+ city: PropTypes.string.isRequired,
9785
+ province: PropTypes.string,
9786
+ postal: PropTypes.string,
9787
+ country: PropTypes.string.isRequired,
9788
+ });
9789
+
9790
+ T['io.flow.internal.v0.models.organization_business_entity_upserted'] = PropTypes.exact({
9791
+ discriminator: PropTypes.oneOf(['organization_business_entity_upserted']).isRequired,
9792
+ event_id: PropTypes.string.isRequired,
9793
+ timestamp: PropTypes.string.isRequired,
9794
+ organization: PropTypes.string.isRequired,
9795
+ business_entity: T['io.flow.internal.v0.models.organization_business_entity'].isRequired,
9796
+ });
9797
+
9798
+ T['io.flow.internal.v0.models.organization_business_entity_deleted'] = PropTypes.exact({
9799
+ discriminator: PropTypes.oneOf(['organization_business_entity_deleted']).isRequired,
9800
+ event_id: PropTypes.string.isRequired,
9801
+ timestamp: PropTypes.string.isRequired,
9802
+ organization: PropTypes.string.isRequired,
9803
+ business_entity: T['io.flow.internal.v0.models.organization_business_entity'].isRequired,
9804
+ id: PropTypes.string.isRequired,
9805
+ });
9806
+
9681
9807
  T['io.flow.internal.v0.models.feature_id_reference'] = PropTypes.exact({
9682
9808
  id: PropTypes.string.isRequired,
9683
9809
  });
@@ -9801,7 +9927,7 @@ T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTy
9801
9927
 
9802
9928
  T['io.flow.organization.onboarding.state.v0.models.setup_completed'] = PropTypes.exact({
9803
9929
  discriminator: PropTypes.oneOf(['setup_completed']).isRequired,
9804
- placeholder: PropTypes.bool,
9930
+ third_party_logistics_guid: PropTypes.string,
9805
9931
  });
9806
9932
 
9807
9933
  T['io.flow.organization.onboarding.state.v0.models.setup_blocked'] = PropTypes.exact({
@@ -9853,6 +9979,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
9853
9979
  onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
9854
9980
  setup_completed_at: PropTypes.string,
9855
9981
  gmv: PropTypes.number.isRequired,
9982
+ health_score: PropTypes.number.isRequired,
9856
9983
  });
9857
9984
 
9858
9985
  T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
@@ -9950,7 +10077,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_transaction'] = PropTypes.exa
9950
10077
  currency: PropTypes.string.isRequired,
9951
10078
  status: T['io.flow.shopify.markets.v0.enums.shopify_order_transaction_status'],
9952
10079
  payment_details: T['io.flow.shopify.markets.v0.models.shopify_order_payment_detail'],
9953
- receipt: PropTypes.object.isRequired,
10080
+ receipt: PropTypes.object,
9954
10081
  authorization: PropTypes.string,
9955
10082
  created_at: PropTypes.string.isRequired,
9956
10083
  device_id: PropTypes.number,
@@ -10036,14 +10163,12 @@ T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.e
10036
10163
  title: PropTypes.string.isRequired,
10037
10164
  tax_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_tax_line']).isRequired,
10038
10165
  carrier_identifier: PropTypes.string,
10039
- requested_fulfillment_service_id: PropTypes.string,
10040
10166
  price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
10041
10167
  discounted_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
10042
10168
  });
10043
10169
 
10044
10170
  T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact({
10045
10171
  fulfillable_quantity: PropTypes.number,
10046
- fulfillment_service: PropTypes.string.isRequired,
10047
10172
  fulfillment_status: T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status_type'],
10048
10173
  grams: PropTypes.number,
10049
10174
  id: PropTypes.number.isRequired,
@@ -10067,7 +10192,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact
10067
10192
  total_discount: PropTypes.string,
10068
10193
  total_discount_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
10069
10194
  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
10195
  variant_inventory_management: PropTypes.string,
10072
10196
  product_exists: PropTypes.bool,
10073
10197
  duties: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_duty']).isRequired,
@@ -10164,10 +10288,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact(
10164
10288
  updated_at: PropTypes.string,
10165
10289
  first_name: PropTypes.string,
10166
10290
  last_name: PropTypes.string,
10167
- orders_count: PropTypes.number,
10168
10291
  state: PropTypes.string,
10169
- total_spent: PropTypes.string,
10170
- last_order_id: PropTypes.number,
10171
10292
  note: PropTypes.string,
10172
10293
  verified_email: PropTypes.bool,
10173
10294
  multipass_identifier: PropTypes.string,
@@ -10175,7 +10296,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact(
10175
10296
  tax_exemptions: PropTypes.arrayOf(PropTypes.string),
10176
10297
  phone: PropTypes.string,
10177
10298
  tags: PropTypes.string,
10178
- last_order_name: PropTypes.string,
10179
10299
  currency: PropTypes.string,
10180
10300
  addresses: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
10181
10301
  default_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
@@ -10570,7 +10690,6 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
10570
10690
  });
10571
10691
 
10572
10692
  T['io.flow.internal.v0.enums.manual_review_rule_status'] = PropTypes.oneOf(['active', 'archived']);
10573
- T['io.flow.internal.v0.enums.billing_statement_review_status'] = PropTypes.oneOf(['approved', 'pending']);
10574
10693
 
10575
10694
  T['io.flow.internal.v0.models.loyalty_program_reward'] = PropTypes.exact({
10576
10695
  id: PropTypes.string.isRequired,
@@ -11239,6 +11358,11 @@ T['io.flow.payment.gateway.v0.models.action_redirect'] = PropTypes.exact({
11239
11358
  data: PropTypes.object,
11240
11359
  });
11241
11360
 
11361
+ T['io.flow.payment.gateway.v0.models.payment_request_review'] = PropTypes.exact({
11362
+ status: T['io.flow.payment.gateway.v0.enums.payment_request_review_status'].isRequired,
11363
+ checks: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_request_review_check']).isRequired,
11364
+ });
11365
+
11242
11366
  T['io.flow.payment.gateway.v0.unions.payment_capture_option'] = PropTypes.oneOfType([
11243
11367
  T['io.flow.payment.gateway.v0.models.payment_capture_option_automatic_immediate'],
11244
11368
  T['io.flow.payment.gateway.v0.models.payment_capture_option_manual'],
@@ -11873,6 +11997,22 @@ T['io.flow.internal.v0.models.financial_reporting_statement'] = PropTypes.exact(
11873
11997
  adjustments_url: PropTypes.string,
11874
11998
  });
11875
11999
 
12000
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'] = PropTypes.exact({
12001
+ discriminator: PropTypes.oneOf(['usa']).isRequired,
12002
+ routing_number: PropTypes.string.isRequired,
12003
+ account_number: PropTypes.string.isRequired,
12004
+ });
12005
+
12006
+ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
12007
+ name: PropTypes.string.isRequired,
12008
+ });
12009
+
12010
+ T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([T['io.flow.billing.bank.account.v0.models.bank_account_info_usa']]);
12011
+
12012
+ T['io.flow.billing.v0.models.bank_account_form'] = PropTypes.exact({
12013
+ info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
12014
+ });
12015
+
11876
12016
  T['io.flow.internal.v0.models.file_metadata_counts'] = PropTypes.exact({
11877
12017
  transactions: PropTypes.number.isRequired,
11878
12018
  statements: PropTypes.number.isRequired,
@@ -12741,6 +12881,19 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
12741
12881
  text: PropTypes.string.isRequired,
12742
12882
  });
12743
12883
 
12884
+ T['io.flow.internal.v0.enums.rejection_reason'] = PropTypes.oneOf([
12885
+ 'suspicious_behavior',
12886
+ 'suspicious_past_activity',
12887
+ 'risky_velocity',
12888
+ 'previous_chargebacks',
12889
+ 'restricted_party_screening',
12890
+ ]);
12891
+
12892
+ T['io.flow.internal.v0.models.decline_reason_fraud'] = PropTypes.exact({
12893
+ discriminator: PropTypes.oneOf(['fraud']).isRequired,
12894
+ rejection_reason: T['io.flow.internal.v0.enums.rejection_reason'].isRequired,
12895
+ });
12896
+
12744
12897
  T['io.flow.internal.v0.models.debug_transaction_fx_rate'] = PropTypes.exact({
12745
12898
  base: PropTypes.string.isRequired,
12746
12899
  target: PropTypes.string.isRequired,
@@ -12791,13 +12944,14 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
12791
12944
  'virtual_card_refund',
12792
12945
  ]);
12793
12946
 
12794
- T['io.flow.billing.v0.models.billing_channel_payment_request_reference'] = PropTypes.exact({
12947
+ T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
12795
12948
  id: PropTypes.string.isRequired,
12796
- reference: PropTypes.string,
12949
+ source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
12797
12950
  });
12798
12951
 
12799
- T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
12952
+ T['io.flow.billing.v0.models.billing_channel_payment_request_reference'] = PropTypes.exact({
12800
12953
  id: PropTypes.string.isRequired,
12954
+ reference: PropTypes.string,
12801
12955
  });
12802
12956
 
12803
12957
  T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
@@ -12806,6 +12960,10 @@ T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
12806
12960
  identifiers: PropTypes.objectOf(PropTypes.string),
12807
12961
  });
12808
12962
 
12963
+ T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
12964
+ id: PropTypes.string.isRequired,
12965
+ });
12966
+
12809
12967
  T['io.flow.internal.v0.models.debug_label_transaction_summary'] = PropTypes.exact({
12810
12968
  id: PropTypes.string.isRequired,
12811
12969
  type: PropTypes.string.isRequired,
@@ -14134,6 +14292,7 @@ T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
14134
14292
  payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
14135
14293
  supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
14136
14294
  payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
14295
+ review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
14137
14296
  });
14138
14297
 
14139
14298
  T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
@@ -14362,6 +14521,7 @@ T['io.flow.payment.v0.unions.authorization_result_action_details'] = PropTypes.o
14362
14521
  T['io.flow.payment.v0.models.stripe_authorization_result_action_details'],
14363
14522
  T['io.flow.payment.v0.models.threeds_identify_action_details'],
14364
14523
  T['io.flow.payment.v0.models.threeds_challenge_action_details'],
14524
+ T['io.flow.payment.v0.models.applepay_sdk_authorization_result_action_details'],
14365
14525
  T['io.flow.payment.v0.models.klarna_sdk_authorization_result_action_details'],
14366
14526
  T['io.flow.payment.v0.models.select_issuer_option_action_details'],
14367
14527
  ]);
@@ -16945,10 +17105,12 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
16945
17105
  'missing_order_information',
16946
17106
  'unsupported_payment_information',
16947
17107
  'unsupported_shop_currency',
16948
- 'invalid_rate',
17108
+ 'unsupported_free_order',
16949
17109
  'extracting_distribution_info_failed',
16950
17110
  'shipping_estimation_failed',
16951
17111
  'payment_authorization_failed',
17112
+ 'unsupported_subsidized_order',
17113
+ 'unsupported_virtual_goods',
16952
17114
  ]);
16953
17115
 
16954
17116
  T['io.flow.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
@@ -16961,7 +17123,11 @@ T['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'] = PropTy
16961
17123
  decline_reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
16962
17124
  });
16963
17125
 
16964
- T['io.flow.internal.v0.unions.decline_reason'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.decline_reason_channel_order_acceptance']]);
17126
+ T['io.flow.internal.v0.unions.decline_reason'] = PropTypes.oneOfType([
17127
+ T['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'],
17128
+ T['io.flow.internal.v0.models.decline_reason_fraud'],
17129
+ ]);
17130
+
16965
17131
  T['io.flow.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review']);
16966
17132
 
16967
17133
  T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
@@ -17525,9 +17691,18 @@ T['io.flow.internal.v0.models.catalog_settings_put_form'] = PropTypes.exact({
17525
17691
  });
17526
17692
 
17527
17693
  T['io.flow.internal.v0.models.catalog_settings'] = PropTypes.exact({
17694
+ id: PropTypes.string.isRequired,
17528
17695
  mixed_bag_weight: T['io.flow.internal.v0.enums.mixed_bag_weight'].isRequired,
17529
17696
  });
17530
17697
 
17698
+ T['io.flow.internal.v0.models.catalog_settings_upserted'] = PropTypes.exact({
17699
+ discriminator: PropTypes.oneOf(['catalog_settings_upserted']).isRequired,
17700
+ event_id: PropTypes.string.isRequired,
17701
+ timestamp: PropTypes.string.isRequired,
17702
+ organization: PropTypes.string.isRequired,
17703
+ catalog_settings: T['io.flow.internal.v0.models.catalog_settings'].isRequired,
17704
+ });
17705
+
17531
17706
  T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
17532
17707
 
17533
17708
  T['io.flow.shopify.v0.models.shopify_variant_flow_metafield'] = PropTypes.exact({
@@ -18548,330 +18723,68 @@ T['io.flow.internal.v0.models.billing_organization_processing_rates_upserted'] =
18548
18723
  rates: T['io.flow.internal.v0.models.billing_organization_processing_rates'].isRequired,
18549
18724
  });
18550
18725
 
18551
- T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
18552
- discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
18553
- id: PropTypes.string.isRequired,
18726
+ T['io.flow.internal.v0.models.billing_order_destination'] = PropTypes.exact({
18727
+ city: PropTypes.string,
18728
+ province: PropTypes.string,
18729
+ postal: PropTypes.string,
18730
+ country: PropTypes.string.isRequired,
18554
18731
  });
18555
18732
 
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,
18733
+ T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
18734
+ number: PropTypes.string.isRequired,
18735
+ submitted_at: PropTypes.string.isRequired,
18736
+ primary_identifier: PropTypes.string,
18737
+ identifiers: PropTypes.objectOf(PropTypes.string),
18738
+ destination: T['io.flow.internal.v0.models.billing_order_destination'],
18560
18739
  });
18561
18740
 
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,
18741
+ T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'could_not_process']);
18742
+ T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
18570
18743
 
18571
- current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
18744
+ T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
18745
+ code: T['io.flow.internal.v0.enums.bank_payment_status_code'].isRequired,
18746
+ failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
18572
18747
  });
18573
18748
 
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'],
18749
+ T['io.flow.billing.v0.models.payout_status_failed'] = PropTypes.exact({
18750
+ code: PropTypes.oneOf(['failed']).isRequired,
18751
+ timestamp: PropTypes.string.isRequired,
18752
+ reason: T['io.flow.billing.v0.enums.payout_status_failure_code'].isRequired,
18583
18753
  });
18584
18754
 
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,
18755
+ T['io.flow.billing.v0.models.payout_status_sent'] = PropTypes.exact({
18756
+ code: PropTypes.oneOf(['sent']).isRequired,
18757
+ timestamp: PropTypes.string.isRequired,
18589
18758
  });
18590
18759
 
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,
18760
+ T['io.flow.billing.v0.models.payout_status_scheduled'] = PropTypes.exact({
18761
+ code: PropTypes.oneOf(['scheduled']).isRequired,
18762
+ placeholder: PropTypes.string,
18595
18763
  });
18596
18764
 
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'],
18765
+ T['io.flow.billing.v0.unions.payout_status'] = PropTypes.oneOfType([
18766
+ T['io.flow.billing.v0.models.payout_status_scheduled'],
18767
+ T['io.flow.billing.v0.models.payout_status_sent'],
18768
+ T['io.flow.billing.v0.models.payout_status_failed'],
18615
18769
  ]);
18616
18770
 
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,
18771
+ T['io.flow.billing.v0.models.settlement_payout'] = PropTypes.exact({
18772
+ discriminator: PropTypes.oneOf(['payout']).isRequired,
18773
+ status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
18774
+ amount: PropTypes.number.isRequired,
18775
+ sent_on: PropTypes.string,
18624
18776
  });
18625
18777
 
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,
18630
- });
18631
-
18632
- T['io.flow.export.v0.models.export'] = PropTypes.exact({
18633
- 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,
18637
- 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
- });
18643
-
18644
- T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
18645
- 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,
18649
- });
18650
-
18651
- T['io.flow.internal.v0.models.store_connection'] = PropTypes.exact({
18652
- organization: T['io.flow.common.v0.models.organization_reference'],
18653
- id: PropTypes.string.isRequired,
18654
- domain: PropTypes.string.isRequired,
18655
- });
18656
-
18657
- T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exact({
18658
- 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,
18662
- });
18663
-
18664
- T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'] = PropTypes.exact({
18665
- 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'],
18778
+ T['io.flow.billing.v0.unions.settlement'] = PropTypes.oneOfType([
18779
+ T['io.flow.billing.v0.models.settlement_no_payout'],
18780
+ T['io.flow.billing.v0.models.settlement_payout'],
18771
18781
  ]);
18772
18782
 
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({
18783
+ T['io.flow.billing.v0.models.account_reference'] = PropTypes.exact({
18831
18784
  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,
18785
+ currency: PropTypes.string.isRequired,
18868
18786
  });
18869
18787
 
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
18788
  T['io.flow.billing.v0.models.statement'] = PropTypes.exact({
18876
18789
  id: PropTypes.string.isRequired,
18877
18790
  account: T['io.flow.billing.v0.models.account_reference'].isRequired,
@@ -18881,6 +18794,17 @@ T['io.flow.billing.v0.models.statement'] = PropTypes.exact({
18881
18794
  created_at: PropTypes.string.isRequired,
18882
18795
  });
18883
18796
 
18797
+ T['io.flow.billing.v0.models.organization_payout'] = PropTypes.exact({
18798
+ id: PropTypes.string.isRequired,
18799
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18800
+ status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
18801
+ bank_account: T['io.flow.billing.v0.models.bank_account_summary'],
18802
+ amount: PropTypes.number.isRequired,
18803
+ attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.payout_attachment']).isRequired,
18804
+ created_at: PropTypes.string.isRequired,
18805
+ updated_at: PropTypes.string.isRequired,
18806
+ });
18807
+
18884
18808
  T['io.flow.billing.v0.models.channel_statement'] = PropTypes.exact({
18885
18809
  id: PropTypes.string.isRequired,
18886
18810
  account: T['io.flow.billing.v0.models.account_reference'].isRequired,
@@ -18890,9 +18814,15 @@ T['io.flow.billing.v0.models.channel_statement'] = PropTypes.exact({
18890
18814
  created_at: PropTypes.string.isRequired,
18891
18815
  });
18892
18816
 
18893
- T['io.flow.internal.v0.models.account_reference'] = PropTypes.exact({
18817
+ T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
18894
18818
  id: PropTypes.string.isRequired,
18895
- currency: PropTypes.string.isRequired,
18819
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18820
+ status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
18821
+ bank_account: T['io.flow.billing.v0.models.bank_account_summary'],
18822
+ amount: PropTypes.number.isRequired,
18823
+ attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.payout_attachment']).isRequired,
18824
+ created_at: PropTypes.string.isRequired,
18825
+ updated_at: PropTypes.string.isRequired,
18896
18826
  });
18897
18827
 
18898
18828
  T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
@@ -19029,15 +18959,6 @@ T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
19029
18959
  updated_at: PropTypes.string.isRequired,
19030
18960
  });
19031
18961
 
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
18962
  T['io.flow.customer.v0.models.customer_form'] = PropTypes.exact({
19042
18963
  number: PropTypes.string.isRequired,
19043
18964
  email: PropTypes.string,
@@ -19924,23 +19845,6 @@ T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
19924
19845
  roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
19925
19846
  });
19926
19847
 
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
19848
  T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
19945
19849
  role: T['io.flow.common.v0.enums.role'].isRequired,
19946
19850
  });
@@ -20792,13 +20696,31 @@ T['io.flow.billing.v0.models.withholding_deduction'] = PropTypes.exact({
20792
20696
  description: PropTypes.string,
20793
20697
  });
20794
20698
 
20795
- T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
20699
+ T['io.flow.billing.v0.models.payout_transaction'] = PropTypes.exact({
20796
20700
  id: PropTypes.string.isRequired,
20797
20701
  order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
20702
+ payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
20703
+ currency: PropTypes.string.isRequired,
20704
+ source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
20705
+ parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
20706
+ gross: PropTypes.number.isRequired,
20707
+ fees: PropTypes.arrayOf(T['io.flow.billing.v0.models.fee_deduction']).isRequired,
20708
+ withholdings: PropTypes.arrayOf(T['io.flow.billing.v0.models.withholding_deduction']).isRequired,
20709
+ discounts: PropTypes.arrayOf(T['io.flow.billing.v0.models.billing_discount']).isRequired,
20710
+ net: PropTypes.number.isRequired,
20711
+ identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
20712
+ created_at: PropTypes.string.isRequired,
20713
+ updated_at: PropTypes.string.isRequired,
20714
+ });
20715
+
20716
+ T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
20798
20717
  statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
20718
+ id: PropTypes.string.isRequired,
20719
+ order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
20799
20720
  payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
20800
20721
  currency: PropTypes.string.isRequired,
20801
20722
  source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
20723
+ parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
20802
20724
  gross: PropTypes.number.isRequired,
20803
20725
  fees: PropTypes.arrayOf(T['io.flow.billing.v0.models.fee_deduction']).isRequired,
20804
20726
  withholdings: PropTypes.arrayOf(T['io.flow.billing.v0.models.withholding_deduction']).isRequired,
@@ -20806,15 +20728,17 @@ T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
20806
20728
  net: PropTypes.number.isRequired,
20807
20729
  identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
20808
20730
  created_at: PropTypes.string.isRequired,
20731
+ updated_at: PropTypes.string.isRequired,
20809
20732
  });
20810
20733
 
20811
20734
  T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
20735
+ statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
20812
20736
  id: PropTypes.string.isRequired,
20813
20737
  order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
20814
- statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
20815
20738
  payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
20816
20739
  currency: PropTypes.string.isRequired,
20817
20740
  source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
20741
+ parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
20818
20742
  gross: PropTypes.number.isRequired,
20819
20743
  fees: PropTypes.arrayOf(T['io.flow.billing.v0.models.fee_deduction']).isRequired,
20820
20744
  withholdings: PropTypes.arrayOf(T['io.flow.billing.v0.models.withholding_deduction']).isRequired,
@@ -20822,6 +20746,7 @@ T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
20822
20746
  net: PropTypes.number.isRequired,
20823
20747
  identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
20824
20748
  created_at: PropTypes.string.isRequired,
20749
+ updated_at: PropTypes.string.isRequired,
20825
20750
  });
20826
20751
 
20827
20752
  T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
@@ -21030,16 +20955,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
21030
20955
 
21031
20956
  T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
21032
20957
 
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
20958
  T['io.flow.tracking.v0.models.tracking_label_form'] = PropTypes.exact({
21044
20959
  tracking_id: PropTypes.string.isRequired,
21045
20960
  status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
@@ -21134,11 +21049,6 @@ T['io.flow.internal.v0.models.ratecard_service_fees_override_form'] = PropTypes.
21134
21049
  service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
21135
21050
  });
21136
21051
 
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
21052
  T['io.flow.internal.v0.models.ratecard_internal_service_fee'] = PropTypes.exact({
21143
21053
  id: PropTypes.string.isRequired,
21144
21054
  service_id: PropTypes.string.isRequired,
@@ -21873,54 +21783,6 @@ T['io.flow.internal.v0.models.liability_item'] = PropTypes.exact({
21873
21783
  no_liability_reason_code: T['io.flow.internal.v0.enums.no_liability_reason_code'],
21874
21784
  });
21875
21785
 
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
21786
  T['io.flow.internal.v0.models.label_creation_request_form'] = PropTypes.exact({
21925
21787
  organization: PropTypes.string.isRequired,
21926
21788
  shipping_label_form: T['io.flow.label.v0.unions.shipping_label_form'].isRequired,
@@ -22315,328 +22177,490 @@ T['io.flow.internal.v0.unions.order_action_form'] = PropTypes.oneOfType([
22315
22177
  T['io.flow.internal.v0.models.fulfillment_action_form'],
22316
22178
  ]);
22317
22179
 
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,
22180
+ T['io.flow.internal.v0.models.account_deposit_rule'] = PropTypes.exact({
22181
+ target: PropTypes.number.isRequired,
22182
+ rate: PropTypes.number.isRequired,
22323
22183
  });
22324
22184
 
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']),
22185
+ T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
22186
+ name: PropTypes.string.isRequired,
22187
+ description: PropTypes.string.isRequired,
22188
+ offset: PropTypes.number.isRequired,
22336
22189
  });
22337
22190
 
22338
- T['io.flow.internal.v0.models.external_fulfillment_proof'] = PropTypes.exact({
22191
+ T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
22192
+ discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
22339
22193
  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
22194
  });
22344
22195
 
22345
- T['io.flow.internal.v0.models.tiered_fee_tier'] = PropTypes.exact({
22346
- count: PropTypes.number.isRequired,
22347
- amount: PropTypes.number.isRequired,
22196
+ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.exact({
22197
+ discriminator: PropTypes.oneOf(['organization_session_authorization']).isRequired,
22198
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22199
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
22348
22200
  });
22349
22201
 
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,
22353
- });
22202
+ T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
22354
22203
 
22355
- T['io.flow.internal.v0.models.billing_organization_settings'] = PropTypes.exact({
22356
- 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'],
22369
- });
22204
+ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
22205
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22370
22206
 
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,
22377
- });
22207
+ transitions: PropTypes.arrayOf(
22208
+ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
22209
+ ).isRequired,
22378
22210
 
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,
22211
+ current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
22383
22212
  });
22384
22213
 
22385
- T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
22214
+ T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
22386
22215
  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,
22408
- });
22409
-
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,
22216
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22217
+ checkout: T['io.flow.common.v0.models.checkout_reference'].isRequired,
22218
+ order: T['io.flow.experience.v0.models.order_number_reference'].isRequired,
22219
+ urls: T['io.flow.checkout.v0.models.checkout_urls'].isRequired,
22220
+ expires_at: PropTypes.string.isRequired,
22221
+ session: T['io.flow.common.v0.models.session_reference'].isRequired,
22222
+ customer: T['io.flow.common.v0.models.customer_reference'],
22415
22223
  });
22416
22224
 
22417
- T['io.flow.internal.v0.models.account_processing_rates'] = PropTypes.exact({
22225
+ T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
22226
+ discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
22418
22227
  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,
22228
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22424
22229
  });
22425
22230
 
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,
22429
- timestamp: PropTypes.string.isRequired,
22430
- rates: T['io.flow.internal.v0.models.account_processing_rates'].isRequired,
22231
+ T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
22232
+ discriminator: PropTypes.oneOf(['marketing_feeds_export_type']).isRequired,
22233
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22234
+ feed_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
22431
22235
  });
22432
22236
 
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,
22438
- });
22237
+ T['io.flow.export.v0.unions.export_type'] = PropTypes.oneOfType([
22238
+ T['io.flow.export.v0.models.account_transactions_export_type'],
22239
+ T['io.flow.export.v0.models.account_orders_export_type'],
22240
+ T['io.flow.export.v0.models.analytics_export_type'],
22241
+ T['io.flow.export.v0.models.catalog_item_export_type'],
22242
+ T['io.flow.export.v0.models.experience_export_type'],
22243
+ T['io.flow.export.v0.models.harmonization_overview_export_type'],
22244
+ T['io.flow.export.v0.models.harmonization_hs6_export_type'],
22245
+ T['io.flow.export.v0.models.harmonization_hs10_export_type'],
22246
+ T['io.flow.export.v0.models.harmonization_tariff_codes_export_type'],
22247
+ T['io.flow.export.v0.models.unharmonized_item_export_type'],
22248
+ T['io.flow.export.v0.models.order_export_type'],
22249
+ T['io.flow.export.v0.models.price_book_item_export_type'],
22250
+ T['io.flow.export.v0.models.solidus_product_export_type'],
22251
+ T['io.flow.export.v0.models.solidus_variant_export_type'],
22252
+ T['io.flow.export.v0.models.localized_item_prices_export_type'],
22253
+ T['io.flow.export.v0.models.marketing_feeds_export_type'],
22254
+ T['io.flow.export.v0.models.exclusion_rules_export_type'],
22255
+ ]);
22439
22256
 
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,
22257
+ T['io.flow.export.v0.models.scheduled_export_form'] = PropTypes.exact({
22258
+ user_id: PropTypes.string.isRequired,
22259
+ organization_q: PropTypes.string.isRequired,
22260
+ hour: PropTypes.number.isRequired,
22261
+ minute: PropTypes.number.isRequired,
22262
+ timezone: PropTypes.string.isRequired,
22263
+ types: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_type']).isRequired,
22442
22264
  });
22443
22265
 
22444
- T['io.flow.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending', 'pending_proof', 'posted']);
22445
-
22446
- T['io.flow.internal.v0.models.account_transactions_export_request'] = PropTypes.exact({
22447
- discriminator: PropTypes.oneOf(['account_transactions_export_request']).isRequired,
22448
- event_id: PropTypes.string.isRequired,
22449
- timestamp: PropTypes.string.isRequired,
22450
- 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,
22266
+ T['io.flow.export.v0.models.export_form'] = PropTypes.exact({
22267
+ type: T['io.flow.export.v0.unions.export_type'].isRequired,
22268
+ emails: PropTypes.arrayOf(PropTypes.string),
22269
+ organization_q: PropTypes.string,
22467
22270
  });
22468
22271
 
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
- ]);
22272
+ T['io.flow.export.v0.models.export'] = PropTypes.exact({
22273
+ id: PropTypes.string.isRequired,
22274
+ type: T['io.flow.export.v0.unions.export_type'].isRequired,
22275
+ status: T['io.flow.export.v0.enums.export_status'].isRequired,
22276
+ organization_q: PropTypes.string.isRequired,
22277
+ created_at: PropTypes.string.isRequired,
22278
+ started_at: PropTypes.string,
22279
+ completed_at: PropTypes.string,
22280
+ url: PropTypes.string,
22281
+ deliveries: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_delivery']).isRequired,
22282
+ });
22491
22283
 
22492
- T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact({
22493
- discriminator: PropTypes.oneOf(['account_orders_export_request']).isRequired,
22494
- event_id: PropTypes.string.isRequired,
22284
+ T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
22285
+ id: PropTypes.string.isRequired,
22495
22286
  timestamp: PropTypes.string.isRequired,
22496
- 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,
22287
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
22288
+ 'export': T['io.flow.export.v0.models.export'].isRequired,
22514
22289
  });
22515
22290
 
22516
- T['io.flow.internal.v0.models.account_deposit_rule_form'] = PropTypes.exact({
22517
- target: PropTypes.number.isRequired,
22518
- rate: PropTypes.number.isRequired,
22291
+ T['io.flow.internal.v0.models.store_connection'] = PropTypes.exact({
22292
+ organization: T['io.flow.common.v0.models.organization_reference'],
22293
+ id: PropTypes.string.isRequired,
22294
+ domain: PropTypes.string.isRequired,
22519
22295
  });
22520
22296
 
22521
- T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
22297
+ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exact({
22522
22298
  id: PropTypes.string.isRequired,
22299
+ organization_reference: T['io.flow.common.v0.models.organization_reference'].isRequired,
22300
+ order_number: PropTypes.string.isRequired,
22301
+ monitor: T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'].isRequired,
22523
22302
  });
22524
22303
 
22525
- T['io.flow.internal.v0.models.account_contact'] = PropTypes.exact({
22304
+ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'] = PropTypes.exact({
22526
22305
  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'],
22306
+ order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
22307
+ status: T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'].isRequired,
22532
22308
  });
22533
22309
 
22534
- T['io.flow.internal.v0.models.account_contact_upserted'] = PropTypes.exact({
22535
- discriminator: PropTypes.oneOf(['account_contact_upserted']).isRequired,
22310
+ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'] = PropTypes.exact({
22311
+ discriminator: PropTypes.oneOf(['shopify_monitoring_order_monitor_event_upserted']).isRequired,
22536
22312
  event_id: PropTypes.string.isRequired,
22537
22313
  timestamp: PropTypes.string.isRequired,
22538
- account_contact: T['io.flow.internal.v0.models.account_contact'].isRequired,
22314
+ organization: PropTypes.string.isRequired,
22315
+ order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
22539
22316
  });
22540
22317
 
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,
22318
+ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'] = PropTypes.exact({
22319
+ discriminator: PropTypes.oneOf(['shopify_monitoring_order_monitor_event_deleted']).isRequired,
22320
+ event_id: PropTypes.string.isRequired,
22321
+ timestamp: PropTypes.string.isRequired,
22322
+ organization: PropTypes.string.isRequired,
22323
+ order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
22545
22324
  });
22546
22325
 
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'],
22326
+ T['io.flow.internal.v0.models.shop'] = PropTypes.exact({
22327
+ id: PropTypes.string.isRequired,
22328
+ organization: T['io.flow.common.v0.models.organization_reference'],
22329
+ myshopify_domain: PropTypes.string.isRequired,
22330
+ domain: PropTypes.string,
22551
22331
  });
22552
22332
 
22553
- T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
22554
- 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,
22333
+ T['io.flow.internal.v0.models.shopify_shop_upserted'] = PropTypes.exact({
22334
+ discriminator: PropTypes.oneOf(['shopify_shop_upserted']).isRequired,
22335
+ event_id: PropTypes.string.isRequired,
22336
+ timestamp: PropTypes.string.isRequired,
22337
+ shop: T['io.flow.internal.v0.models.shop'].isRequired,
22561
22338
  });
22562
22339
 
22563
- T['io.flow.fulfillment.v0.models.delivery_option_version'] = PropTypes.exact({
22340
+ T['io.flow.internal.v0.models.shop_version'] = PropTypes.exact({
22564
22341
  id: PropTypes.string.isRequired,
22565
22342
  timestamp: PropTypes.string.isRequired,
22566
22343
  type: T['io.flow.common.v0.enums.change_type'].isRequired,
22567
- delivery_option: T['io.flow.fulfillment.v0.models.delivery_option_summary'].isRequired,
22568
- });
22569
-
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'],
22344
+ shop: T['io.flow.internal.v0.models.shop'].isRequired,
22576
22345
  });
22577
22346
 
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,
22347
+ T['io.flow.internal.v0.models.ratecard_internal_summary'] = PropTypes.exact({
22348
+ id: PropTypes.string.isRequired,
22349
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22350
+ number: PropTypes.string.isRequired,
22586
22351
  });
22587
22352
 
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']),
22353
+ T['io.flow.internal.v0.models.ratecard_standard_configuration'] = PropTypes.exact({
22354
+ id: PropTypes.string.isRequired,
22355
+ key: PropTypes.string.isRequired,
22356
+ source_ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
22357
+ settings: T['io.flow.internal.v0.models.ratecard_standard_settings'].isRequired,
22594
22358
  });
22595
22359
 
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'],
22360
+ T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'] = PropTypes.exact({
22361
+ discriminator: PropTypes.oneOf(['ratecard_standard_configuration_upserted']).isRequired,
22362
+ event_id: PropTypes.string.isRequired,
22363
+ timestamp: PropTypes.string.isRequired,
22364
+ organization: PropTypes.string.isRequired,
22365
+ configuration: T['io.flow.internal.v0.models.ratecard_standard_configuration'].isRequired,
22599
22366
  });
22600
22367
 
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,
22368
+ T['io.flow.internal.v0.models.ratecard_service_fees_override'] = PropTypes.exact({
22369
+ ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
22370
+ service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
22604
22371
  });
22605
22372
 
22606
- T['io.flow.fulfillment.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
22373
+ T['io.flow.internal.v0.models.organization_boolean_value'] = PropTypes.exact({
22607
22374
  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,
22375
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22376
+ feature: T['io.flow.internal.v0.models.feature_id_reference'].isRequired,
22377
+ value: PropTypes.bool.isRequired,
22611
22378
  });
22612
22379
 
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,
22380
+ T['io.flow.internal.v0.models.organization_boolean_value_upserted'] = PropTypes.exact({
22381
+ discriminator: PropTypes.oneOf(['organization_boolean_value_upserted']).isRequired,
22382
+ event_id: PropTypes.string.isRequired,
22383
+ timestamp: PropTypes.string.isRequired,
22384
+ value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
22616
22385
  });
22617
22386
 
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'],
22623
- ]);
22387
+ T['io.flow.internal.v0.models.organization_boolean_value_deleted'] = PropTypes.exact({
22388
+ discriminator: PropTypes.oneOf(['organization_boolean_value_deleted']).isRequired,
22389
+ event_id: PropTypes.string.isRequired,
22390
+ timestamp: PropTypes.string.isRequired,
22391
+ value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
22392
+ });
22624
22393
 
22625
- T['io.flow.fulfillment.v0.models.tier_rule'] = PropTypes.exact({
22394
+ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
22395
+ discriminator: PropTypes.oneOf(['organization']).isRequired,
22626
22396
  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,
22397
+ name: PropTypes.string.isRequired,
22398
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
22399
+ parent: T['io.flow.common.v0.models.organization_reference'],
22400
+ defaults: T['io.flow.common.v0.models.organization_defaults'],
22401
+ created_at: PropTypes.string,
22402
+ status: T['io.flow.common.v0.enums.organization_status'],
22403
+ type: T['io.flow.common.v0.enums.organization_type'],
22630
22404
  });
22631
22405
 
22632
- T['io.flow.fulfillment.v0.models.tier_rule_version'] = PropTypes.exact({
22406
+ T['io.flow.organization.v0.models.organization_version'] = PropTypes.exact({
22633
22407
  id: PropTypes.string.isRequired,
22634
22408
  timestamp: PropTypes.string.isRequired,
22635
22409
  type: T['io.flow.common.v0.enums.change_type'].isRequired,
22636
- tier_rule: T['io.flow.fulfillment.v0.models.tier_rule'].isRequired,
22410
+ organization: T['io.flow.common.v0.models.organization'].isRequired,
22637
22411
  });
22638
22412
 
22639
- T['io.flow.fulfillment.v0.models.tier'] = PropTypes.exact({
22413
+ T['io.flow.common.v0.unions.expandable_organization'] = PropTypes.oneOfType([
22414
+ T['io.flow.common.v0.models.organization'],
22415
+ T['io.flow.common.v0.models.organization_reference'],
22416
+ ]);
22417
+
22418
+ T['io.flow.organization.v0.models.invitation'] = PropTypes.exact({
22419
+ id: PropTypes.string.isRequired,
22420
+ organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
22421
+ email: PropTypes.string.isRequired,
22422
+ name: T['io.flow.common.v0.models.name'].isRequired,
22423
+ role: T['io.flow.common.v0.enums.role'],
22424
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
22425
+ expiration: PropTypes.string.isRequired,
22426
+ });
22427
+
22428
+ T['io.flow.organization.v0.models.invitation_version'] = PropTypes.exact({
22429
+ id: PropTypes.string.isRequired,
22430
+ timestamp: PropTypes.string.isRequired,
22431
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
22432
+ invitation: T['io.flow.organization.v0.models.invitation'].isRequired,
22433
+ });
22434
+
22435
+ T['io.flow.internal.v0.models.onboarding_audit_snapshot'] = PropTypes.exact({
22436
+ id: PropTypes.string.isRequired,
22437
+ organization: T['io.flow.common.v0.models.organization'].isRequired,
22438
+ result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
22439
+ theme_reports: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_theme_report']).isRequired,
22440
+ requested_by: T['io.flow.common.v0.models.user'].isRequired,
22441
+ requested_at: PropTypes.string.isRequired,
22442
+ });
22443
+
22444
+ T['io.flow.internal.v0.models.onboarding_audit_report'] = PropTypes.exact({
22445
+ organization: T['io.flow.common.v0.models.organization'].isRequired,
22446
+ result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
22447
+ theme_reports: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_theme_report']).isRequired,
22448
+ });
22449
+
22450
+ T['io.flow.internal.v0.models.merchant_application_summary'] = PropTypes.exact({
22451
+ merchant_application: T['io.flow.merchant.onboarding.v0.unions.merchant_application'].isRequired,
22452
+ organization_reference: T['io.flow.common.v0.models.organization'].isRequired,
22453
+ });
22454
+
22455
+ T['io.flow.internal.v0.models.merchant_application_summaries'] = PropTypes.exact({
22456
+ summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_application_summary']).isRequired,
22457
+ total: PropTypes.number.isRequired,
22458
+ });
22459
+
22460
+ T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
22461
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22462
+ name: PropTypes.string.isRequired,
22463
+ vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
22464
+ identifiers: PropTypes.arrayOf(T['io.flow.common.v0.models.entity_identifier']),
22465
+ streets: PropTypes.arrayOf(PropTypes.string).isRequired,
22466
+ city: PropTypes.string.isRequired,
22467
+ province: PropTypes.string,
22468
+ postal: PropTypes.string,
22469
+ country: PropTypes.string.isRequired,
22470
+ phone: PropTypes.string,
22471
+ email: PropTypes.string,
22472
+ });
22473
+
22474
+ T['io.flow.internal.v0.models.merchant_of_record_entity_settings'] = PropTypes.exact({
22475
+ id: PropTypes.string.isRequired,
22476
+ merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
22477
+ starts_at: PropTypes.string.isRequired,
22478
+ ends_at: PropTypes.string,
22479
+ center: PropTypes.string,
22480
+ currency: PropTypes.string,
22481
+ });
22482
+
22483
+ T['io.flow.internal.v0.models.liability'] = PropTypes.exact({
22484
+ delivery_key: PropTypes.string.isRequired,
22485
+ tax_jurisdiction: PropTypes.string.isRequired,
22486
+ liability_type: T['io.flow.internal.v0.enums.liability_type'].isRequired,
22487
+ reporting_scheme: T['io.flow.internal.v0.enums.reporting_scheme'].isRequired,
22488
+ nature_of_sale: T['io.flow.internal.v0.enums.nature_of_sale'].isRequired,
22489
+ liable_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
22490
+ funding_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
22491
+ reporting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
22492
+ remitting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
22493
+ seller: T['io.flow.common.v0.models.merchant_of_record_entity'],
22494
+ buyer: T['io.flow.common.v0.models.merchant_of_record_entity'],
22495
+ importer: T['io.flow.internal.v0.models.liability_party_details'],
22496
+ exporter: T['io.flow.internal.v0.models.liability_party_details'],
22497
+ amount: T['io.flow.internal.v0.models.liability_money'].isRequired,
22498
+ rate: PropTypes.number.isRequired,
22499
+ name: PropTypes.string.isRequired,
22500
+ basis: T['io.flow.internal.v0.models.liability_money'].isRequired,
22501
+ items: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability_item']).isRequired,
22502
+ tax_number_short_name: PropTypes.string.isRequired,
22503
+ });
22504
+
22505
+ T['io.flow.internal.v0.models.liability_remittance_plan'] = PropTypes.exact({
22506
+ id: PropTypes.string.isRequired,
22507
+ organization: PropTypes.string.isRequired,
22508
+ order_number: PropTypes.string.isRequired,
22509
+ liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']).isRequired,
22510
+ total_tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
22511
+ });
22512
+
22513
+ T['io.flow.internal.v0.models.liability_remittance_plan_upserted'] = PropTypes.exact({
22514
+ discriminator: PropTypes.oneOf(['liability_remittance_plan_upserted']).isRequired,
22515
+ event_id: PropTypes.string.isRequired,
22516
+ timestamp: PropTypes.string.isRequired,
22517
+ organization: PropTypes.string.isRequired,
22518
+ order_number: PropTypes.string.isRequired,
22519
+ liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
22520
+ });
22521
+
22522
+ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.exact({
22523
+ discriminator: PropTypes.oneOf(['liability_remittance_plan_deleted']).isRequired,
22524
+ event_id: PropTypes.string.isRequired,
22525
+ timestamp: PropTypes.string.isRequired,
22526
+ organization: PropTypes.string.isRequired,
22527
+ order_number: PropTypes.string.isRequired,
22528
+ liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
22529
+ });
22530
+
22531
+ T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
22532
+ code: T['io.flow.internal.v0.enums.checkout_error_code'].isRequired,
22533
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
22534
+ organization: T['io.flow.common.v0.models.organization_reference'],
22535
+ redirect: T['io.flow.internal.v0.models.checkout_redirect'],
22536
+ });
22537
+
22538
+ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
22539
+ id: PropTypes.string.isRequired,
22540
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22541
+ key: PropTypes.string.isRequired,
22542
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
22543
+ name: PropTypes.string.isRequired,
22544
+ slug: PropTypes.string,
22545
+ defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
22546
+ attributes: PropTypes.objectOf(PropTypes.string),
22547
+ });
22548
+
22549
+ T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
22550
+ organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
22551
+ tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
22552
+ });
22553
+
22554
+ T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = PropTypes.exact({
22555
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22556
+ number: PropTypes.string.isRequired,
22557
+ });
22558
+
22559
+ T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
22560
+ id: PropTypes.string.isRequired,
22561
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
22562
+ evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
22563
+ });
22564
+
22565
+ T['io.flow.common.v0.models.price'] = PropTypes.exact({
22566
+ amount: PropTypes.number.isRequired,
22567
+ currency: PropTypes.string.isRequired,
22568
+ label: PropTypes.string.isRequired,
22569
+ });
22570
+
22571
+ T['io.flow.fulfillment.v0.models.flat_rate'] = PropTypes.exact({
22572
+ discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
22573
+ price: T['io.flow.common.v0.models.price'].isRequired,
22574
+ zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
22575
+ });
22576
+
22577
+ T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
22578
+ id: PropTypes.string.isRequired,
22579
+ cost: T['io.flow.common.v0.models.price'].isRequired,
22580
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
22581
+ price: T['io.flow.common.v0.models.price'].isRequired,
22582
+ service: T['io.flow.fulfillment.v0.models.service_reference'].isRequired,
22583
+ tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
22584
+ window: T['io.flow.common.v0.models.datetime_range'].isRequired,
22585
+ });
22586
+
22587
+ T['io.flow.fulfillment.v0.models.delivery_option_version'] = PropTypes.exact({
22588
+ id: PropTypes.string.isRequired,
22589
+ timestamp: PropTypes.string.isRequired,
22590
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
22591
+ delivery_option: T['io.flow.fulfillment.v0.models.delivery_option_summary'].isRequired,
22592
+ });
22593
+
22594
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.exact({
22595
+ key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
22596
+ currency: PropTypes.string.isRequired,
22597
+ amount: PropTypes.number.isRequired,
22598
+ label: PropTypes.string.isRequired,
22599
+ base: T['io.flow.common.v0.models.price'],
22600
+ });
22601
+
22602
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
22603
+ source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
22604
+ ratecard_id: PropTypes.string,
22605
+ currency: PropTypes.string.isRequired,
22606
+ amount: PropTypes.number.isRequired,
22607
+ label: PropTypes.string.isRequired,
22608
+ base: T['io.flow.common.v0.models.price'],
22609
+ components: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_component']).isRequired,
22610
+ });
22611
+
22612
+ T['io.flow.fulfillment.v0.models.price_with_base_and_details'] = PropTypes.exact({
22613
+ currency: PropTypes.string.isRequired,
22614
+ amount: PropTypes.number.isRequired,
22615
+ label: PropTypes.string.isRequired,
22616
+ base: T['io.flow.common.v0.models.price'],
22617
+ details: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_detail']),
22618
+ });
22619
+
22620
+ T['io.flow.fulfillment.v0.models.item_shipping_pricing'] = PropTypes.exact({
22621
+ min: T['io.flow.common.v0.models.price'].isRequired,
22622
+ max: T['io.flow.common.v0.models.price'],
22623
+ });
22624
+
22625
+ T['io.flow.fulfillment.v0.models.country_shipping_pricing'] = PropTypes.exact({
22626
+ pricing: T['io.flow.fulfillment.v0.models.item_shipping_pricing'].isRequired,
22627
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
22628
+ });
22629
+
22630
+ T['io.flow.fulfillment.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
22631
+ id: PropTypes.string.isRequired,
22632
+ item: T['io.flow.common.v0.models.item_reference'].isRequired,
22633
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
22634
+ country_shipping_pricings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_shipping_pricing']).isRequired,
22635
+ });
22636
+
22637
+ T['io.flow.fulfillment.v0.models.amount_margin'] = PropTypes.exact({
22638
+ discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
22639
+ margin: T['io.flow.common.v0.models.price'].isRequired,
22640
+ });
22641
+
22642
+ T['io.flow.fulfillment.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
22643
+ T['io.flow.fulfillment.v0.models.amount_margin'],
22644
+ T['io.flow.fulfillment.v0.models.at_cost'],
22645
+ T['io.flow.fulfillment.v0.models.flat_rate'],
22646
+ T['io.flow.fulfillment.v0.models.percent_margin'],
22647
+ ]);
22648
+
22649
+ T['io.flow.fulfillment.v0.models.tier_rule'] = PropTypes.exact({
22650
+ id: PropTypes.string.isRequired,
22651
+ position: PropTypes.number.isRequired,
22652
+ query: PropTypes.string.isRequired,
22653
+ outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'].isRequired,
22654
+ });
22655
+
22656
+ T['io.flow.fulfillment.v0.models.tier_rule_version'] = PropTypes.exact({
22657
+ id: PropTypes.string.isRequired,
22658
+ timestamp: PropTypes.string.isRequired,
22659
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
22660
+ tier_rule: T['io.flow.fulfillment.v0.models.tier_rule'].isRequired,
22661
+ });
22662
+
22663
+ T['io.flow.fulfillment.v0.models.tier'] = PropTypes.exact({
22640
22664
  id: PropTypes.string.isRequired,
22641
22665
  direction: T['io.flow.fulfillment.v0.enums.lane_direction'].isRequired,
22642
22666
  integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
@@ -22961,100 +22985,9 @@ T['io.flow.return.v0.models.return_version'] = PropTypes.exact({
22961
22985
  'return': T['io.flow.return.v0.models.return'].isRequired,
22962
22986
  });
22963
22987
 
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,
22988
+ T['io.flow.internal.v0.models.subscription'] = PropTypes.exact({
22967
22989
  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,
22990
+ organization: PropTypes.string.isRequired,
23058
22991
  value: T['io.flow.common.v0.models.price'].isRequired,
23059
22992
  frequency: T['io.flow.internal.v0.enums.subscription_frequency'].isRequired,
23060
22993
  starts_at: PropTypes.string.isRequired,
@@ -23095,14 +23028,6 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
23095
23028
  updated_at: PropTypes.string.isRequired,
23096
23029
  });
23097
23030
 
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
23031
  T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
23107
23032
  discriminator: PropTypes.oneOf(['payment_summary_v2']).isRequired,
23108
23033
  id: PropTypes.string.isRequired,
@@ -23121,26 +23046,6 @@ T['io.flow.internal.v0.unions.transaction_summary'] = PropTypes.oneOfType([
23121
23046
  T['io.flow.internal.v0.models.fraud_summary'],
23122
23047
  ]);
23123
23048
 
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
23049
  T['io.flow.internal.v0.models.order_revenue_timeline_data_point'] = PropTypes.exact({
23145
23050
  timestamp: PropTypes.string.isRequired,
23146
23051
  count: PropTypes.number.isRequired,
@@ -23243,108 +23148,12 @@ T['io.flow.internal.v0.models.order_rates_published_v3'] = PropTypes.exact({
23243
23148
  data: T['io.flow.internal.v0.models.order_rates_data_v3'].isRequired,
23244
23149
  });
23245
23150
 
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
23151
  T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
23320
23152
  id: PropTypes.string.isRequired,
23321
23153
  description: PropTypes.string.isRequired,
23322
23154
  value: T['io.flow.common.v0.models.price'].isRequired,
23323
23155
  });
23324
23156
 
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
23157
  T['io.flow.internal.v0.models.gift_card'] = PropTypes.exact({
23349
23158
  id: PropTypes.string.isRequired,
23350
23159
  number: PropTypes.string.isRequired,
@@ -23366,39 +23175,6 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
23366
23175
  gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
23367
23176
  });
23368
23177
 
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
23178
  T['io.flow.internal.v0.models.components'] = PropTypes.exact({
23403
23179
  vat: T['io.flow.common.v0.models.price'].isRequired,
23404
23180
  duty: T['io.flow.common.v0.models.price'].isRequired,
@@ -23663,56 +23439,10 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
23663
23439
  transfer: T['io.flow.internal.v0.models.fee'],
23664
23440
  });
23665
23441
 
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'],
23442
+ T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
23443
+ date: PropTypes.string.isRequired,
23444
+ amount: T['io.flow.common.v0.models.price'].isRequired,
23445
+ conditions: PropTypes.string,
23716
23446
  });
23717
23447
 
23718
23448
  T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
@@ -23740,7 +23470,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
23740
23470
 
23741
23471
  T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
23742
23472
  id: PropTypes.string.isRequired,
23743
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23473
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
23744
23474
  period: T['io.flow.common.v0.models.datetime_range'].isRequired,
23745
23475
  totals: T['io.flow.internal.v0.models.billing_statement_totals'].isRequired,
23746
23476
  attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
@@ -23748,7 +23478,7 @@ T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact
23748
23478
 
23749
23479
  T['io.flow.internal.v0.models.channel_billing_statement'] = PropTypes.exact({
23750
23480
  id: PropTypes.string.isRequired,
23751
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23481
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
23752
23482
  period: T['io.flow.common.v0.models.datetime_range'].isRequired,
23753
23483
  totals: T['io.flow.internal.v0.models.billing_statement_totals'].isRequired,
23754
23484
  attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
@@ -23756,7 +23486,7 @@ T['io.flow.internal.v0.models.channel_billing_statement'] = PropTypes.exact({
23756
23486
 
23757
23487
  T['io.flow.internal.v0.models.billing_statement_summary'] = PropTypes.exact({
23758
23488
  id: PropTypes.string.isRequired,
23759
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23489
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
23760
23490
  period: T['io.flow.common.v0.models.datetime_range'].isRequired,
23761
23491
  totals: T['io.flow.internal.v0.models.billing_statement_totals'].isRequired,
23762
23492
  attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
@@ -23769,19 +23499,14 @@ T['io.flow.internal.v0.models.billing_statement_upserted'] = PropTypes.exact({
23769
23499
  statement: T['io.flow.internal.v0.models.billing_statement_summary'].isRequired,
23770
23500
  });
23771
23501
 
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
23502
  T['io.flow.internal.v0.models.bank_payment'] = PropTypes.exact({
23778
23503
  id: PropTypes.string.isRequired,
23779
23504
  key: PropTypes.string.isRequired,
23780
- account: T['io.flow.internal.v0.models.account_reference'].isRequired,
23505
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
23781
23506
  reference: PropTypes.string,
23782
- sent_on: PropTypes.string.isRequired,
23783
- status: T['io.flow.billing.v0.models.payout_status'].isRequired,
23784
- expected_delivery_by: PropTypes.string.isRequired,
23507
+ sent_on: PropTypes.string,
23508
+ status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
23509
+ expected_delivery_by: PropTypes.string,
23785
23510
  total: T['io.flow.common.v0.models.price'].isRequired,
23786
23511
  });
23787
23512
 
@@ -24104,22 +23829,6 @@ T['io.flow.customer.v0.models.customer_bundle'] = PropTypes.exact({
24104
23829
  last_used: T['io.flow.customer.v0.models.customer_last_used'],
24105
23830
  });
24106
23831
 
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
23832
  T['io.flow.internal.v0.models.shopify_order_line_content'] = PropTypes.exact({
24124
23833
  item_number: PropTypes.string.isRequired,
24125
23834
  quantity: PropTypes.number.isRequired,
@@ -24143,72 +23852,6 @@ T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'
24143
23852
  total: T['io.flow.common.v0.models.price_with_base'].isRequired,
24144
23853
  });
24145
23854
 
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
23855
  T['io.flow.export.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
24213
23856
  item: T['io.flow.catalog.v0.models.localized_item_price'].isRequired,
24214
23857
  vat: T['io.flow.catalog.v0.models.localized_item_vat'],
@@ -24677,48 +24320,646 @@ T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
24677
24320
  customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
24678
24321
  });
24679
24322
 
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,
24323
+ T['io.flow.internal.v0.models.shipped_item_value'] = PropTypes.exact({
24324
+ item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
24325
+ taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
24326
+ duties: T['io.flow.common.v0.models.price_with_base'].isRequired,
24327
+ total: T['io.flow.common.v0.models.price_with_base'].isRequired,
24328
+ });
24329
+
24330
+ T['io.flow.internal.v0.models.items_shipped'] = PropTypes.exact({
24331
+ discriminator: PropTypes.oneOf(['items_shipped']).isRequired,
24332
+ event_id: PropTypes.string.isRequired,
24333
+ timestamp: PropTypes.string.isRequired,
24334
+ organization: PropTypes.string.isRequired,
24335
+ order_number: PropTypes.string.isRequired,
24336
+ order: T['io.flow.experience.v0.models.order'].isRequired,
24337
+ fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
24338
+ flow_tracking_number: PropTypes.string.isRequired,
24339
+ shipped_item_values: PropTypes.arrayOf(T['io.flow.internal.v0.models.shipped_item_value']).isRequired,
24340
+ });
24341
+
24342
+ T['io.flow.internal.v0.models.authorized_shipping_charge'] = PropTypes.exact({
24343
+ discriminator: PropTypes.oneOf(['authorized_shipping_charge']).isRequired,
24344
+ price: T['io.flow.common.v0.models.price_with_base'].isRequired,
24345
+ charge_trigger: T['io.flow.internal.v0.enums.order_charge_trigger'].isRequired,
24346
+ });
24347
+
24348
+ T['io.flow.internal.v0.unions.authorized_order_charge'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.authorized_shipping_charge']]);
24349
+
24350
+ T['io.flow.internal.v0.models.authorized_line_item_charge'] = PropTypes.exact({
24351
+ item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
24352
+ line_number: PropTypes.number,
24353
+ price: T['io.flow.common.v0.models.price_with_base'].isRequired,
24354
+ taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
24355
+ duties: T['io.flow.common.v0.models.price_with_base'].isRequired,
24356
+ });
24357
+
24358
+ T['io.flow.internal.v0.models.authorized_charge_status'] = PropTypes.exact({
24359
+ line_item_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorized_line_item_charge']).isRequired,
24360
+ order_charges: PropTypes.arrayOf(T['io.flow.internal.v0.unions.authorized_order_charge']).isRequired,
24361
+ authorized: T['io.flow.common.v0.models.price_with_base'].isRequired,
24362
+ captured: T['io.flow.common.v0.models.price_with_base'].isRequired,
24363
+ cancelled: T['io.flow.common.v0.models.price_with_base'].isRequired,
24364
+ refunded: T['io.flow.common.v0.models.price_with_base'].isRequired,
24365
+ });
24366
+
24367
+ T['io.flow.internal.v0.models.account_statistics'] = PropTypes.exact({
24368
+ transfers: T['io.flow.common.v0.models.price'].isRequired,
24369
+ balance: T['io.flow.common.v0.models.price'].isRequired,
24370
+ pending: T['io.flow.common.v0.models.price'].isRequired,
24371
+ });
24372
+
24373
+ T['io.flow.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
24374
+
24375
+ T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
24376
+ id: PropTypes.string.isRequired,
24377
+ type: T['io.flow.internal.v0.enums.account_type'].isRequired,
24378
+ });
24379
+
24380
+ T['io.flow.internal.v0.models.account_summary'] = PropTypes.exact({
24381
+ id: PropTypes.string.isRequired,
24382
+ currency: PropTypes.string.isRequired,
24383
+ source: T['io.flow.internal.v0.models.account_source'].isRequired,
24384
+ });
24385
+
24386
+ T['io.flow.internal.v0.models.pending_bank_payment'] = PropTypes.exact({
24387
+ id: PropTypes.string.isRequired,
24388
+ account: T['io.flow.internal.v0.models.account_summary'].isRequired,
24389
+ total: T['io.flow.common.v0.models.price'].isRequired,
24390
+ details: PropTypes.arrayOf(T['io.flow.internal.v0.models.pending_bank_payment_detail']).isRequired,
24391
+ });
24392
+
24393
+ T['io.flow.internal.v0.models.finance_bank_account'] = PropTypes.exact({
24394
+ id: PropTypes.string.isRequired,
24395
+ account: T['io.flow.internal.v0.models.account_summary'].isRequired,
24396
+ last4: PropTypes.string.isRequired,
24397
+ info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
24398
+ owner: T['io.flow.internal.v0.models.finance_bank_account_owner'].isRequired,
24399
+ });
24400
+
24401
+ T['io.flow.internal.v0.enums.account_setting_liabilities_method'] = PropTypes.oneOf(['withholding', 'transaction']);
24402
+ T['io.flow.internal.v0.enums.fees_source'] = PropTypes.oneOf(['settings', 'authorization_bundle']);
24403
+ T['io.flow.internal.v0.enums.statement_transfer_transaction_location'] = PropTypes.oneOf(['transactions_file', 'summary']);
24404
+ T['io.flow.internal.v0.enums.transaction_posting_method'] = PropTypes.oneOf(['time', 'proof']);
24405
+ T['io.flow.internal.v0.enums.transfer_method'] = PropTypes.oneOf(['ach']);
24406
+ T['io.flow.internal.v0.enums.payment_term'] = PropTypes.oneOf(['net7', 'net15', 'net30']);
24407
+
24408
+ T['io.flow.internal.v0.models.invoice'] = PropTypes.exact({
24409
+ id: PropTypes.string.isRequired,
24410
+ number: PropTypes.string.isRequired,
24411
+ date: PropTypes.string.isRequired,
24412
+ terms: T['io.flow.internal.v0.enums.payment_term'].isRequired,
24413
+ due_date: PropTypes.string.isRequired,
24414
+ lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_line']).isRequired,
24415
+ total: T['io.flow.common.v0.models.price'].isRequired,
24416
+ });
24417
+
24418
+ T['io.flow.internal.v0.enums.responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
24419
+
24420
+ T['io.flow.internal.v0.models.external_fulfillment_proof_form'] = PropTypes.exact({
24421
+ responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
24422
+ tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form']),
24423
+ });
24424
+
24425
+ T['io.flow.internal.v0.models.external_fulfillment_proof'] = PropTypes.exact({
24426
+ id: PropTypes.string.isRequired,
24427
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
24428
+ responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
24429
+ tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking']).isRequired,
24430
+ });
24431
+
24432
+ T['io.flow.internal.v0.models.tiered_fee_tier'] = PropTypes.exact({
24433
+ count: PropTypes.number.isRequired,
24434
+ amount: PropTypes.number.isRequired,
24435
+ });
24436
+
24437
+ T['io.flow.internal.v0.models.tiered_fee'] = PropTypes.exact({
24438
+ currency: PropTypes.string.isRequired,
24439
+ tiers: PropTypes.arrayOf(T['io.flow.internal.v0.models.tiered_fee_tier']).isRequired,
24440
+ });
24441
+
24442
+ T['io.flow.internal.v0.models.billing_organization_settings'] = PropTypes.exact({
24443
+ id: PropTypes.string.isRequired,
24444
+ days_until_posted: PropTypes.number.isRequired,
24445
+ logistics: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
24446
+ include_transaction_created_at: PropTypes.bool.isRequired,
24447
+ include_order_exchange_rate: PropTypes.bool.isRequired,
24448
+ send_statements_to_flow_ftp_server: PropTypes.bool.isRequired,
24449
+ invoicing_terms: T['io.flow.internal.v0.enums.payment_term'],
24450
+ transfer_method: T['io.flow.internal.v0.enums.transfer_method'],
24451
+ b2b_tax_remittance_days: PropTypes.number,
24452
+ mor_fee: PropTypes.number,
24453
+ duty_guarantee_fee: PropTypes.number,
24454
+ order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
24455
+ label_fee: T['io.flow.internal.v0.models.tiered_fee'],
24456
+ });
24457
+
24458
+ T['io.flow.internal.v0.models.billing_organization_settings_upserted'] = PropTypes.exact({
24459
+ discriminator: PropTypes.oneOf(['billing_organization_settings_upserted']).isRequired,
24460
+ event_id: PropTypes.string.isRequired,
24461
+ timestamp: PropTypes.string.isRequired,
24462
+ organization: PropTypes.string.isRequired,
24463
+ settings: T['io.flow.internal.v0.models.billing_organization_settings'].isRequired,
24464
+ });
24465
+
24466
+ T['io.flow.internal.v0.models.account_setting_label_fees'] = PropTypes.exact({
24467
+ flow: T['io.flow.internal.v0.models.tiered_fee'],
24468
+ organization: T['io.flow.internal.v0.models.tiered_fee'],
24469
+ revenue_share: PropTypes.number,
24470
+ });
24471
+
24472
+ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
24473
+ id: PropTypes.string.isRequired,
24474
+ days_until_posted: PropTypes.number.isRequired,
24475
+ logistics: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
24476
+ include_transaction_created_at: PropTypes.bool.isRequired,
24477
+ include_order_exchange_rate: PropTypes.bool.isRequired,
24478
+ send_statements_to_flow_ftp_server: PropTypes.bool.isRequired,
24479
+ invoicing_terms: T['io.flow.internal.v0.enums.payment_term'],
24480
+ transfer_method: T['io.flow.internal.v0.enums.transfer_method'],
24481
+ b2b_tax_remittance_days: PropTypes.number,
24482
+ merchant_of_record_fee: PropTypes.number,
24483
+ duty_guarantee_fee: PropTypes.number,
24484
+ transfer_fee: PropTypes.number,
24485
+ order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
24486
+ label_fees: T['io.flow.internal.v0.models.account_setting_label_fees'],
24487
+ charge_label_cost_directly: PropTypes.bool.isRequired,
24488
+ transaction_posting_method: T['io.flow.internal.v0.enums.transaction_posting_method'].isRequired,
24489
+ statement_transfer_transaction_location: T['io.flow.internal.v0.enums.statement_transfer_transaction_location'].isRequired,
24490
+ fees_source: T['io.flow.internal.v0.enums.fees_source'].isRequired,
24491
+ require_payment_request: PropTypes.bool.isRequired,
24492
+ round_individual_transactions: PropTypes.bool.isRequired,
24493
+ liabilities_method: T['io.flow.internal.v0.enums.account_setting_liabilities_method'].isRequired,
24494
+ enable_fee_reversals: PropTypes.bool.isRequired,
24495
+ });
24496
+
24497
+ T['io.flow.internal.v0.models.account_settings_upserted'] = PropTypes.exact({
24498
+ discriminator: PropTypes.oneOf(['account_settings_upserted']).isRequired,
24499
+ event_id: PropTypes.string.isRequired,
24500
+ timestamp: PropTypes.string.isRequired,
24501
+ settings: T['io.flow.internal.v0.models.account_settings'].isRequired,
24502
+ });
24503
+
24504
+ T['io.flow.internal.v0.models.account_processing_rates'] = PropTypes.exact({
24505
+ id: PropTypes.string.isRequired,
24506
+ query: PropTypes.string.isRequired,
24507
+ capture: PropTypes.number.isRequired,
24508
+ refund: PropTypes.number.isRequired,
24509
+ fraud: PropTypes.number.isRequired,
24510
+ position: PropTypes.number.isRequired,
24511
+ });
24512
+
24513
+ T['io.flow.internal.v0.models.account_processing_rates_upserted'] = PropTypes.exact({
24514
+ discriminator: PropTypes.oneOf(['account_processing_rates_upserted']).isRequired,
24515
+ event_id: PropTypes.string.isRequired,
24516
+ timestamp: PropTypes.string.isRequired,
24517
+ rates: T['io.flow.internal.v0.models.account_processing_rates'].isRequired,
24518
+ });
24519
+
24520
+ T['io.flow.internal.v0.models.account_processing_rate_form'] = PropTypes.exact({
24521
+ query: PropTypes.string.isRequired,
24522
+ capture: PropTypes.number.isRequired,
24523
+ refund: PropTypes.number.isRequired,
24524
+ fraud: PropTypes.number.isRequired,
24525
+ });
24526
+
24527
+ T['io.flow.internal.v0.models.account_processing_rates_form'] = PropTypes.exact({
24528
+ processing_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.account_processing_rate_form']).isRequired,
24529
+ });
24530
+
24531
+ T['io.flow.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending', 'pending_proof', 'posted']);
24532
+
24533
+ T['io.flow.internal.v0.models.account_transactions_export_request'] = PropTypes.exact({
24534
+ discriminator: PropTypes.oneOf(['account_transactions_export_request']).isRequired,
24535
+ event_id: PropTypes.string.isRequired,
24536
+ timestamp: PropTypes.string.isRequired,
24537
+ organization: PropTypes.string.isRequired,
24538
+ export_id: PropTypes.string.isRequired,
24539
+ account_id: PropTypes.string,
24540
+ statement_id: PropTypes.string,
24541
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'],
24542
+ posted_from: PropTypes.string,
24543
+ posted_to: PropTypes.string,
24544
+ posted_on_or_after: PropTypes.string,
24545
+ posted_after: PropTypes.string,
24546
+ posted_on_or_before: PropTypes.string,
24547
+ posted_before: PropTypes.string,
24548
+ created_from: PropTypes.string,
24549
+ created_to: PropTypes.string,
24550
+ created_on_or_after: PropTypes.string,
24551
+ created_after: PropTypes.string,
24552
+ created_on_or_before: PropTypes.string,
24553
+ created_before: PropTypes.string,
24554
+ });
24555
+
24556
+ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
24557
+ 'manual',
24558
+ 'subscription',
24559
+ 'invoice',
24560
+ 'transfer',
24561
+ 'adjustment',
24562
+ 'reversal',
24563
+ 'capture',
24564
+ 'refund',
24565
+ 'virtual_card_capture',
24566
+ 'virtual_card_refund',
24567
+ 'tax_remittance',
24568
+ 'fully_subsidized_order',
24569
+ 'credit_payment',
24570
+ 'dispute',
24571
+ 'channel',
24572
+ 'label',
24573
+ 'order',
24574
+ 'channel_billed',
24575
+ 'tax',
24576
+ 'duty',
24577
+ ]);
24578
+
24579
+ T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
24580
+ discriminator: PropTypes.oneOf(['virtual_card_transaction']).isRequired,
24581
+ virtual_card: T['io.flow.payment.v0.models.virtual_card_reference'].isRequired,
24582
+ authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
24583
+ original: T['io.flow.common.v0.models.price_with_base'].isRequired,
24584
+ processing_fee: T['io.flow.internal.v0.models.fee'].isRequired,
24585
+ id: PropTypes.string.isRequired,
24586
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24587
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24588
+ posted_at: PropTypes.string,
24589
+ value: T['io.flow.common.v0.models.price'].isRequired,
24590
+ description: PropTypes.string.isRequired,
24591
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24592
+ created_at: PropTypes.string.isRequired,
24593
+ });
24594
+
24595
+ T['io.flow.internal.v0.models.transfer_transaction'] = PropTypes.exact({
24596
+ discriminator: PropTypes.oneOf(['transfer_transaction']).isRequired,
24597
+ method: T['io.flow.internal.v0.enums.transfer_method'].isRequired,
24598
+ id: PropTypes.string.isRequired,
24599
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24600
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24601
+ posted_at: PropTypes.string,
24602
+ value: T['io.flow.common.v0.models.price'].isRequired,
24603
+ description: PropTypes.string.isRequired,
24604
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24605
+ created_at: PropTypes.string.isRequired,
24606
+ });
24607
+
24608
+ T['io.flow.internal.v0.models.transfer_transaction_upserted_v2'] = PropTypes.exact({
24609
+ discriminator: PropTypes.oneOf(['transfer_transaction_upserted_v2']).isRequired,
24610
+ event_id: PropTypes.string.isRequired,
24611
+ timestamp: PropTypes.string.isRequired,
24612
+ transfer_transaction: T['io.flow.internal.v0.models.transfer_transaction'].isRequired,
24613
+ });
24614
+
24615
+ T['io.flow.internal.v0.models.transfer_transaction_upserted'] = PropTypes.exact({
24616
+ discriminator: PropTypes.oneOf(['transfer_transaction_upserted']).isRequired,
24617
+ event_id: PropTypes.string.isRequired,
24618
+ timestamp: PropTypes.string.isRequired,
24619
+ organization: PropTypes.string.isRequired,
24620
+ transfer_transaction: T['io.flow.internal.v0.models.transfer_transaction'].isRequired,
24621
+ });
24622
+
24623
+ T['io.flow.internal.v0.models.transfer_transaction_deleted'] = PropTypes.exact({
24624
+ discriminator: PropTypes.oneOf(['transfer_transaction_deleted']).isRequired,
24625
+ event_id: PropTypes.string.isRequired,
24626
+ timestamp: PropTypes.string.isRequired,
24627
+ organization: PropTypes.string.isRequired,
24628
+ transfer_transaction: T['io.flow.internal.v0.models.transfer_transaction'].isRequired,
24629
+ });
24630
+
24631
+ T['io.flow.internal.v0.models.tax_transaction'] = PropTypes.exact({
24632
+ discriminator: PropTypes.oneOf(['tax_transaction']).isRequired,
24633
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24634
+ id: PropTypes.string.isRequired,
24635
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24636
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24637
+ posted_at: PropTypes.string,
24638
+ value: T['io.flow.common.v0.models.price'].isRequired,
24639
+ description: PropTypes.string.isRequired,
24640
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24641
+ created_at: PropTypes.string.isRequired,
24642
+ });
24643
+
24644
+ T['io.flow.internal.v0.models.tax_transaction_upserted'] = PropTypes.exact({
24645
+ discriminator: PropTypes.oneOf(['tax_transaction_upserted']).isRequired,
24646
+ event_id: PropTypes.string.isRequired,
24647
+ timestamp: PropTypes.string.isRequired,
24648
+ tax_transaction: T['io.flow.internal.v0.models.tax_transaction'].isRequired,
24649
+ });
24650
+
24651
+ T['io.flow.internal.v0.models.tax_remittance_transaction'] = PropTypes.exact({
24652
+ discriminator: PropTypes.oneOf(['tax_remittance_transaction']).isRequired,
24653
+ order: T['io.flow.internal.v0.models.billing_order_summary'].isRequired,
24654
+ invoice: T['io.flow.internal.v0.models.billing_invoice_summary'].isRequired,
24655
+ id: PropTypes.string.isRequired,
24656
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24657
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24658
+ posted_at: PropTypes.string,
24659
+ value: T['io.flow.common.v0.models.price'].isRequired,
24660
+ description: PropTypes.string.isRequired,
24661
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24662
+ created_at: PropTypes.string.isRequired,
24663
+ });
24664
+
24665
+ T['io.flow.internal.v0.models.tax_remittance_transaction_upserted'] = PropTypes.exact({
24666
+ discriminator: PropTypes.oneOf(['tax_remittance_transaction_upserted']).isRequired,
24667
+ event_id: PropTypes.string.isRequired,
24668
+ timestamp: PropTypes.string.isRequired,
24669
+ organization: PropTypes.string.isRequired,
24670
+ transaction: T['io.flow.internal.v0.models.tax_remittance_transaction'].isRequired,
24671
+ });
24672
+
24673
+ T['io.flow.internal.v0.models.subscription_transaction'] = PropTypes.exact({
24674
+ discriminator: PropTypes.oneOf(['subscription_transaction']).isRequired,
24675
+ period: T['io.flow.common.v0.models.datetime_range'].isRequired,
24676
+ id: PropTypes.string.isRequired,
24677
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24678
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24679
+ posted_at: PropTypes.string,
24680
+ value: T['io.flow.common.v0.models.price'].isRequired,
24681
+ description: PropTypes.string.isRequired,
24682
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24683
+ created_at: PropTypes.string.isRequired,
24684
+ });
24685
+
24686
+ T['io.flow.internal.v0.models.processing_transaction'] = PropTypes.exact({
24687
+ discriminator: PropTypes.oneOf(['processing_transaction']).isRequired,
24688
+ merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
24689
+ logistics_responsibility: PropTypes.arrayOf(T['io.flow.internal.v0.enums.responsible_party']).isRequired,
24690
+ original_at: PropTypes.string,
24691
+ reference: PropTypes.string.isRequired,
24692
+ psp_reference_id: PropTypes.string.isRequired,
24693
+ reference_id: PropTypes.string.isRequired,
24694
+ reference_key: PropTypes.string.isRequired,
24695
+ primary_identifier: PropTypes.string,
24696
+ payment_method: PropTypes.string.isRequired,
24697
+ original: T['io.flow.common.v0.models.price_with_base'].isRequired,
24698
+ original_base_at_spot_rate: T['io.flow.common.v0.models.price'],
24699
+ fees: T['io.flow.internal.v0.models.fees'].isRequired,
24700
+ components: T['io.flow.internal.v0.models.components'],
24701
+ withholdings: T['io.flow.internal.v0.models.components'].isRequired,
24702
+ parent_transaction_id: PropTypes.string,
24703
+ order: T['io.flow.internal.v0.models.billing_order_summary'],
24704
+ spot_rate: PropTypes.number.isRequired,
24705
+ flow_rate: PropTypes.number.isRequired,
24706
+ flow_margin: PropTypes.number.isRequired,
24707
+ revenue_share: T['io.flow.common.v0.models.price'],
24708
+ id: PropTypes.string.isRequired,
24709
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24710
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24711
+ posted_at: PropTypes.string,
24712
+ value: T['io.flow.common.v0.models.price'].isRequired,
24713
+ description: PropTypes.string.isRequired,
24714
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24715
+ created_at: PropTypes.string.isRequired,
24716
+ });
24717
+
24718
+ T['io.flow.internal.v0.models.processing_transaction_upserted'] = PropTypes.exact({
24719
+ discriminator: PropTypes.oneOf(['processing_transaction_upserted']).isRequired,
24720
+ event_id: PropTypes.string.isRequired,
24721
+ timestamp: PropTypes.string.isRequired,
24722
+ organization: PropTypes.string.isRequired,
24723
+ processing_transaction: T['io.flow.internal.v0.models.processing_transaction'].isRequired,
24724
+ });
24725
+
24726
+ T['io.flow.internal.v0.models.processing_transaction_deleted'] = PropTypes.exact({
24727
+ discriminator: PropTypes.oneOf(['processing_transaction_deleted']).isRequired,
24728
+ event_id: PropTypes.string.isRequired,
24729
+ timestamp: PropTypes.string.isRequired,
24730
+ organization: PropTypes.string.isRequired,
24731
+ processing_transaction: T['io.flow.internal.v0.models.processing_transaction'].isRequired,
24732
+ });
24733
+
24734
+ T['io.flow.internal.v0.models.order_transaction'] = PropTypes.exact({
24735
+ discriminator: PropTypes.oneOf(['order_transaction']).isRequired,
24736
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
24737
+ id: PropTypes.string.isRequired,
24738
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24739
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24740
+ posted_at: PropTypes.string,
24741
+ value: T['io.flow.common.v0.models.price'].isRequired,
24742
+ description: PropTypes.string.isRequired,
24743
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24744
+ created_at: PropTypes.string.isRequired,
24745
+ });
24746
+
24747
+ T['io.flow.internal.v0.models.order_transaction_upserted'] = PropTypes.exact({
24748
+ discriminator: PropTypes.oneOf(['order_transaction_upserted']).isRequired,
24749
+ event_id: PropTypes.string.isRequired,
24750
+ timestamp: PropTypes.string.isRequired,
24751
+ order_transaction: T['io.flow.internal.v0.models.order_transaction'].isRequired,
24752
+ });
24753
+
24754
+ T['io.flow.internal.v0.models.manual_transaction'] = PropTypes.exact({
24755
+ discriminator: PropTypes.oneOf(['manual_transaction']).isRequired,
24756
+ category: T['io.flow.internal.v0.enums.manual_transaction_category'],
24757
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24758
+ attributes: PropTypes.objectOf(PropTypes.string),
24759
+ id: PropTypes.string.isRequired,
24760
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24761
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24762
+ posted_at: PropTypes.string,
24763
+ value: T['io.flow.common.v0.models.price'].isRequired,
24764
+ description: PropTypes.string.isRequired,
24765
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24766
+ created_at: PropTypes.string.isRequired,
24767
+ });
24768
+
24769
+ T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
24770
+ id: PropTypes.string.isRequired,
24771
+ account: T['io.flow.billing.v0.models.account_reference'].isRequired,
24772
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24773
+ value: T['io.flow.common.v0.models.price'].isRequired,
24774
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24775
+ posted_at: PropTypes.string,
24776
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24777
+ created_at: PropTypes.string.isRequired,
24778
+ original_at: PropTypes.string,
24779
+ });
24780
+
24781
+ T['io.flow.internal.v0.models.main_transaction_upserted_v2'] = PropTypes.exact({
24782
+ discriminator: PropTypes.oneOf(['main_transaction_upserted_v2']).isRequired,
24783
+ event_id: PropTypes.string.isRequired,
24784
+ timestamp: PropTypes.string.isRequired,
24785
+ main_transaction: T['io.flow.internal.v0.models.main_transaction'].isRequired,
24786
+ });
24787
+
24788
+ T['io.flow.internal.v0.models.main_transaction_upserted'] = PropTypes.exact({
24789
+ discriminator: PropTypes.oneOf(['main_transaction_upserted']).isRequired,
24790
+ event_id: PropTypes.string.isRequired,
24791
+ timestamp: PropTypes.string.isRequired,
24792
+ organization: PropTypes.string.isRequired,
24793
+ main_transaction: T['io.flow.internal.v0.models.main_transaction'].isRequired,
24794
+ });
24795
+
24796
+ T['io.flow.internal.v0.models.main_transaction_deleted'] = PropTypes.exact({
24797
+ discriminator: PropTypes.oneOf(['main_transaction_deleted']).isRequired,
24798
+ event_id: PropTypes.string.isRequired,
24799
+ timestamp: PropTypes.string.isRequired,
24800
+ organization: PropTypes.string.isRequired,
24801
+ main_transaction: T['io.flow.internal.v0.models.main_transaction'].isRequired,
24802
+ });
24803
+
24804
+ T['io.flow.internal.v0.models.label_transaction'] = PropTypes.exact({
24805
+ discriminator: PropTypes.oneOf(['label_transaction']).isRequired,
24806
+ label: T['io.flow.internal.v0.models.billing_label_summary'].isRequired,
24807
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24808
+ tracking: T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'].isRequired,
24809
+ id: PropTypes.string.isRequired,
24810
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24811
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24812
+ posted_at: PropTypes.string,
24813
+ value: T['io.flow.common.v0.models.price'].isRequired,
24814
+ description: PropTypes.string.isRequired,
24815
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24816
+ created_at: PropTypes.string.isRequired,
24817
+ });
24818
+
24819
+ T['io.flow.internal.v0.models.label_transaction_upserted'] = PropTypes.exact({
24820
+ discriminator: PropTypes.oneOf(['label_transaction_upserted']).isRequired,
24821
+ event_id: PropTypes.string.isRequired,
24822
+ timestamp: PropTypes.string.isRequired,
24823
+ label_transaction: T['io.flow.internal.v0.models.label_transaction'].isRequired,
24824
+ });
24825
+
24826
+ T['io.flow.internal.v0.models.invoice_transaction'] = PropTypes.exact({
24827
+ discriminator: PropTypes.oneOf(['invoice_transaction']).isRequired,
24828
+ invoice: T['io.flow.internal.v0.models.invoice'].isRequired,
24829
+ id: PropTypes.string.isRequired,
24830
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24831
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24832
+ posted_at: PropTypes.string,
24833
+ value: T['io.flow.common.v0.models.price'].isRequired,
24834
+ description: PropTypes.string.isRequired,
24835
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24836
+ created_at: PropTypes.string.isRequired,
24837
+ });
24838
+
24839
+ T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
24840
+ discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
24841
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24842
+ id: PropTypes.string.isRequired,
24843
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24844
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24845
+ posted_at: PropTypes.string,
24846
+ value: T['io.flow.common.v0.models.price'].isRequired,
24847
+ description: PropTypes.string.isRequired,
24848
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24849
+ created_at: PropTypes.string.isRequired,
24850
+ });
24851
+
24852
+ T['io.flow.internal.v0.models.duty_transaction_upserted'] = PropTypes.exact({
24853
+ discriminator: PropTypes.oneOf(['duty_transaction_upserted']).isRequired,
24854
+ event_id: PropTypes.string.isRequired,
24855
+ timestamp: PropTypes.string.isRequired,
24856
+ duty_transaction: T['io.flow.internal.v0.models.duty_transaction'].isRequired,
24685
24857
  });
24686
24858
 
24687
- T['io.flow.internal.v0.models.items_shipped'] = PropTypes.exact({
24688
- discriminator: PropTypes.oneOf(['items_shipped']).isRequired,
24859
+ T['io.flow.internal.v0.models.dispute_transaction'] = PropTypes.exact({
24860
+ discriminator: PropTypes.oneOf(['dispute_transaction']).isRequired,
24861
+ authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
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
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24869
+ created_at: PropTypes.string.isRequired,
24870
+ });
24871
+
24872
+ T['io.flow.internal.v0.models.channel_transaction'] = PropTypes.exact({
24873
+ discriminator: PropTypes.oneOf(['channel_transaction']).isRequired,
24874
+ transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
24875
+ fees: PropTypes.arrayOf(T['io.flow.internal.v0.models.fee']).isRequired,
24876
+ id: PropTypes.string.isRequired,
24877
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24878
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24879
+ posted_at: PropTypes.string,
24880
+ value: T['io.flow.common.v0.models.price'].isRequired,
24881
+ description: PropTypes.string.isRequired,
24882
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24883
+ created_at: PropTypes.string.isRequired,
24884
+ });
24885
+
24886
+ T['io.flow.internal.v0.models.channel_transaction_upserted'] = PropTypes.exact({
24887
+ discriminator: PropTypes.oneOf(['channel_transaction_upserted']).isRequired,
24689
24888
  event_id: PropTypes.string.isRequired,
24690
24889
  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,
24890
+ channel_transaction: T['io.flow.internal.v0.models.channel_transaction'].isRequired,
24697
24891
  });
24698
24892
 
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,
24893
+ T['io.flow.internal.v0.models.channel_billed_transaction'] = PropTypes.exact({
24894
+ discriminator: PropTypes.oneOf(['channel_billed_transaction']).isRequired,
24895
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
24896
+ id: PropTypes.string.isRequired,
24897
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24898
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24899
+ posted_at: PropTypes.string,
24900
+ value: T['io.flow.common.v0.models.price'].isRequired,
24901
+ description: PropTypes.string.isRequired,
24902
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24903
+ created_at: PropTypes.string.isRequired,
24703
24904
  });
24704
24905
 
24705
- T['io.flow.internal.v0.unions.authorized_order_charge'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.authorized_shipping_charge']]);
24906
+ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
24907
+ T['io.flow.internal.v0.models.invoice_transaction'],
24908
+ T['io.flow.internal.v0.models.manual_transaction'],
24909
+ T['io.flow.internal.v0.models.processing_transaction'],
24910
+ T['io.flow.internal.v0.models.subscription_transaction'],
24911
+ T['io.flow.internal.v0.models.tax_remittance_transaction'],
24912
+ T['io.flow.internal.v0.models.transfer_transaction'],
24913
+ T['io.flow.internal.v0.models.virtual_card_transaction'],
24914
+ T['io.flow.internal.v0.models.dispute_transaction'],
24915
+ T['io.flow.internal.v0.models.channel_transaction'],
24916
+ T['io.flow.internal.v0.models.label_transaction'],
24917
+ T['io.flow.internal.v0.models.order_transaction'],
24918
+ T['io.flow.internal.v0.models.channel_billed_transaction'],
24919
+ T['io.flow.internal.v0.models.tax_transaction'],
24920
+ T['io.flow.internal.v0.models.duty_transaction'],
24921
+ ]);
24706
24922
 
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,
24923
+ T['io.flow.internal.v0.models.channel_billed_transaction_upserted'] = PropTypes.exact({
24924
+ discriminator: PropTypes.oneOf(['channel_billed_transaction_upserted']).isRequired,
24925
+ event_id: PropTypes.string.isRequired,
24926
+ timestamp: PropTypes.string.isRequired,
24927
+ channel_billed_transaction: T['io.flow.internal.v0.models.channel_billed_transaction'].isRequired,
24713
24928
  });
24714
24929
 
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,
24930
+ T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
24931
+ id: PropTypes.string.isRequired,
24932
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24933
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
24934
+ posted_at: PropTypes.string,
24935
+ value: T['io.flow.common.v0.models.price'].isRequired,
24936
+ description: PropTypes.string.isRequired,
24937
+ created_at: PropTypes.string.isRequired,
24938
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24939
+ });
24940
+
24941
+ T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact({
24942
+ discriminator: PropTypes.oneOf(['account_orders_export_request']).isRequired,
24943
+ event_id: PropTypes.string.isRequired,
24944
+ timestamp: PropTypes.string.isRequired,
24945
+ organization: PropTypes.string.isRequired,
24946
+ export_id: PropTypes.string.isRequired,
24947
+ account_id: PropTypes.string,
24948
+ statement_id: PropTypes.string,
24949
+ transaction_type: T['io.flow.internal.v0.enums.billing_transaction_type'],
24950
+ transaction_status: T['io.flow.internal.v0.enums.billing_transaction_status'],
24951
+ transaction_posted_from: PropTypes.string,
24952
+ transaction_posted_to: PropTypes.string,
24953
+ transaction_posted_on_or_after: PropTypes.string,
24954
+ transaction_posted_after: PropTypes.string,
24955
+ transaction_posted_on_or_before: PropTypes.string,
24956
+ transaction_posted_before: PropTypes.string,
24957
+ transaction_created_from: PropTypes.string,
24958
+ transaction_created_to: PropTypes.string,
24959
+ transaction_created_on_or_after: PropTypes.string,
24960
+ transaction_created_after: PropTypes.string,
24961
+ transaction_created_on_or_before: PropTypes.string,
24962
+ transaction_created_before: PropTypes.string,
24722
24963
  });
24723
24964
 
24724
24965
  T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
@@ -24743,19 +24984,7 @@ T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
24743
24984
  interval: PropTypes.number.isRequired,
24744
24985
  });
24745
24986
 
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({
24987
+ T['io.flow.internal.v0.models.account_deposit_rule_form'] = PropTypes.exact({
24759
24988
  target: PropTypes.number.isRequired,
24760
24989
  rate: PropTypes.number.isRequired,
24761
24990
  });
@@ -24767,22 +24996,8 @@ T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
24767
24996
  T['io.flow.common.v0.models.repeat_monthly'],
24768
24997
  ]);
24769
24998
 
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,
24999
+ T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
25000
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
24786
25001
  id: PropTypes.string.isRequired,
24787
25002
  currency: PropTypes.string.isRequired,
24788
25003
  updated_at: PropTypes.string.isRequired,
@@ -24796,15 +25011,15 @@ T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
24796
25011
  created_at: PropTypes.string.isRequired,
24797
25012
  });
24798
25013
 
24799
- T['io.flow.internal.v0.models.organization_account_upserted_v2'] = PropTypes.exact({
24800
- discriminator: PropTypes.oneOf(['organization_account_upserted_v2']).isRequired,
25014
+ T['io.flow.internal.v0.models.channel_account_upserted_v2'] = PropTypes.exact({
25015
+ discriminator: PropTypes.oneOf(['channel_account_upserted_v2']).isRequired,
24801
25016
  event_id: PropTypes.string.isRequired,
24802
25017
  timestamp: PropTypes.string.isRequired,
24803
- organization_account: T['io.flow.internal.v0.models.organization_account'].isRequired,
25018
+ channel_account: T['io.flow.internal.v0.models.channel_account'].isRequired,
24804
25019
  });
24805
25020
 
24806
- T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
24807
- channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
25021
+ T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
25022
+ source: T['io.flow.internal.v0.models.account_source'].isRequired,
24808
25023
  id: PropTypes.string.isRequired,
24809
25024
  currency: PropTypes.string.isRequired,
24810
25025
  updated_at: PropTypes.string.isRequired,
@@ -24818,14 +25033,15 @@ T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
24818
25033
  created_at: PropTypes.string.isRequired,
24819
25034
  });
24820
25035
 
24821
- T['io.flow.internal.v0.models.channel_account_upserted_v2'] = PropTypes.exact({
24822
- discriminator: PropTypes.oneOf(['channel_account_upserted_v2']).isRequired,
25036
+ T['io.flow.internal.v0.models.account_upserted_v2'] = PropTypes.exact({
25037
+ discriminator: PropTypes.oneOf(['account_upserted_v2']).isRequired,
24823
25038
  event_id: PropTypes.string.isRequired,
24824
25039
  timestamp: PropTypes.string.isRequired,
24825
- channel_account: T['io.flow.internal.v0.models.channel_account'].isRequired,
25040
+ account: T['io.flow.internal.v0.models.flow_account'].isRequired,
24826
25041
  });
24827
25042
 
24828
- T['io.flow.internal.v0.models.account'] = PropTypes.exact({
25043
+ T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
25044
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24829
25045
  id: PropTypes.string.isRequired,
24830
25046
  currency: PropTypes.string.isRequired,
24831
25047
  updated_at: PropTypes.string.isRequired,
@@ -24839,11 +25055,11 @@ T['io.flow.internal.v0.models.account'] = PropTypes.exact({
24839
25055
  created_at: PropTypes.string.isRequired,
24840
25056
  });
24841
25057
 
24842
- T['io.flow.internal.v0.models.account_upserted_v2'] = PropTypes.exact({
24843
- discriminator: PropTypes.oneOf(['account_upserted_v2']).isRequired,
25058
+ T['io.flow.internal.v0.models.organization_account_upserted_v2'] = PropTypes.exact({
25059
+ discriminator: PropTypes.oneOf(['organization_account_upserted_v2']).isRequired,
24844
25060
  event_id: PropTypes.string.isRequired,
24845
25061
  timestamp: PropTypes.string.isRequired,
24846
- account: T['io.flow.internal.v0.models.account'].isRequired,
25062
+ organization_account: T['io.flow.internal.v0.models.organization_account'].isRequired,
24847
25063
  });
24848
25064
 
24849
25065
  T['io.flow.internal.v0.models.account_upserted'] = PropTypes.exact({
@@ -24851,7 +25067,35 @@ T['io.flow.internal.v0.models.account_upserted'] = PropTypes.exact({
24851
25067
  event_id: PropTypes.string.isRequired,
24852
25068
  timestamp: PropTypes.string.isRequired,
24853
25069
  organization: PropTypes.string.isRequired,
24854
- account: T['io.flow.internal.v0.models.account'].isRequired,
25070
+ account: T['io.flow.internal.v0.models.organization_account'].isRequired,
25071
+ });
25072
+
25073
+ T['io.flow.internal.v0.models.account_form'] = PropTypes.exact({
25074
+ timezone: PropTypes.string.isRequired,
25075
+ payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
25076
+ payment_conditions: PropTypes.string,
25077
+ deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule_form'],
25078
+ center_key: PropTypes.string,
25079
+ });
25080
+
25081
+ T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
25082
+ id: PropTypes.string.isRequired,
25083
+ });
25084
+
25085
+ T['io.flow.internal.v0.models.account_contact'] = PropTypes.exact({
25086
+ id: PropTypes.string.isRequired,
25087
+ email: PropTypes.string.isRequired,
25088
+ first_name: PropTypes.string,
25089
+ last_name: PropTypes.string,
25090
+ phone: PropTypes.string,
25091
+ account: T['io.flow.internal.v0.models.simple_account_reference'],
25092
+ });
25093
+
25094
+ T['io.flow.internal.v0.models.account_contact_upserted'] = PropTypes.exact({
25095
+ discriminator: PropTypes.oneOf(['account_contact_upserted']).isRequired,
25096
+ event_id: PropTypes.string.isRequired,
25097
+ timestamp: PropTypes.string.isRequired,
25098
+ account_contact: T['io.flow.internal.v0.models.account_contact'].isRequired,
24855
25099
  });
24856
25100
 
24857
25101
  T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
@@ -24917,6 +25161,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
24917
25161
  T['io.flow.internal.v0.models.return_policy_deleted'],
24918
25162
  T['io.flow.internal.v0.models.return_policy_item_result_upserted'],
24919
25163
  T['io.flow.internal.v0.models.return_policy_item_result_deleted'],
25164
+ T['io.flow.internal.v0.models.catalog_settings_upserted'],
25165
+ T['io.flow.internal.v0.models.catalog_settings_deleted'],
24920
25166
  T['io.flow.internal.v0.models.channel_order_acceptance_upserted'],
24921
25167
  T['io.flow.internal.v0.models.channel_order_acceptance_deleted'],
24922
25168
  T['io.flow.internal.v0.models.checkout_configuration_upserted'],
@@ -25048,6 +25294,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25048
25294
  T['io.flow.internal.v0.models.fulfillment_cancel'],
25049
25295
  T['io.flow.internal.v0.models.order_shipped'],
25050
25296
  T['io.flow.internal.v0.models.items_shipped'],
25297
+ T['io.flow.internal.v0.models.organization_business_entity_deleted'],
25298
+ T['io.flow.internal.v0.models.organization_business_entity_upserted'],
25051
25299
  T['io.flow.internal.v0.models.organization_restriction_approval_upserted'],
25052
25300
  T['io.flow.internal.v0.models.organization_restriction_approval_deleted'],
25053
25301
  T['io.flow.internal.v0.models.internal_authorization_upserted'],
@@ -25089,6 +25337,12 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25089
25337
  T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
25090
25338
  T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'],
25091
25339
  T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'],
25340
+ T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
25341
+ T['io.flow.internal.v0.models.ratecard_rate_level_deleted'],
25342
+ T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'],
25343
+ T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'],
25344
+ T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'],
25345
+ T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'],
25092
25346
  T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'],
25093
25347
  T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'],
25094
25348
  T['io.flow.internal.v0.models.restriction_organization_status_upserted'],
@@ -25283,13 +25537,6 @@ T['io.flow.internal.v0.models.channel_membership'] = PropTypes.exact({
25283
25537
  role: T['io.flow.common.v0.enums.role'],
25284
25538
  });
25285
25539
 
25286
- T['io.flow.internal.v0.models.billing_statement_review'] = PropTypes.exact({
25287
- id: PropTypes.string.isRequired,
25288
- billing_statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
25289
- reviewed_by: T['io.flow.common.v0.models.user_reference'].isRequired,
25290
- reviewed_at: PropTypes.string.isRequired,
25291
- });
25292
-
25293
25540
  T['io.flow.internal.v0.models.acceptance'] = PropTypes.exact({
25294
25541
  accepted_by: T['io.flow.common.v0.models.user_reference'].isRequired,
25295
25542
  accepted_at: PropTypes.string.isRequired,
@@ -25345,6 +25592,7 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
25345
25592
 
25346
25593
  T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
25347
25594
  T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
25595
+ T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject']);
25348
25596
  T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
25349
25597
  T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
25350
25598
  T['io.flow.internal.v0.enums.content_type_cast'] = PropTypes.oneOf(['markdown_to_html', 'markdown_to_text']);
@@ -25417,6 +25665,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25417
25665
  'return_policy_deleted',
25418
25666
  'return_policy_item_result_upserted',
25419
25667
  'return_policy_item_result_deleted',
25668
+ 'catalog_settings_upserted',
25669
+ 'catalog_settings_deleted',
25420
25670
  'channel_order_acceptance_upserted',
25421
25671
  'channel_order_acceptance_deleted',
25422
25672
  'checkout_configuration_upserted',
@@ -25548,6 +25798,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25548
25798
  'fulfillment_cancel',
25549
25799
  'order_shipped',
25550
25800
  'items_shipped',
25801
+ 'organization_business_entity_deleted',
25802
+ 'organization_business_entity_upserted',
25551
25803
  'organization_restriction_approval_upserted',
25552
25804
  'organization_restriction_approval_deleted',
25553
25805
  'internal_authorization_upserted',
@@ -25589,6 +25841,12 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25589
25841
  'ratecard_service_fee_deleted',
25590
25842
  'ratecard_lane_aggregate_upserted',
25591
25843
  'ratecard_lane_aggregate_deleted',
25844
+ 'ratecard_rate_level_upserted',
25845
+ 'ratecard_rate_level_deleted',
25846
+ 'ratecard_rate_level_ratecard_upserted',
25847
+ 'ratecard_rate_level_ratecard_deleted',
25848
+ 'ratecard_rate_level_organization_upserted',
25849
+ 'ratecard_rate_level_organization_deleted',
25592
25850
  'organization_restriction_snapshot_upserted',
25593
25851
  'organization_restriction_snapshot_deleted',
25594
25852
  'restriction_organization_status_upserted',
@@ -25791,8 +26049,8 @@ T['io.flow.internal.v0.models.backfill_form'] = PropTypes.exact({
25791
26049
  T['io.flow.internal.v0.models.bank_payment_form'] = PropTypes.exact({
25792
26050
  account_id: PropTypes.string.isRequired,
25793
26051
  reference: PropTypes.string,
25794
- sent_on: PropTypes.string.isRequired,
25795
- expected_delivery_by: PropTypes.string.isRequired,
26052
+ sent_on: PropTypes.string,
26053
+ expected_delivery_by: PropTypes.string,
25796
26054
  amount: PropTypes.number.isRequired,
25797
26055
  currency: PropTypes.string.isRequired,
25798
26056
  transfer_transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -25802,11 +26060,6 @@ T['io.flow.internal.v0.models.billing_authorization_reference'] = PropTypes.exac
25802
26060
  id: PropTypes.string.isRequired,
25803
26061
  });
25804
26062
 
25805
- T['io.flow.internal.v0.models.billing_statement_review_form'] = PropTypes.exact({
25806
- reviewed_by_id: PropTypes.string.isRequired,
25807
- reviewed_at: PropTypes.string.isRequired,
25808
- });
25809
-
25810
26063
  T['io.flow.internal.v0.models.brick_webhook_event_response'] = PropTypes.exact({
25811
26064
  status: PropTypes.string.isRequired,
25812
26065
  });
@@ -25900,6 +26153,10 @@ T['io.flow.internal.v0.models.classification_requeue_request'] = PropTypes.exact
25900
26153
  message: PropTypes.string.isRequired,
25901
26154
  });
25902
26155
 
26156
+ T['io.flow.internal.v0.models.commercial_invoice_comparison'] = PropTypes.exact({
26157
+ urls: PropTypes.arrayOf(PropTypes.string).isRequired,
26158
+ });
26159
+
25903
26160
  T['io.flow.internal.v0.models.consumer_optin_activity'] = PropTypes.exact({
25904
26161
  optin_attribute_key: PropTypes.string.isRequired,
25905
26162
  optin_region: PropTypes.string.isRequired,
@@ -26027,6 +26284,10 @@ T['io.flow.internal.v0.models.financial_reporting_statement_form'] = PropTypes.e
26027
26284
  flow_entity_country_code: PropTypes.string,
26028
26285
  });
26029
26286
 
26287
+ T['io.flow.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
26288
+ placeholder: PropTypes.string,
26289
+ });
26290
+
26030
26291
  T['io.flow.internal.v0.models.flow_lab_project'] = PropTypes.exact({
26031
26292
  id: PropTypes.string.isRequired,
26032
26293
  key: PropTypes.string.isRequired,
@@ -26327,6 +26588,19 @@ T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
26327
26588
  rate_lock_value: PropTypes.number.isRequired,
26328
26589
  });
26329
26590
 
26591
+ T['io.flow.internal.v0.models.rate_level_form'] = PropTypes.exact({
26592
+ name: PropTypes.string.isRequired,
26593
+ });
26594
+
26595
+ T['io.flow.internal.v0.models.rate_level_organization_form'] = PropTypes.exact({
26596
+ rate_level_id: PropTypes.string.isRequired,
26597
+ effective_at: PropTypes.string.isRequired,
26598
+ });
26599
+
26600
+ T['io.flow.internal.v0.models.rate_level_ratecard_form'] = PropTypes.exact({
26601
+ ratecard_id: PropTypes.string.isRequired,
26602
+ });
26603
+
26330
26604
  T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes.exact({
26331
26605
  source_ratecard_organization: PropTypes.string.isRequired,
26332
26606
  source_ratecard_number: PropTypes.string.isRequired,
@@ -27072,6 +27346,17 @@ T['io.flow.shopify.markets.v0.models.shopify_order_count'] = PropTypes.exact({
27072
27346
  count: PropTypes.number.isRequired,
27073
27347
  });
27074
27348
 
27349
+ T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'] = PropTypes.exact({
27350
+ id: PropTypes.number.isRequired,
27351
+ country_code: PropTypes.string.isRequired,
27352
+ province_code: PropTypes.string.isRequired,
27353
+ name: PropTypes.string.isRequired,
27354
+ address1: PropTypes.string.isRequired,
27355
+ address2: PropTypes.string.isRequired,
27356
+ city: PropTypes.string.isRequired,
27357
+ zip: PropTypes.string.isRequired,
27358
+ });
27359
+
27075
27360
  T['io.flow.shopify.markets.v0.models.shopify_webhook_shop_redact'] = PropTypes.exact({
27076
27361
  shop_id: PropTypes.number.isRequired,
27077
27362
  shop_domain: PropTypes.string.isRequired,
@@ -27309,12 +27594,19 @@ T['io.flow.inventory.v0.models.pfs_inventory_status'] = PropTypes.exact({
27309
27594
  status: PropTypes.string.isRequired,
27310
27595
  });
27311
27596
 
27597
+ T['io.flow.billing.v0.models.channel_bank_account'] = PropTypes.exact({
27598
+ id: PropTypes.string.isRequired,
27599
+ key: PropTypes.string.isRequired,
27600
+ last4: PropTypes.string.isRequired,
27601
+ });
27602
+
27312
27603
  T['io.flow.billing.v0.models.default_bank_account_form'] = PropTypes.exact({
27313
27604
  bank_account_id: PropTypes.string.isRequired,
27314
27605
  });
27315
27606
 
27316
27607
  T['io.flow.billing.v0.models.organization_bank_account'] = PropTypes.exact({
27317
27608
  id: PropTypes.string.isRequired,
27609
+ key: PropTypes.string.isRequired,
27318
27610
  last4: PropTypes.string.isRequired,
27319
27611
  });
27320
27612
 
@@ -27475,7 +27767,6 @@ T['io.flow.session.v0.models.session_put_form'] = PropTypes.exact({
27475
27767
  });
27476
27768
 
27477
27769
  export const acceptance = T['io.flow.internal.v0.models.acceptance'];
27478
- export const account = T['io.flow.internal.v0.models.account'];
27479
27770
  export const accountContact = T['io.flow.internal.v0.models.account_contact'];
27480
27771
  export const accountContactDeleted = T['io.flow.internal.v0.models.account_contact_deleted'];
27481
27772
  export const accountContactForm = T['io.flow.internal.v0.models.account_contact_form'];
@@ -27490,7 +27781,6 @@ export const accountProcessingRates = T['io.flow.internal.v0.models.account_proc
27490
27781
  export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
27491
27782
  export const accountProcessingRatesForm = T['io.flow.internal.v0.models.account_processing_rates_form'];
27492
27783
  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
27784
  export const accountSettingLabelFees = T['io.flow.internal.v0.models.account_setting_label_fees'];
27495
27785
  export const accountSettingLiabilitiesMethod = T['io.flow.internal.v0.enums.account_setting_liabilities_method'];
27496
27786
  export const accountSettings = T['io.flow.internal.v0.models.account_settings'];
@@ -27498,6 +27788,7 @@ export const accountSettingsDeleted = T['io.flow.internal.v0.models.account_sett
27498
27788
  export const accountSettingsUpserted = T['io.flow.internal.v0.models.account_settings_upserted'];
27499
27789
  export const accountSource = T['io.flow.internal.v0.models.account_source'];
27500
27790
  export const accountStatistics = T['io.flow.internal.v0.models.account_statistics'];
27791
+ export const accountSummary = T['io.flow.internal.v0.models.account_summary'];
27501
27792
  export const accountTransactionsExportRequest = T['io.flow.internal.v0.models.account_transactions_export_request'];
27502
27793
  export const accountType = T['io.flow.internal.v0.enums.account_type'];
27503
27794
  export const accountUpserted = T['io.flow.internal.v0.models.account_upserted'];
@@ -27591,6 +27882,7 @@ export const bankPayment = T['io.flow.internal.v0.models.bank_payment'];
27591
27882
  export const bankPaymentDeleted = T['io.flow.internal.v0.models.bank_payment_deleted'];
27592
27883
  export const bankPaymentDeletedV2 = T['io.flow.internal.v0.models.bank_payment_deleted_v2'];
27593
27884
  export const bankPaymentForm = T['io.flow.internal.v0.models.bank_payment_form'];
27885
+ export const bankPaymentStatusCode = T['io.flow.internal.v0.enums.bank_payment_status_code'];
27594
27886
  export const bankPaymentStatusForm = T['io.flow.internal.v0.models.bank_payment_status_form'];
27595
27887
  export const bankPaymentUpserted = T['io.flow.internal.v0.models.bank_payment_upserted'];
27596
27888
  export const bankPaymentUpsertedV2 = T['io.flow.internal.v0.models.bank_payment_upserted_v2'];
@@ -27620,11 +27912,7 @@ export const billingStatementBatchStatementDeleted = T['io.flow.internal.v0.mode
27620
27912
  export const billingStatementBatchStatementUpserted = T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'];
27621
27913
  export const billingStatementBatchUpserted = T['io.flow.internal.v0.models.billing_statement_batch_upserted'];
27622
27914
  export const billingStatementDeleted = T['io.flow.internal.v0.models.billing_statement_deleted'];
27623
- export const billingStatementPendingReview = T['io.flow.internal.v0.models.billing_statement_pending_review'];
27624
27915
  export const billingStatementReference = T['io.flow.internal.v0.models.billing_statement_reference'];
27625
- export const billingStatementReview = T['io.flow.internal.v0.models.billing_statement_review'];
27626
- export const billingStatementReviewForm = T['io.flow.internal.v0.models.billing_statement_review_form'];
27627
- export const billingStatementReviewStatus = T['io.flow.internal.v0.enums.billing_statement_review_status'];
27628
27916
  export const billingStatementSummary = T['io.flow.internal.v0.models.billing_statement_summary'];
27629
27917
  export const billingStatementTotals = T['io.flow.internal.v0.models.billing_statement_totals'];
27630
27918
  export const billingStatementUpserted = T['io.flow.internal.v0.models.billing_statement_upserted'];
@@ -27705,7 +27993,9 @@ export const catalogItemRegionAvailabilities = T['io.flow.internal.v0.models.cat
27705
27993
  export const catalogItemRegionAvailabilitiesData = T['io.flow.internal.v0.models.catalog_item_region_availabilities_data'];
27706
27994
  export const catalogItemRegionAvailabilitiesPublished = T['io.flow.internal.v0.models.catalog_item_region_availabilities_published'];
27707
27995
  export const catalogSettings = T['io.flow.internal.v0.models.catalog_settings'];
27996
+ export const catalogSettingsDeleted = T['io.flow.internal.v0.models.catalog_settings_deleted'];
27708
27997
  export const catalogSettingsPutForm = T['io.flow.internal.v0.models.catalog_settings_put_form'];
27998
+ export const catalogSettingsUpserted = T['io.flow.internal.v0.models.catalog_settings_upserted'];
27709
27999
  export const centerDefaults = T['io.flow.internal.v0.models.center_defaults'];
27710
28000
  export const centerDefaultsForm = T['io.flow.internal.v0.models.center_defaults_form'];
27711
28001
  export const centerQueryBuilder = T['io.flow.internal.v0.models.center_query_builder'];
@@ -27733,6 +28023,7 @@ export const channelMembershipForm = T['io.flow.internal.v0.models.channel_membe
27733
28023
  export const channelMembershipPutForm = T['io.flow.internal.v0.models.channel_membership_put_form'];
27734
28024
  export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_order_acceptance'];
27735
28025
  export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
28026
+ export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
27736
28027
  export const channelOrderAcceptanceForm = T['io.flow.internal.v0.models.channel_order_acceptance_form'];
27737
28028
  export const channelOrderAcceptanceReason = T['io.flow.internal.v0.models.channel_order_acceptance_reason'];
27738
28029
  export const channelOrderAcceptanceRejectionReason = T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'];
@@ -28313,6 +28604,7 @@ export const classificationTaxonomy = T['io.flow.internal.v0.unions.classificati
28313
28604
  export const classificationWrapper = T['io.flow.internal.v0.models.classification_wrapper'];
28314
28605
  export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
28315
28606
  export const classifiedProductDetail = T['io.flow.internal.v0.models.classified_product_detail'];
28607
+ export const commercialInvoiceComparison = T['io.flow.internal.v0.models.commercial_invoice_comparison'];
28316
28608
  export const compliance = T['io.flow.internal.v0.models.compliance'];
28317
28609
  export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
28318
28610
  export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
@@ -28376,6 +28668,7 @@ export const debugTransactionQueued = T['io.flow.internal.v0.models.debug_transa
28376
28668
  export const decision = T['io.flow.internal.v0.models.decision'];
28377
28669
  export const declineReason = T['io.flow.internal.v0.unions.decline_reason'];
28378
28670
  export const declineReasonChannelOrderAcceptance = T['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'];
28671
+ export const declineReasonFraud = T['io.flow.internal.v0.models.decline_reason_fraud'];
28379
28672
  export const decryptCipherForm = T['io.flow.internal.v0.models.decrypt_cipher_form'];
28380
28673
  export const decryptedCipher = T['io.flow.internal.v0.models.decrypted_cipher'];
28381
28674
  export const deleteIndexTask = T['io.flow.internal.v0.models.delete_index_task'];
@@ -28555,6 +28848,8 @@ export const fileConfirmation = T['io.flow.internal.v0.models.file_confirmation'
28555
28848
  export const fileConfirmationForm = T['io.flow.internal.v0.models.file_confirmation_form'];
28556
28849
  export const fileMetadata = T['io.flow.internal.v0.models.file_metadata'];
28557
28850
  export const fileMetadataCounts = T['io.flow.internal.v0.models.file_metadata_counts'];
28851
+ export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
28852
+ export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
28558
28853
  export const financialMerchantCategory = T['io.flow.internal.v0.models.financial_merchant_category'];
28559
28854
  export const financialReportingResponsibleParty = T['io.flow.internal.v0.enums.financial_reporting_responsible_party'];
28560
28855
  export const financialReportingStatement = T['io.flow.internal.v0.models.financial_reporting_statement'];
@@ -28568,7 +28863,9 @@ export const fiservAuthenticationForm = T['io.flow.internal.v0.models.fiserv_aut
28568
28863
  export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
28569
28864
  export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
28570
28865
  export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
28866
+ export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
28571
28867
  export const flowApp = T['io.flow.internal.v0.enums.flow_app'];
28868
+ export const flowChannelOrganization = T['io.flow.internal.v0.models.flow_channel_organization'];
28572
28869
  export const flowLabProject = T['io.flow.internal.v0.models.flow_lab_project'];
28573
28870
  export const flowLabProjectPostForm = T['io.flow.internal.v0.models.flow_lab_project_post_form'];
28574
28871
  export const flowLabProjectPutForm = T['io.flow.internal.v0.models.flow_lab_project_put_form'];
@@ -28621,6 +28918,9 @@ export const fxRevenueRecognitionOrder = T['io.flow.internal.v0.models.fx_revenu
28621
28918
  export const fxRevenueRecognitionOrganization = T['io.flow.internal.v0.models.fx_revenue_recognition_organization'];
28622
28919
  export const fxRevenueRecognitionRate = T['io.flow.internal.v0.models.fx_revenue_recognition_rate'];
28623
28920
  export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_revenue_recognition_source'];
28921
+ export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
28922
+ export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
28923
+ export const generateLoadSingleOrg = T['io.flow.internal.v0.models.generate_load_single_org'];
28624
28924
  export const giftCard = T['io.flow.internal.v0.models.gift_card'];
28625
28925
  export const giftCardAuthorizationError = T['io.flow.internal.v0.models.gift_card_authorization_error'];
28626
28926
  export const giftCardForm = T['io.flow.internal.v0.models.gift_card_form'];
@@ -28991,6 +29291,9 @@ export const organizationBillingStatement = T['io.flow.internal.v0.models.organi
28991
29291
  export const organizationBooleanValue = T['io.flow.internal.v0.models.organization_boolean_value'];
28992
29292
  export const organizationBooleanValueDeleted = T['io.flow.internal.v0.models.organization_boolean_value_deleted'];
28993
29293
  export const organizationBooleanValueUpserted = T['io.flow.internal.v0.models.organization_boolean_value_upserted'];
29294
+ export const organizationBusinessEntity = T['io.flow.internal.v0.models.organization_business_entity'];
29295
+ export const organizationBusinessEntityDeleted = T['io.flow.internal.v0.models.organization_business_entity_deleted'];
29296
+ export const organizationBusinessEntityUpserted = T['io.flow.internal.v0.models.organization_business_entity_upserted'];
28994
29297
  export const organizationCapability = T['io.flow.internal.v0.enums.organization_capability'];
28995
29298
  export const organizationCurrencySetting = T['io.flow.internal.v0.models.organization_currency_setting'];
28996
29299
  export const organizationCurrencySettingDeleted = T['io.flow.internal.v0.models.organization_currency_setting_deleted'];
@@ -29149,6 +29452,12 @@ export const rateDestinationFreshnessSummary = T['io.flow.internal.v0.models.rat
29149
29452
  export const rateFreshnessSummary = T['io.flow.internal.v0.models.rate_freshness_summary'];
29150
29453
  export const rateFreshnessSummaryDeleted = T['io.flow.internal.v0.models.rate_freshness_summary_deleted'];
29151
29454
  export const rateFreshnessSummaryUpserted = T['io.flow.internal.v0.models.rate_freshness_summary_upserted'];
29455
+ export const rateLevel = T['io.flow.internal.v0.models.rate_level'];
29456
+ export const rateLevelForm = T['io.flow.internal.v0.models.rate_level_form'];
29457
+ export const rateLevelOrganization = T['io.flow.internal.v0.models.rate_level_organization'];
29458
+ export const rateLevelOrganizationForm = T['io.flow.internal.v0.models.rate_level_organization_form'];
29459
+ export const rateLevelRatecard = T['io.flow.internal.v0.models.rate_level_ratecard'];
29460
+ export const rateLevelRatecardForm = T['io.flow.internal.v0.models.rate_level_ratecard_form'];
29152
29461
  export const rateNameSummary = T['io.flow.internal.v0.models.rate_name_summary'];
29153
29462
  export const rateSource = T['io.flow.internal.v0.enums.rate_source'];
29154
29463
  export const rateSourceCompositionSummary = T['io.flow.internal.v0.models.rate_source_composition_summary'];
@@ -29166,6 +29475,12 @@ export const ratecardLaneAggregate = T['io.flow.internal.v0.models.ratecard_lane
29166
29475
  export const ratecardLaneAggregateDeleted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'];
29167
29476
  export const ratecardLaneAggregateUpserted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'];
29168
29477
  export const ratecardLanesImportRequest = T['io.flow.internal.v0.models.ratecard_lanes_import_request'];
29478
+ export const ratecardRateLevelDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_deleted'];
29479
+ export const ratecardRateLevelOrganizationDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'];
29480
+ export const ratecardRateLevelOrganizationUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'];
29481
+ export const ratecardRateLevelRatecardDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'];
29482
+ export const ratecardRateLevelRatecardUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'];
29483
+ export const ratecardRateLevelUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_upserted'];
29169
29484
  export const ratecardServiceFeeDeleted = T['io.flow.internal.v0.models.ratecard_service_fee_deleted'];
29170
29485
  export const ratecardServiceFeeUpserted = T['io.flow.internal.v0.models.ratecard_service_fee_upserted'];
29171
29486
  export const ratecardServiceFeesOverride = T['io.flow.internal.v0.models.ratecard_service_fees_override'];
@@ -29186,6 +29501,7 @@ export const redirectActionCompleted = T['io.flow.internal.v0.models.redirect_ac
29186
29501
  export const redirectReason = T['io.flow.internal.v0.enums.redirect_reason'];
29187
29502
  export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
29188
29503
  export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
29504
+ export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
29189
29505
  export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
29190
29506
  export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
29191
29507
  export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];