@flowio/api-internal-factories 0.0.130 → 0.0.132

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.
@@ -722,6 +722,8 @@ var factories = {
722
722
  'tax_refund',
723
723
  'duty_refund',
724
724
  'non_l4l_tax_duty_fx',
725
+ 'merchant_payout',
726
+ 'merchant_refund',
725
727
  'ge_revenue_share',
726
728
  ]); },
727
729
  'io.flow.billing.v0.enums.trueup_source': function () { return faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']); },
@@ -2510,79 +2512,6 @@ var factories = {
2510
2512
  type: factories['io.flow.common.v0.enums.change_type'](),
2511
2513
  rate: factories['io.flow.currency.v0.models.rate'](),
2512
2514
  }); },
2513
- 'io.flow.customer.v0.enums.customer_address_type': function () { return faker.helpers.arrayElement(['billing', 'invoice', 'shipping']); },
2514
- 'io.flow.customer.v0.models.customer': function () { return ({
2515
- id: factories.string(),
2516
- number: factories.string(),
2517
- email: factories.string(),
2518
- name: factories['io.flow.common.v0.models.name'](),
2519
- phone: factories.string(),
2520
- }); },
2521
- 'io.flow.customer.v0.models.customer_address_book': function () { return ({
2522
- contacts: arrayOf(function () { return factories['io.flow.customer.v0.models.customer_address_book_contact'](); }),
2523
- }); },
2524
- 'io.flow.customer.v0.models.customer_address_book_contact': function () { return ({
2525
- id: factories.string(),
2526
- address: factories['io.flow.common.v0.models.address'](),
2527
- contact: factories['io.flow.common.v0.models.contact'](),
2528
- address_preferences: arrayOf(function () { return factories['io.flow.customer.v0.models.customer_address_preference'](); }),
2529
- }); },
2530
- 'io.flow.customer.v0.models.customer_address_book_contact_form': function () { return ({
2531
- address: factories['io.flow.common.v0.models.address'](),
2532
- contact: factories['io.flow.common.v0.models.contact'](),
2533
- address_preferences: arrayOf(function () { return factories['io.flow.customer.v0.models.customer_address_preference'](); }),
2534
- }); },
2535
- 'io.flow.customer.v0.models.customer_address_book_form': function () { return ({
2536
- contacts: arrayOf(function () { return factories['io.flow.customer.v0.models.customer_address_book_contact_form'](); }),
2537
- }); },
2538
- 'io.flow.customer.v0.models.customer_address_preference': function () { return ({
2539
- type: factories['io.flow.customer.v0.enums.customer_address_type'](),
2540
- }); },
2541
- 'io.flow.customer.v0.models.customer_bundle': function () { return ({
2542
- customer: factories['io.flow.customer.v0.models.customer'](),
2543
- last_used: factories['io.flow.customer.v0.models.customer_last_used'](),
2544
- }); },
2545
- 'io.flow.customer.v0.models.customer_client_token': function () { return ({
2546
- token: factories.string(),
2547
- }); },
2548
- 'io.flow.customer.v0.models.customer_form': function () { return ({
2549
- number: factories.string(),
2550
- email: factories.string(),
2551
- name: factories['io.flow.common.v0.models.name'](),
2552
- phone: factories.string(),
2553
- }); },
2554
- 'io.flow.customer.v0.models.customer_last_used': function () { return ({
2555
- order: factories['io.flow.customer.v0.models.customer_order'](),
2556
- payment: factories['io.flow.customer.v0.models.customer_payment'](),
2557
- }); },
2558
- 'io.flow.customer.v0.models.customer_order': function () { return ({
2559
- number: factories.string(),
2560
- destination: factories['io.flow.experience.v0.models.order_address'](),
2561
- payments: arrayOf(function () { return factories['io.flow.experience.v0.models.order_payment'](); }),
2562
- submitted_at: factories.date_time_iso_8601(),
2563
- }); },
2564
- 'io.flow.customer.v0.models.customer_payment': function () { return ({
2565
- payment_methods: arrayOf(function () { return factories['io.flow.reference.v0.models.payment_method'](); }),
2566
- }); },
2567
- 'io.flow.customer.v0.models.customer_purge_settings': function () { return ({
2568
- id: factories.string(),
2569
- days_until_purge_unused: factories.long(),
2570
- days_until_purge_used: factories.long(),
2571
- }); },
2572
- 'io.flow.customer.v0.models.customer_purge_settings_form': function () { return ({
2573
- days_until_purge_unused: factories.long(),
2574
- days_until_purge_used: factories.long(),
2575
- }); },
2576
- 'io.flow.customer.v0.models.customer_put_form': function () { return ({
2577
- email: factories.string(),
2578
- name: factories['io.flow.common.v0.models.name'](),
2579
- phone: factories.string(),
2580
- }); },
2581
- 'io.flow.customer.v0.models.customer_token': function () { return ({
2582
- id: factories.string(),
2583
- customer: factories['io.flow.common.v0.models.customer_reference'](),
2584
- token: factories.string(),
2585
- }); },
2586
2515
  'io.flow.error.v0.enums.generic_error_code': function () { return faker.helpers.arrayElement(['generic_error', 'client_error', 'server_error']); },
2587
2516
  'io.flow.error.v0.models.generic_error': function () { return ({
2588
2517
  code: factories['io.flow.error.v0.enums.generic_error_code'](),
@@ -5624,7 +5553,6 @@ var factories = {
5624
5553
  'io.flow.internal.v0.enums.account_payment_hold_reason': function () { return faker.helpers.arrayElement(['fraudulent', 'frozen', 'invalid_bank_account']); },
5625
5554
  'io.flow.internal.v0.enums.account_setting_liabilities_method': function () { return faker.helpers.arrayElement(['withholding', 'transaction']); },
5626
5555
  'io.flow.internal.v0.enums.account_type': function () { return faker.helpers.arrayElement(['channel', 'organization']); },
5627
- 'io.flow.internal.v0.enums.address_configuration_setting_province_code': function () { return faker.helpers.arrayElement(['iso_3166_2', 'name']); },
5628
5556
  'io.flow.internal.v0.enums.adjustment_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal']); },
5629
5557
  'io.flow.internal.v0.enums.adyen_integration_type': function () { return faker.helpers.arrayElement(['hosted_payment_page', 'checkout_payments_api', 'classic_authorise_api']); },
5630
5558
  'io.flow.internal.v0.enums.aldo_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
@@ -5832,10 +5760,13 @@ var factories = {
5832
5760
  'fourth_plus_attempt_success_ratio',
5833
5761
  'ge_revenue_share_standard_transactions_count',
5834
5762
  'ge_revenue_share_standard_transactions_total',
5763
+ 'ge_revenue_share_standard_transactions_percentage',
5835
5764
  'ge_revenue_share_shopify_plus_transactions_count',
5836
5765
  'ge_revenue_share_shopify_plus_transactions_total',
5766
+ 'ge_revenue_share_shopify_plus_transactions_percentage',
5837
5767
  'non_l4l_tax_duty_fx_transactions_count',
5838
5768
  'non_l4l_tax_duty_fx_transactions_total',
5769
+ 'non_l4l_tax_duty_fx_transactions_percentage',
5839
5770
  'sp_adjustment_transactions_count',
5840
5771
  'sp_adjustment_transactions_total',
5841
5772
  'sp_billable_label_transactions_count',
@@ -5912,6 +5843,8 @@ var factories = {
5912
5843
  'tax_refund',
5913
5844
  'duty_refund',
5914
5845
  'ge_revenue_share',
5846
+ 'merchant_payout',
5847
+ 'merchant_refund',
5915
5848
  ]); },
5916
5849
  'io.flow.internal.v0.enums.calculator_engine': function () { return faker.helpers.arrayElement(['dtce_with_deminimis', 'dtce_with_inclusive_pricing', 'dtce_and_us_tax']); },
5917
5850
  'io.flow.internal.v0.enums.carrier_charge_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']); },
@@ -5986,21 +5919,7 @@ var factories = {
5986
5919
  'io.flow.internal.v0.enums.chargeback_payment_status': function () { return faker.helpers.arrayElement(['captured', 'refunded']); },
5987
5920
  'io.flow.internal.v0.enums.chargeback_process_status': function () { return faker.helpers.arrayElement(['inquiry', 'open', 'closed']); },
5988
5921
  'io.flow.internal.v0.enums.checkout_asset_type': function () { return faker.helpers.arrayElement(['stylesheet', 'javascript']); },
5989
- 'io.flow.internal.v0.enums.checkout_error_code': function () { return faker.helpers.arrayElement([
5990
- 'generic_error',
5991
- 'order_identifier_invalid',
5992
- 'url_invalid',
5993
- 'organization_invalid',
5994
- 'session_invalid',
5995
- 'session_missing',
5996
- 'session_organization_invalid',
5997
- 'country_invalid',
5998
- 'currency_invalid',
5999
- 'language_invalid',
6000
- 'checkout_invalid',
6001
- ]); },
6002
5922
  'io.flow.internal.v0.enums.checkout_prompt_behavior': function () { return faker.helpers.arrayElement(['always', 'incomplete']); },
6003
- 'io.flow.internal.v0.enums.checkout_redirect_method': function () { return faker.helpers.arrayElement(['get', 'post']); },
6004
5923
  'io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior': function () { return faker.helpers.arrayElement(['always', 'multiple']); },
6005
5924
  'io.flow.internal.v0.enums.checkout_url_type': function () { return faker.helpers.arrayElement(['continue_shopping', 'confirmation', 'invalid_checkout']); },
6006
5925
  'io.flow.internal.v0.enums.classification_decision': function () { return faker.helpers.arrayElement(['Accept', 'Reject']); },
@@ -6022,10 +5941,6 @@ var factories = {
6022
5941
  'ManagedMarketsDisputeWonAmountCredit',
6023
5942
  'ManagedMarketsDutiesAndTaxesAdjustmentCredit',
6024
5943
  ]); },
6025
- 'io.flow.internal.v0.enums.content_element_type': function () { return faker.helpers.arrayElement(['markdown', 'html', 'plain_text', 'href']); },
6026
- 'io.flow.internal.v0.enums.content_status': function () { return faker.helpers.arrayElement(['draft', 'live', 'archived']); },
6027
- 'io.flow.internal.v0.enums.content_type': function () { return faker.helpers.arrayElement(['text', 'html']); },
6028
- 'io.flow.internal.v0.enums.content_type_cast': function () { return faker.helpers.arrayElement(['markdown_to_html', 'markdown_to_text']); },
6029
5944
  'io.flow.internal.v0.enums.crossdock_tracking_status': function () { return faker.helpers.arrayElement(['notified', 'received', 'shipped']); },
6030
5945
  'io.flow.internal.v0.enums.debug_accounting_transaction_type': function () { return faker.helpers.arrayElement(['fulfillment']); },
6031
5946
  'io.flow.internal.v0.enums.delivered_duty_option_message_type': function () { return faker.helpers.arrayElement(['warning', 'notification']); },
@@ -6144,12 +6059,8 @@ var factories = {
6144
6059
  'channel_order_acceptance_upserted',
6145
6060
  'channel_order_acceptance_deleted',
6146
6061
  'channel_order_acceptance_failed',
6147
- 'checkout_configuration_upserted',
6148
- 'checkout_configuration_deleted',
6149
6062
  'commercial_invoice_internal_upserted',
6150
6063
  'commercial_invoice_internal_deleted',
6151
- 'localized_content_upserted',
6152
- 'localization_upserted',
6153
6064
  'internal_channel_rate_deleted',
6154
6065
  'internal_channel_rate_upserted',
6155
6066
  'rate_deleted',
@@ -6250,8 +6161,6 @@ var factories = {
6250
6161
  'item_harmonization_upserted',
6251
6162
  'item_harmonization_deleted',
6252
6163
  'harmonization_classification_statistics_published',
6253
- 'issuer_upserted',
6254
- 'issuer_deleted',
6255
6164
  'item_form_import_request',
6256
6165
  'label_request_error_upserted',
6257
6166
  'label_request_error_deleted',
@@ -6349,10 +6258,8 @@ var factories = {
6349
6258
  'restriction_rule_effect_deleted',
6350
6259
  'taxonomy_category_hs6_ref_upserted',
6351
6260
  'taxonomy_category_hs6_ref_deleted',
6352
- 'shopify_shop_upserted',
6353
- 'shopify_shop_deleted',
6354
- 'shopify_experience_short_id_upserted',
6355
- 'shopify_experience_short_id_deleted',
6261
+ 'shopify_hs10_codes_upserted',
6262
+ 'shopify_hs10_codes_deleted',
6356
6263
  'shopify_markets_order_upserted',
6357
6264
  'shopify_markets_order_deleted',
6358
6265
  'shopify_markets_shop_upserted',
@@ -6398,6 +6305,8 @@ var factories = {
6398
6305
  'shopify_merchant_plan_deleted',
6399
6306
  'shopify_dispute_upserted',
6400
6307
  'shopify_dispute_deleted',
6308
+ 'shopify_report_file_upserted',
6309
+ 'shopify_report_file_deleted',
6401
6310
  'stripe_authorization_deleted',
6402
6311
  'stripe_authorization_upserted',
6403
6312
  'stripe_reversal_deleted',
@@ -6441,21 +6350,11 @@ var factories = {
6441
6350
  'io.flow.internal.v0.enums.feature_status': function () { return faker.helpers.arrayElement(['draft', 'active', 'archived']); },
6442
6351
  'io.flow.internal.v0.enums.feature_type': function () { return faker.helpers.arrayElement(['boolean', 'decimal', 'string']); },
6443
6352
  'io.flow.internal.v0.enums.fees_source': function () { return faker.helpers.arrayElement(['settings', 'authorization_bundle']); },
6444
- 'io.flow.internal.v0.enums.financial_reporting_responsible_party': function () { return faker.helpers.arrayElement(['flow', 'organization']); },
6445
- 'io.flow.internal.v0.enums.flow_app': function () { return faker.helpers.arrayElement(['console']); },
6446
- 'io.flow.internal.v0.enums.format': function () { return faker.helpers.arrayElement(['text', 'phone', 'email']); },
6447
6353
  'io.flow.internal.v0.enums.fraud_provider': function () { return faker.helpers.arrayElement(['flow', 'forter', 'paypal', 'riskified', 'rps', 'other', 'none']); },
6448
6354
  'io.flow.internal.v0.enums.fraud_provider_status': function () { return faker.helpers.arrayElement(['active', 'archived']); },
6449
6355
  'io.flow.internal.v0.enums.fraud_review_responsible_party': function () { return faker.helpers.arrayElement(['flow', 'organization']); },
6450
- 'io.flow.internal.v0.enums.ftp_intent': function () { return faker.helpers.arrayElement([
6451
- 'orders_from_flow',
6452
- 'pricebooks_from_flow',
6453
- 'pricebooks_to_flow',
6454
- 'catalog_to_flow',
6455
- 'inventory_to_flow',
6456
- ]); },
6457
- 'io.flow.internal.v0.enums.ftp_protocol': function () { return faker.helpers.arrayElement(['sftp', 'ftp']); },
6458
6356
  'io.flow.internal.v0.enums.ge_ingestion_file_status': function () { return faker.helpers.arrayElement(['pending', 'processed']); },
6357
+ 'io.flow.internal.v0.enums.ge_revenue_share_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'revenue_share']); },
6459
6358
  'io.flow.internal.v0.enums.google_analytics_plugin': function () { return faker.helpers.arrayElement(['ec']); },
6460
6359
  'io.flow.internal.v0.enums.graphql_service_types': function () { return faker.helpers.arrayElement([
6461
6360
  'order_update_mutation',
@@ -6490,6 +6389,7 @@ var factories = {
6490
6389
  ]); },
6491
6390
  'io.flow.internal.v0.enums.item_quantity_action': function () { return faker.helpers.arrayElement(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']); },
6492
6391
  'io.flow.internal.v0.enums.item_type': function () { return faker.helpers.arrayElement(['standard', 'multi_product']); },
6392
+ 'io.flow.internal.v0.enums.journal_operation': function () { return faker.helpers.arrayElement(['insert', 'update', 'delete']); },
6493
6393
  'io.flow.internal.v0.enums.keyword_type': function () { return faker.helpers.arrayElement(['positive', 'negative']); },
6494
6394
  'io.flow.internal.v0.enums.label_billing_strategy': function () { return faker.helpers.arrayElement(['quote', 'carrier']); },
6495
6395
  'io.flow.internal.v0.enums.label_cancellation_error_code': function () { return faker.helpers.arrayElement(['already_used', 'carrier_unsupported']); },
@@ -6666,11 +6566,7 @@ var factories = {
6666
6566
  'crypto',
6667
6567
  ]); },
6668
6568
  'io.flow.internal.v0.enums.processor_entity_status': function () { return faker.helpers.arrayElement(['active', 'draft', 'archived']); },
6669
- 'io.flow.internal.v0.enums.product_status': function () { return faker.helpers.arrayElement(['active', 'archived', 'draft']); },
6670
- 'io.flow.internal.v0.enums.prompt_action': function () { return faker.helpers.arrayElement(['prompt_displayed', 'consent_granted', 'consent_denied']); },
6671
- 'io.flow.internal.v0.enums.prompt_checkout_display_position': function () { return faker.helpers.arrayElement(['email', 'submission']); },
6672
- 'io.flow.internal.v0.enums.prompt_options': function () { return faker.helpers.arrayElement(['notice_only', 'require_consent', 'consent_by_default']); },
6673
- 'io.flow.internal.v0.enums.prompt_target': function () { return faker.helpers.arrayElement(['browse', 'checkout']); },
6569
+ 'io.flow.internal.v0.enums.product_status': function () { return faker.helpers.arrayElement(['active', 'archived', 'draft', 'unlisted']); },
6674
6570
  'io.flow.internal.v0.enums.rate_level_key': function () { return faker.helpers.arrayElement([
6675
6571
  'shopify_small_usa',
6676
6572
  'shopify_medium_usa',
@@ -6678,7 +6574,6 @@ var factories = {
6678
6574
  'shopify_small_sdc_usa',
6679
6575
  ]); },
6680
6576
  'io.flow.internal.v0.enums.rate_source': function () { return faker.helpers.arrayElement(['calculated', 'market']); },
6681
- 'io.flow.internal.v0.enums.rebound_configuration_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
6682
6577
  'io.flow.internal.v0.enums.redirect_reason': function () { return faker.helpers.arrayElement(['three_d_secure']); },
6683
6578
  'io.flow.internal.v0.enums.rejection_reason': function () { return faker.helpers.arrayElement([
6684
6579
  'merchant_policy',
@@ -6707,6 +6602,7 @@ var factories = {
6707
6602
  'reconcile_not_recorded',
6708
6603
  'products_record',
6709
6604
  'disputes',
6605
+ 'sales_payments_record',
6710
6606
  ]); },
6711
6607
  'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': function () { return faker.helpers.arrayElement(['all', 'mixed', 'none']); },
6712
6608
  'io.flow.internal.v0.enums.reporting_scheme': function () { return faker.helpers.arrayElement([
@@ -6720,6 +6616,7 @@ var factories = {
6720
6616
  'io.flow.internal.v0.enums.restriction_decision': function () { return faker.helpers.arrayElement(['accept', 'escalate', 'reject', 'review']); },
6721
6617
  'io.flow.internal.v0.enums.restriction_organization_channel': function () { return faker.helpers.arrayElement(['shopify', 'enterprise', 'shopify-sandbox', 'enterprise-sandbox']); },
6722
6618
  'io.flow.internal.v0.enums.restriction_organization_source': function () { return faker.helpers.arrayElement(['shopify', 'enterprise']); },
6619
+ 'io.flow.internal.v0.enums.restriction_rule_community_exemption': function () { return faker.helpers.arrayElement(['domestic_exemption', 'intra_eu_exemption']); },
6723
6620
  'io.flow.internal.v0.enums.restriction_rule_exception_action': function () { return faker.helpers.arrayElement(['allow', 'deny']); },
6724
6621
  'io.flow.internal.v0.enums.restriction_state_review_status': function () { return faker.helpers.arrayElement(['reviewed', 'in_review']); },
6725
6622
  'io.flow.internal.v0.enums.restriction_status': function () { return faker.helpers.arrayElement(['pending', 'in_review', 'escalated', 'accepted', 'restricted']); },
@@ -6727,8 +6624,7 @@ var factories = {
6727
6624
  'io.flow.internal.v0.enums.risk_check': function () { return faker.helpers.arrayElement(['three_d_secure']); },
6728
6625
  'io.flow.internal.v0.enums.risk_evaluation': function () { return faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']); },
6729
6626
  'io.flow.internal.v0.enums.rohan_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
6730
- 'io.flow.internal.v0.enums.shopify_check_inventory_error_code': function () { return faker.helpers.arrayElement(['inventory_out_of_stock']); },
6731
- 'io.flow.internal.v0.enums.shopify_grant_status': function () { return faker.helpers.arrayElement(['pass', 'fail']); },
6627
+ 'io.flow.internal.v0.enums.sarvesh_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
6732
6628
  'io.flow.internal.v0.enums.shopify_incoterm_configuration': function () { return faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']); },
6733
6629
  'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': function () { return faker.helpers.arrayElement([
6734
6630
  'aerosols',
@@ -6784,23 +6680,11 @@ var factories = {
6784
6680
  'io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status': function () { return faker.helpers.arrayElement(['in_review', 'reviewed']); },
6785
6681
  'io.flow.internal.v0.enums.shopify_monitoring_tracking_field': function () { return faker.helpers.arrayElement(['tracking_number', 'carrier_service', 'tracking_url']); },
6786
6682
  'io.flow.internal.v0.enums.shopify_plan_type': function () { return faker.helpers.arrayElement(['standard', 'shopify_plus']); },
6787
- 'io.flow.internal.v0.enums.shopify_promotion_behavior': function () { return faker.helpers.arrayElement(['disable_discount_codes']); },
6788
- 'io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method': function () { return faker.helpers.arrayElement(['each', 'across']); },
6789
- 'io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component': function () { return faker.helpers.arrayElement(['subtotal', 'shipping', 'vat', 'duty']); },
6790
- 'io.flow.internal.v0.enums.shopify_promotion_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
6791
6683
  'io.flow.internal.v0.enums.shopify_service': function () { return faker.helpers.arrayElement(['payment', 'duty_tax_calculator', 'sellability']); },
6792
6684
  'io.flow.internal.v0.enums.simple_rounding_strategy': function () { return faker.helpers.arrayElement(['no_rounding', 'currency_precision']); },
6793
6685
  'io.flow.internal.v0.enums.snooze_next_action_with': function () { return faker.helpers.arrayElement(['customer_service', 'engineering']); },
6794
6686
  'io.flow.internal.v0.enums.snooze_source_type': function () { return faker.helpers.arrayElement(['task', 'invariant']); },
6795
6687
  'io.flow.internal.v0.enums.source_type_filter': function () { return faker.helpers.arrayElement(['organization', 'channel']); },
6796
- 'io.flow.internal.v0.enums.statement_status': function () { return faker.helpers.arrayElement([
6797
- 'created',
6798
- 'no_transactions',
6799
- 'transactions_assigned',
6800
- 'statement_generated',
6801
- 'statement_regenerated',
6802
- 'failed',
6803
- ]); },
6804
6688
  'io.flow.internal.v0.enums.statement_transfer_transaction_location': function () { return faker.helpers.arrayElement(['transactions_file', 'summary']); },
6805
6689
  'io.flow.internal.v0.enums.statistic_type': function () { return faker.helpers.arrayElement([
6806
6690
  'time-to-classify',
@@ -6829,6 +6713,13 @@ var factories = {
6829
6713
  'io.flow.internal.v0.enums.tax_calculation_error_code': function () { return faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']); },
6830
6714
  'io.flow.internal.v0.enums.tax_party': function () { return faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']); },
6831
6715
  'io.flow.internal.v0.enums.tax_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'tax', 'refund']); },
6716
+ 'io.flow.internal.v0.enums.taxonomy_category_classification_alignment': function () { return faker.helpers.arrayElement([
6717
+ 'aligned',
6718
+ 'not_aligned',
6719
+ 'product_missing_category',
6720
+ 'config_missing_category',
6721
+ 'product_not_found',
6722
+ ]); },
6832
6723
  'io.flow.internal.v0.enums.tracking_integration_type': function () { return faker.helpers.arrayElement(['api', 'bulk', 'aftership']); },
6833
6724
  'io.flow.internal.v0.enums.tracking_label_dimensions_source': function () { return faker.helpers.arrayElement(['aftership', 'carrier_api']); },
6834
6725
  'io.flow.internal.v0.enums.tracking_processing_failure_classification': function () { return faker.helpers.arrayElement([
@@ -7064,16 +6955,6 @@ var factories = {
7064
6955
  additional_import_tax_value: factories['io.flow.common.v0.models.money'](),
7065
6956
  rate: factories.decimal(),
7066
6957
  }); },
7067
- 'io.flow.internal.v0.models.address_configuration_province_setting': function () { return ({
7068
- code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
7069
- }); },
7070
- 'io.flow.internal.v0.models.address_configuration_setting': function () { return ({
7071
- id: factories.string(),
7072
- province: factories['io.flow.internal.v0.models.address_configuration_province_setting'](),
7073
- }); },
7074
- 'io.flow.internal.v0.models.address_configuration_setting_form': function () { return ({
7075
- province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
7076
- }); },
7077
6958
  'io.flow.internal.v0.models.adjustment_amount_fixed': function () { return ({
7078
6959
  discriminator: 'fixed',
7079
6960
  amount: factories['io.flow.common.v0.models.money'](),
@@ -7465,29 +7346,6 @@ var factories = {
7465
7346
  type: factories['io.flow.internal.v0.enums.aldo_item_type'](),
7466
7347
  added_on: factories.date_iso_8601(),
7467
7348
  }); },
7468
- 'io.flow.internal.v0.models.alert_error_summary': function () { return ({
7469
- event_id: factories.long(),
7470
- error: factories.string(),
7471
- }); },
7472
- 'io.flow.internal.v0.models.alert_failure_summary': function () { return ({
7473
- database: factories.string(),
7474
- summaries: arrayOf(function () { return factories['io.flow.internal.v0.models.alert_failure_summary_detail'](); }),
7475
- }); },
7476
- 'io.flow.internal.v0.models.alert_failure_summary_detail': function () { return ({
7477
- queue: factories.string(),
7478
- count: factories.long(),
7479
- errors: arrayOf(function () { return factories['io.flow.internal.v0.models.alert_error_summary'](); }),
7480
- }); },
7481
- 'io.flow.internal.v0.models.alert_import_summary': function () { return ({
7482
- organization_id: factories.string(),
7483
- filename: factories.string(),
7484
- type: factories.string(),
7485
- started_at: factories.date_time_iso_8601(),
7486
- }); },
7487
- 'io.flow.internal.v0.models.alert_requeue_summary': function () { return ({
7488
- queue: factories.string(),
7489
- count: factories.long(),
7490
- }); },
7491
7349
  'io.flow.internal.v0.models.all_items_export': function () { return ({
7492
7350
  discriminator: 'all_items_export',
7493
7351
  event_id: factories.string(),
@@ -7521,9 +7379,6 @@ var factories = {
7521
7379
  type: factories['io.flow.internal.v0.enums.ansh_item_type'](),
7522
7380
  added_on: factories.date_iso_8601(),
7523
7381
  }); },
7524
- 'io.flow.internal.v0.models.apm_content': function () { return ({
7525
- processor_description: factories['io.flow.internal.v0.unions.content_item'](),
7526
- }); },
7527
7382
  'io.flow.internal.v0.models.apple_pay_authorization_payload': function () { return ({
7528
7383
  discriminator: 'apple_pay_authorization_payload',
7529
7384
  apple_pay_token: factories.string(),
@@ -7632,6 +7487,22 @@ var factories = {
7632
7487
  timestamp: factories.date_time_iso_8601(),
7633
7488
  id: factories.string(),
7634
7489
  }); },
7490
+ 'io.flow.internal.v0.models.bank_payment_detail': function () { return ({
7491
+ id: factories.string(),
7492
+ source_type: factories['io.flow.internal.v0.enums.account_type'](),
7493
+ source_id: factories.string(),
7494
+ status: factories['io.flow.internal.v0.enums.bank_payment_status_code'](),
7495
+ amount: factories.decimal(),
7496
+ currency: factories.string(),
7497
+ created_at: factories.date_time_iso_8601(),
7498
+ payment_transactions_url: factories.string(),
7499
+ statement_attachments: arrayOf(function () { return factories['io.flow.internal.v0.models.bank_payment_detail_attachment'](); }),
7500
+ }); },
7501
+ 'io.flow.internal.v0.models.bank_payment_detail_attachment': function () { return ({
7502
+ statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
7503
+ statement_url: factories.string(),
7504
+ statement_transactions_url: factories.string(),
7505
+ }); },
7635
7506
  'io.flow.internal.v0.models.bank_payment_form': function () { return ({
7636
7507
  account_id: factories.string(),
7637
7508
  reference: factories.string(),
@@ -8663,13 +8534,6 @@ var factories = {
8663
8534
  type: factories['io.flow.common.v0.enums.change_type'](),
8664
8535
  chargeback: factories['io.flow.internal.v0.models.chargeback'](),
8665
8536
  }); },
8666
- 'io.flow.internal.v0.models.checkbox': function () { return ({
8667
- name: factories.string(),
8668
- value: factories.string(),
8669
- label: factories.string(),
8670
- checked_by_default: factories.boolean(),
8671
- required: factories.boolean(),
8672
- }); },
8673
8537
  'io.flow.internal.v0.models.checkout_analytics': function () { return ({
8674
8538
  trackers: arrayOf(function () { return factories['io.flow.internal.v0.unions.tracker'](); }),
8675
8539
  use_base_currency: factories.boolean(),
@@ -8702,13 +8566,6 @@ var factories = {
8702
8566
  analytics: factories['io.flow.internal.v0.models.checkout_analytics'](),
8703
8567
  domain: factories.string(),
8704
8568
  }); },
8705
- 'io.flow.internal.v0.models.checkout_configuration_deleted': function () { return ({
8706
- discriminator: 'checkout_configuration_deleted',
8707
- event_id: factories.string(),
8708
- timestamp: factories.date_time_iso_8601(),
8709
- organization: factories.string(),
8710
- checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
8711
- }); },
8712
8569
  'io.flow.internal.v0.models.checkout_configuration_form': function () { return ({
8713
8570
  behavior: factories['io.flow.internal.v0.models.checkout_behavior'](),
8714
8571
  settings: factories['io.flow.internal.v0.models.checkout_settings'](),
@@ -8718,60 +8575,6 @@ var factories = {
8718
8575
  'io.flow.internal.v0.models.checkout_configuration_reference': function () { return ({
8719
8576
  id: factories.string(),
8720
8577
  }); },
8721
- 'io.flow.internal.v0.models.checkout_configuration_upserted': function () { return ({
8722
- discriminator: 'checkout_configuration_upserted',
8723
- event_id: factories.string(),
8724
- timestamp: factories.date_time_iso_8601(),
8725
- organization: factories.string(),
8726
- checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
8727
- }); },
8728
- 'io.flow.internal.v0.models.checkout_content': function () { return ({
8729
- global: factories['io.flow.internal.v0.models.checkout_content_summary'](),
8730
- items: arrayOf(function () { return factories['io.flow.experience.v0.models.checkout_item_content'](); }),
8731
- }); },
8732
- 'io.flow.internal.v0.models.checkout_content_details': function () { return ({
8733
- contact_us: factories['io.flow.internal.v0.unions.content_item'](),
8734
- logo: factories['io.flow.internal.v0.models.logo'](),
8735
- privacy_policy: factories['io.flow.internal.v0.unions.content_item'](),
8736
- terms: factories['io.flow.internal.v0.unions.content_item'](),
8737
- order_summary_message: factories['io.flow.internal.v0.models.content_label'](),
8738
- }); },
8739
- 'io.flow.internal.v0.models.checkout_content_summary': function () { return ({
8740
- customer_service: factories['io.flow.internal.v0.models.labeled_content'](),
8741
- checkout: factories['io.flow.internal.v0.models.checkout_content_details'](),
8742
- payments: factories['io.flow.internal.v0.models.checkout_payment_content'](),
8743
- marketing: factories['io.flow.internal.v0.models.checkout_marketing_content'](),
8744
- footer: arrayOf(function () { return factories['io.flow.internal.v0.unions.content_item'](); }),
8745
- }); },
8746
- 'io.flow.internal.v0.models.checkout_error': function () { return ({
8747
- code: factories['io.flow.internal.v0.enums.checkout_error_code'](),
8748
- messages: arrayOf(function () { return factories.string(); }),
8749
- organization: factories['io.flow.common.v0.models.organization_reference'](),
8750
- redirect: factories['io.flow.internal.v0.models.checkout_redirect'](),
8751
- }); },
8752
- 'io.flow.internal.v0.models.checkout_marketing_content': function () { return ({
8753
- optins: arrayOf(function () { return factories['io.flow.internal.v0.models.checkbox'](); }),
8754
- }); },
8755
- 'io.flow.internal.v0.models.checkout_payment': function () { return ({
8756
- authorizations: arrayOf(function () { return factories['io.flow.payment.v0.unions.authorization'](); }),
8757
- sources: arrayOf(function () { return factories['io.flow.payment.v0.unions.payment_source'](); }),
8758
- public_key: factories['io.flow.payment.v0.models.public_key'](),
8759
- method_types: arrayOf(function () { return factories['io.flow.reference.v0.enums.payment_method_type'](); }),
8760
- method_rules: arrayOf(function () { return factories['io.flow.experience.v0.models.payment_method_rule'](); }),
8761
- authorization_parameters: arrayOf(function () { return factories['io.flow.internal.v0.models.authorization_parameters'](); }),
8762
- }); },
8763
- 'io.flow.internal.v0.models.checkout_payment_content': function () { return ({
8764
- 'default': factories['io.flow.internal.v0.models.apm_content'](),
8765
- paypal: factories['io.flow.internal.v0.models.apm_content'](),
8766
- }); },
8767
- 'io.flow.internal.v0.models.checkout_platform_data': function () { return ({
8768
- order_number: factories.string(),
8769
- }); },
8770
- 'io.flow.internal.v0.models.checkout_redirect': function () { return ({
8771
- method: factories['io.flow.internal.v0.enums.checkout_redirect_method'](),
8772
- url: factories.string(),
8773
- body: factories.string(),
8774
- }); },
8775
8578
  'io.flow.internal.v0.models.checkout_settings': function () { return ({
8776
8579
  session_persistence_timeout: factories['io.flow.common.v0.models.duration'](),
8777
8580
  session_persistence_attribute_keys: arrayOf(function () { return factories.string(); }),
@@ -9062,74 +8865,6 @@ var factories = {
9062
8865
  service: factories.string(),
9063
8866
  note: factories.string(),
9064
8867
  }); },
9065
- 'io.flow.internal.v0.models.consumer_optin_activity': function () { return ({
9066
- optin_attribute_key: factories.string(),
9067
- optin_region: factories.string(),
9068
- consent_granted: factories.boolean(),
9069
- last_seen_at: factories.date_time_iso_8601(),
9070
- last_acted_at: factories.date_time_iso_8601(),
9071
- }); },
9072
- 'io.flow.internal.v0.models.content_label': function () { return ({
9073
- discriminator: 'content_label',
9074
- key: factories.string(),
9075
- format: factories['io.flow.internal.v0.enums.format'](),
9076
- value: factories.string(),
9077
- }); },
9078
- 'io.flow.internal.v0.models.content_schema': function () { return ({
9079
- key: factories.string(),
9080
- description: factories.string(),
9081
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.content_schema_element'](); }),
9082
- allow_multiple: factories.boolean(),
9083
- }); },
9084
- 'io.flow.internal.v0.models.content_schema_element': function () { return ({
9085
- type: factories['io.flow.internal.v0.enums.content_element_type'](),
9086
- description: factories.string(),
9087
- example: factories.string(),
9088
- required: factories.boolean(),
9089
- validation: arrayOf(function () { return factories['io.flow.internal.v0.unions.validation_rule'](); }),
9090
- }); },
9091
- 'io.flow.internal.v0.models.content_schema_form': function () { return ({
9092
- description: factories.string(),
9093
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.content_schema_element'](); }),
9094
- allow_multiple: factories.boolean(),
9095
- }); },
9096
- 'io.flow.internal.v0.models.content_schema_summary': function () { return ({
9097
- key: factories.string(),
9098
- description: factories.string(),
9099
- }); },
9100
- 'io.flow.internal.v0.models.country_picker_country': function () { return ({
9101
- iso_3166_2: factories.string(),
9102
- iso_3166_3: factories.string(),
9103
- name: factories.string(),
9104
- default_currency: factories.string(),
9105
- }); },
9106
- 'io.flow.internal.v0.models.country_picker_country_data': function () { return ({
9107
- country: factories.string(),
9108
- delivery_window: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_delivery_window'](); }),
9109
- }); },
9110
- 'io.flow.internal.v0.models.country_picker_currency': function () { return ({
9111
- iso_4217_3: factories.string(),
9112
- name: factories.string(),
9113
- }); },
9114
- 'io.flow.internal.v0.models.country_picker_data': function () { return ({
9115
- countries: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_country'](); }),
9116
- currencies: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_currency'](); }),
9117
- experience_data: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_experience_data'](); }),
9118
- country_data: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_country_data'](); }),
9119
- }); },
9120
- 'io.flow.internal.v0.models.country_picker_delivery_window': function () { return ({
9121
- name: factories.string(),
9122
- from: factories.date_time_iso_8601(),
9123
- to: factories.date_time_iso_8601(),
9124
- timezone: factories.string(),
9125
- }); },
9126
- 'io.flow.internal.v0.models.country_picker_experience_data': function () { return ({
9127
- experience_key: factories.string(),
9128
- payment_methods: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_payment_method'](); }),
9129
- }); },
9130
- 'io.flow.internal.v0.models.country_picker_payment_method': function () { return ({
9131
- id: factories.string(),
9132
- }); },
9133
8868
  'io.flow.internal.v0.models.courthouse_product_summary': function () { return ({
9134
8869
  organization: factories['io.flow.common.v0.models.organization_summary'](),
9135
8870
  product_id: factories.string(),
@@ -9188,6 +8923,8 @@ var factories = {
9188
8923
  discount: factories['io.flow.internal.v0.models.other_record_discount'](),
9189
8924
  net: factories.decimal(),
9190
8925
  identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
8926
+ revenue_share_percentage: factories.decimal(),
8927
+ revenue_share_plan: factories.string(),
9191
8928
  created_at: factories.date_time_iso_8601(),
9192
8929
  updated_at: factories.date_time_iso_8601(),
9193
8930
  posted_at: factories.date_time_iso_8601(),
@@ -9291,6 +9028,9 @@ var factories = {
9291
9028
  timestamp: factories.date_time_iso_8601(),
9292
9029
  daily_value: factories['io.flow.internal.v0.models.daily_value'](),
9293
9030
  }); },
9031
+ 'io.flow.internal.v0.models.database': function () { return ({
9032
+ name: factories.string(),
9033
+ }); },
9294
9034
  'io.flow.internal.v0.models.debug_accounting_transaction': function () { return ({
9295
9035
  type: factories['io.flow.internal.v0.enums.debug_accounting_transaction_type'](),
9296
9036
  type_id: factories.string(),
@@ -9486,11 +9226,6 @@ var factories = {
9486
9226
  pickup_account_number: factories.string(),
9487
9227
  pickup_name: factories.string(),
9488
9228
  }); },
9489
- 'io.flow.internal.v0.models.dict': function () { return ({
9490
- discriminator: 'dict',
9491
- label: factories['io.flow.internal.v0.models.content_label'](),
9492
- description: factories['io.flow.internal.v0.models.content_label'](),
9493
- }); },
9494
9229
  'io.flow.internal.v0.models.dimension_estimate_ops_input': function () { return ({
9495
9230
  organization_id: factories.string(),
9496
9231
  length_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
@@ -10267,28 +10002,6 @@ var factories = {
10267
10002
  category_group: factories.string(),
10268
10003
  description: factories.string(),
10269
10004
  }); },
10270
- 'io.flow.internal.v0.models.financial_reporting_statement': function () { return ({
10271
- id: factories.string(),
10272
- statement_number: factories.string(),
10273
- status: factories['io.flow.internal.v0.enums.statement_status'](),
10274
- transactions_start_date: factories.date_time_iso_8601(),
10275
- transactions_end_date: factories.date_time_iso_8601(),
10276
- processing_start_at: factories.date_time_iso_8601(),
10277
- processing_end_at: factories.date_time_iso_8601(),
10278
- organization_id: factories.string(),
10279
- flow_entity_country_code: factories.string(),
10280
- captures_url: factories.string(),
10281
- missing_captures_url: factories.string(),
10282
- refunds_url: factories.string(),
10283
- missing_refunds_url: factories.string(),
10284
- adjustments_url: factories.string(),
10285
- }); },
10286
- 'io.flow.internal.v0.models.financial_reporting_statement_form': function () { return ({
10287
- transactions_start_date: factories.date_time_iso_8601(),
10288
- transactions_end_date: factories.date_time_iso_8601(),
10289
- organization_id: factories.string(),
10290
- flow_entity_country_code: factories.string(),
10291
- }); },
10292
10005
  'io.flow.internal.v0.models.fiserv_account': function () { return ({
10293
10006
  discriminator: 'fiserv_account',
10294
10007
  id: factories.string(),
@@ -10660,33 +10373,6 @@ var factories = {
10660
10373
  organization: factories.string(),
10661
10374
  ftp_file: factories['io.flow.ftp.v0.models.ftp_file'](),
10662
10375
  }); },
10663
- 'io.flow.internal.v0.models.ftp_setting': function () { return ({
10664
- id: factories.string(),
10665
- protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
10666
- paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
10667
- username: factories.string(),
10668
- password: factories.string(),
10669
- host: factories.string(),
10670
- intents: arrayOf(function () { return factories['io.flow.internal.v0.enums.ftp_intent'](); }),
10671
- }); },
10672
- 'io.flow.internal.v0.models.ftp_setting_form': function () { return ({
10673
- protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
10674
- paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
10675
- username: factories.string(),
10676
- password: factories.string(),
10677
- host: factories.string(),
10678
- intents: arrayOf(function () { return factories['io.flow.internal.v0.enums.ftp_intent'](); }),
10679
- }); },
10680
- 'io.flow.internal.v0.models.ftp_setting_version': function () { return ({
10681
- id: factories.string(),
10682
- timestamp: factories.date_time_iso_8601(),
10683
- type: factories['io.flow.common.v0.enums.change_type'](),
10684
- ftp_setting: factories['io.flow.internal.v0.models.ftp_setting'](),
10685
- }); },
10686
- 'io.flow.internal.v0.models.ftp_settings_paths': function () { return ({
10687
- inbound: factories.string(),
10688
- outbound: factories.string(),
10689
- }); },
10690
10376
  'io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form': function () { return ({
10691
10377
  discriminator: 'fuel_surcharge_service_fee_amount_by_weight_put_form',
10692
10378
  amount: factories['io.flow.common.v0.models.money'](),
@@ -11054,11 +10740,6 @@ var factories = {
11054
10740
  type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
11055
10741
  added_on: factories.date_time_iso_8601(),
11056
10742
  }); },
11057
- 'io.flow.internal.v0.models.href': function () { return ({
11058
- discriminator: 'href',
11059
- label: factories['io.flow.internal.v0.models.content_label'](),
11060
- url: factories.string(),
11061
- }); },
11062
10743
  'io.flow.internal.v0.models.hs6': function () { return ({
11063
10744
  code: factories.string(),
11064
10745
  description: factories.string(),
@@ -11082,9 +10763,6 @@ var factories = {
11082
10763
  import_id: factories.string(),
11083
10764
  error: factories.string(),
11084
10765
  }); },
11085
- 'io.flow.internal.v0.models.install_form': function () { return ({
11086
- token: factories.string(),
11087
- }); },
11088
10766
  'io.flow.internal.v0.models.internal_adyen_authorization_details': function () { return ({
11089
10767
  discriminator: 'internal_adyen_authorization_details',
11090
10768
  adyen_authentication_data: factories['io.flow.internal.v0.models.adyen_authentication_data_reference'](),
@@ -11322,29 +11000,6 @@ var factories = {
11322
11000
  statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
11323
11001
  created_at: factories.date_time_iso_8601(),
11324
11002
  }); },
11325
- 'io.flow.internal.v0.models.issuer': function () { return ({
11326
- id: factories.string(),
11327
- iin: factories.string(),
11328
- name: factories.string(),
11329
- country: factories.string(),
11330
- brand: factories.string(),
11331
- type: factories.string(),
11332
- category: factories.string(),
11333
- website: factories.string(),
11334
- phone: factories.string(),
11335
- }); },
11336
- 'io.flow.internal.v0.models.issuer_deleted': function () { return ({
11337
- discriminator: 'issuer_deleted',
11338
- event_id: factories.string(),
11339
- timestamp: factories.date_time_iso_8601(),
11340
- issuer: factories['io.flow.internal.v0.models.issuer'](),
11341
- }); },
11342
- 'io.flow.internal.v0.models.issuer_upserted': function () { return ({
11343
- discriminator: 'issuer_upserted',
11344
- event_id: factories.string(),
11345
- timestamp: factories.date_time_iso_8601(),
11346
- issuer: factories['io.flow.internal.v0.models.issuer'](),
11347
- }); },
11348
11003
  'io.flow.internal.v0.models.item_classification': function () { return ({
11349
11004
  id: factories.string(),
11350
11005
  organization: factories.string(),
@@ -11439,6 +11094,7 @@ var factories = {
11439
11094
  tariffs: objectOf(function () { return factories['io.flow.internal.v0.models.tariff_code_duty'](); }),
11440
11095
  decision_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
11441
11096
  classification_scope: factories['io.flow.internal.v0.enums.classification_scope'](),
11097
+ taxonomy_category_classification_alignment: factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'](),
11442
11098
  created_at: factories.date_time_iso_8601(),
11443
11099
  updated_at: factories.date_time_iso_8601(),
11444
11100
  updated_by_user_id: factories.string(),
@@ -11544,6 +11200,19 @@ var factories = {
11544
11200
  id: factories.string(),
11545
11201
  name: factories.string(),
11546
11202
  }); },
11203
+ 'io.flow.internal.v0.models.journal': function () { return ({
11204
+ name: factories.string(),
11205
+ queued: factories.integer(),
11206
+ failed: factories.integer(),
11207
+ }); },
11208
+ 'io.flow.internal.v0.models.journal_failure': function () { return ({
11209
+ journal_id: factories.long(),
11210
+ operation: factories['io.flow.internal.v0.enums.journal_operation'](),
11211
+ created_at: factories.date_time_iso_8601(),
11212
+ failed_at: factories.date_time_iso_8601(),
11213
+ error: factories.string(),
11214
+ organization_id: factories.string(),
11215
+ }); },
11547
11216
  'io.flow.internal.v0.models.key': function () { return ({
11548
11217
  id: factories.string(),
11549
11218
  created_at: factories.date_time_iso_8601(),
@@ -11818,10 +11487,6 @@ var factories = {
11818
11487
  timestamp: factories.date_time_iso_8601(),
11819
11488
  label_transaction: factories['io.flow.internal.v0.models.label_transaction'](),
11820
11489
  }); },
11821
- 'io.flow.internal.v0.models.labeled_content': function () { return ({
11822
- label: factories['io.flow.internal.v0.models.content_label'](),
11823
- contents: arrayOf(function () { return factories['io.flow.internal.v0.unions.content_item'](); }),
11824
- }); },
11825
11490
  'io.flow.internal.v0.models.labels_prediction': function () { return ({
11826
11491
  main_material: factories.string(),
11827
11492
  gender: factories.string(),
@@ -11933,65 +11598,6 @@ var factories = {
11933
11598
  line_number: factories.long(),
11934
11599
  action_quantity: arrayOf(function () { return factories['io.flow.internal.v0.models.action_quantity'](); }),
11935
11600
  }); },
11936
- 'io.flow.internal.v0.models.load': function () { return ({
11937
- discriminator: 'load',
11938
- label: factories['io.flow.internal.v0.models.content_label'](),
11939
- location: factories['io.flow.internal.v0.models.location'](),
11940
- }); },
11941
- 'io.flow.internal.v0.models.localizable_content_reference': function () { return ({
11942
- discriminator: 'localizable_content_reference',
11943
- content_id: factories.string(),
11944
- }); },
11945
- 'io.flow.internal.v0.models.localization': function () { return ({
11946
- discriminator: 'localization',
11947
- id: factories.string(),
11948
- content_id: factories.string(),
11949
- locale: factories.string(),
11950
- status: factories['io.flow.internal.v0.enums.content_status'](),
11951
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.localized_content_element'](); }),
11952
- }); },
11953
- 'io.flow.internal.v0.models.localization_form': function () { return ({
11954
- locale: factories.string(),
11955
- status: factories['io.flow.internal.v0.enums.content_status'](),
11956
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.localized_content_element'](); }),
11957
- }); },
11958
- 'io.flow.internal.v0.models.localization_ref': function () { return ({
11959
- id: factories.string(),
11960
- locale: factories.string(),
11961
- status: factories['io.flow.internal.v0.enums.content_status'](),
11962
- }); },
11963
- 'io.flow.internal.v0.models.localization_upserted': function () { return ({
11964
- discriminator: 'localization_upserted',
11965
- event_id: factories.string(),
11966
- timestamp: factories.date_time_iso_8601(),
11967
- localization_id: factories.string(),
11968
- locale: factories.string(),
11969
- status: factories['io.flow.internal.v0.enums.content_status'](),
11970
- }); },
11971
- 'io.flow.internal.v0.models.localized_content': function () { return ({
11972
- id: factories.string(),
11973
- schema_key: factories.string(),
11974
- status: factories['io.flow.internal.v0.enums.content_status'](),
11975
- source: factories['io.flow.internal.v0.models.localization'](),
11976
- localizations: arrayOf(function () { return factories['io.flow.internal.v0.models.localization_ref'](); }),
11977
- }); },
11978
- 'io.flow.internal.v0.models.localized_content_element': function () { return ({
11979
- value: factories.string(),
11980
- type: factories['io.flow.internal.v0.enums.content_element_type'](),
11981
- }); },
11982
- 'io.flow.internal.v0.models.localized_content_form': function () { return ({
11983
- schema_key: factories.string(),
11984
- status: factories['io.flow.internal.v0.enums.content_status'](),
11985
- source: factories['io.flow.internal.v0.models.localization_form'](),
11986
- }); },
11987
- 'io.flow.internal.v0.models.localized_content_upserted': function () { return ({
11988
- discriminator: 'localized_content_upserted',
11989
- event_id: factories.string(),
11990
- timestamp: factories.date_time_iso_8601(),
11991
- content_id: factories.string(),
11992
- schema_key: factories.string(),
11993
- source_localization_id: factories.string(),
11994
- }); },
11995
11601
  'io.flow.internal.v0.models.localized_item_prices_export_request': function () { return ({
11996
11602
  discriminator: 'localized_item_prices_export_request',
11997
11603
  event_id: factories.string(),
@@ -12016,10 +11622,6 @@ var factories = {
12016
11622
  price_start_date: factories.date_time_iso_8601(),
12017
11623
  price_end_date: factories.date_time_iso_8601(),
12018
11624
  }); },
12019
- 'io.flow.internal.v0.models.location': function () { return ({
12020
- type: factories['io.flow.internal.v0.enums.content_type'](),
12021
- url: factories.string(),
12022
- }); },
12023
11625
  'io.flow.internal.v0.models.logistics_capabilities': function () { return ({
12024
11626
  id: factories.string(),
12025
11627
  capabilities: arrayOf(function () { return factories['io.flow.internal.v0.enums.logistics_capability'](); }),
@@ -12059,9 +11661,6 @@ var factories = {
12059
11661
  carrier_tracking_number: factories.string(),
12060
11662
  external_reference_number: factories.string(),
12061
11663
  }); },
12062
- 'io.flow.internal.v0.models.logo': function () { return ({
12063
- url: factories.string(),
12064
- }); },
12065
11664
  'io.flow.internal.v0.models.lost_chargeback': function () { return ({
12066
11665
  id: factories.string(),
12067
11666
  order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
@@ -12082,9 +11681,6 @@ var factories = {
12082
11681
  'io.flow.internal.v0.models.loyalty_program_rewards': function () { return ({
12083
11682
  applied: arrayOf(function () { return factories['io.flow.internal.v0.models.loyalty_program_reward'](); }),
12084
11683
  }); },
12085
- 'io.flow.internal.v0.models.magento_install_form': function () { return ({
12086
- token: factories.string(),
12087
- }); },
12088
11684
  'io.flow.internal.v0.models.main_transaction': function () { return ({
12089
11685
  id: factories.string(),
12090
11686
  account: factories['io.flow.billing.v0.models.account_reference'](),
@@ -12453,52 +12049,6 @@ var factories = {
12453
12049
  key: factories.string(),
12454
12050
  expires_at: factories.date_time_iso_8601(),
12455
12051
  }); },
12456
- 'io.flow.internal.v0.models.optin_attribute': function () { return ({
12457
- name: factories.string(),
12458
- optin_attribute_key: factories.string(),
12459
- target: factories['io.flow.internal.v0.enums.prompt_target'](),
12460
- status: factories['io.flow.internal.v0.enums.content_status'](),
12461
- created_at: factories.date_time_iso_8601(),
12462
- updated_at: factories.date_time_iso_8601(),
12463
- }); },
12464
- 'io.flow.internal.v0.models.optin_attribute_form': function () { return ({
12465
- name: factories.string(),
12466
- optin_attribute_key: factories.string(),
12467
- target: factories['io.flow.internal.v0.enums.prompt_target'](),
12468
- status: factories['io.flow.internal.v0.enums.content_status'](),
12469
- }); },
12470
- 'io.flow.internal.v0.models.optin_prompt': function () { return ({
12471
- id: factories.string(),
12472
- optin_attribute: factories['io.flow.internal.v0.models.optin_attribute'](),
12473
- region: factories.string(),
12474
- options: arrayOf(function () { return factories['io.flow.internal.v0.enums.prompt_options'](); }),
12475
- content: factories['io.flow.internal.v0.unions.localizable_content'](),
12476
- position: factories.long(),
12477
- enforce_on: factories.date_time_iso_8601(),
12478
- display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
12479
- }); },
12480
- 'io.flow.internal.v0.models.optin_prompt_checkout_display': function () { return ({
12481
- discriminator: 'optin_prompt_checkout_display',
12482
- display_position: factories['io.flow.internal.v0.enums.prompt_checkout_display_position'](),
12483
- }); },
12484
- 'io.flow.internal.v0.models.optin_prompt_copy': function () { return ({
12485
- from: factories.string(),
12486
- to: factories.string(),
12487
- number_prompts: factories.long(),
12488
- }); },
12489
- 'io.flow.internal.v0.models.optin_prompt_copy_form': function () { return ({
12490
- from: factories.string(),
12491
- to: factories.string(),
12492
- }); },
12493
- 'io.flow.internal.v0.models.optin_prompt_form': function () { return ({
12494
- optin_attribute_key: factories.string(),
12495
- region: factories.string(),
12496
- options: arrayOf(function () { return factories['io.flow.internal.v0.enums.prompt_options'](); }),
12497
- content: factories['io.flow.internal.v0.models.localization_form'](),
12498
- position: factories.integer(),
12499
- enforce_on: factories.date_time_iso_8601(),
12500
- display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
12501
- }); },
12502
12052
  'io.flow.internal.v0.models.order_actionability': function () { return ({
12503
12053
  action: arrayOf(function () { return factories['io.flow.internal.v0.enums.order_action'](); }),
12504
12054
  lines: arrayOf(function () { return factories['io.flow.internal.v0.models.line_action_quantities'](); }),
@@ -12675,9 +12225,6 @@ var factories = {
12675
12225
  from_service_id: factories.string(),
12676
12226
  to_service_id: factories.string(),
12677
12227
  }); },
12678
- 'io.flow.internal.v0.models.order_submission_form': function () { return ({
12679
- authorization: factories['io.flow.payment.v0.unions.authorization_form'](),
12680
- }); },
12681
12228
  'io.flow.internal.v0.models.order_summary': function () { return ({
12682
12229
  id: factories.string(),
12683
12230
  organization: factories['io.flow.common.v0.models.organization_reference'](),
@@ -13150,6 +12697,8 @@ var factories = {
13150
12697
  discount: factories['io.flow.internal.v0.models.other_record_discount'](),
13151
12698
  net: factories.decimal(),
13152
12699
  identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
12700
+ revenue_share_percentage: factories.decimal(),
12701
+ revenue_share_plan: factories.string(),
13153
12702
  created_at: factories.date_time_iso_8601(),
13154
12703
  updated_at: factories.date_time_iso_8601(),
13155
12704
  posted_at: factories.date_time_iso_8601(),
@@ -13384,6 +12933,10 @@ var factories = {
13384
12933
  id: factories.string(),
13385
12934
  tribe: factories['io.flow.internal.v0.models.tribe'](),
13386
12935
  }); },
12936
+ 'io.flow.internal.v0.models.payment_is': function () { return ({
12937
+ lvg: factories.boolean(),
12938
+ manual: factories.boolean(),
12939
+ }); },
13387
12940
  'io.flow.internal.v0.models.payment_method_detail': function () { return ({
13388
12941
  method: factories['io.flow.reference.v0.models.payment_method'](),
13389
12942
  method_options: arrayOf(function () { return factories['io.flow.internal.v0.models.payment_method_option'](); }),
@@ -14006,12 +13559,24 @@ var factories = {
14006
13559
  restricted_regions: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellablility_region_result'](); }),
14007
13560
  rule_ids: arrayOf(function () { return factories.string(); }),
14008
13561
  }); },
13562
+ 'io.flow.internal.v0.models.product_sellability_internal_form': function () { return ({
13563
+ name: factories.string(),
13564
+ price: factories['io.flow.common.v0.models.money'](),
13565
+ description: factories.string(),
13566
+ hs6_code: factories.string(),
13567
+ categories: arrayOf(function () { return factories.string(); }),
13568
+ }); },
13569
+ 'io.flow.internal.v0.models.product_sellability_internal_result': function () { return ({
13570
+ restricted_regions: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellablility_region_result'](); }),
13571
+ rule_ids: arrayOf(function () { return factories.string(); }),
13572
+ }); },
14009
13573
  'io.flow.internal.v0.models.product_sellability_result': function () { return ({
14010
13574
  shop_id: factories.string(),
14011
13575
  product_number: factories.string(),
14012
13576
  request_id: factories.string(),
14013
13577
  hs6_code: factories.string(),
14014
13578
  restricted_regions: arrayOf(function () { return factories.string(); }),
13579
+ restricted_regions_by_type: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellablility_region_result'](); }),
14015
13580
  rule_ids: arrayOf(function () { return factories.string(); }),
14016
13581
  }); },
14017
13582
  'io.flow.internal.v0.models.product_transaction': function () { return ({
@@ -14407,19 +13972,6 @@ var factories = {
14407
13972
  destination: factories['io.flow.reference.v0.models.country'](),
14408
13973
  summaries: arrayOf(function () { return factories['io.flow.internal.v0.models.rate_name_summary'](); }),
14409
13974
  }); },
14410
- 'io.flow.internal.v0.models.rebound_configuration': function () { return ({
14411
- id: factories.string(),
14412
- login: factories.string(),
14413
- api_key: factories.string(),
14414
- status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
14415
- orders_since_submitted_at: factories.date_time_iso_8601(),
14416
- }); },
14417
- 'io.flow.internal.v0.models.rebound_configuration_form': function () { return ({
14418
- login: factories.string(),
14419
- api_key: factories.string(),
14420
- status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
14421
- orders_since_submitted_at: factories.date_time_iso_8601(),
14422
- }); },
14423
13975
  'io.flow.internal.v0.models.record_reference': function () { return ({
14424
13976
  id: factories.string(),
14425
13977
  }); },
@@ -14583,6 +14135,11 @@ var factories = {
14583
14135
  sales_records: arrayOf(function () { return factories.object(); }),
14584
14136
  refund_records: arrayOf(function () { return factories.object(); }),
14585
14137
  }); },
14138
+ 'io.flow.internal.v0.models.reporting_fees': function () { return ({
14139
+ mor: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
14140
+ fx: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
14141
+ sp: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
14142
+ }); },
14586
14143
  'io.flow.internal.v0.models.reporting_fulfillment': function () { return ({
14587
14144
  id: factories.string(),
14588
14145
  sequence_number: factories.long(),
@@ -14736,6 +14293,14 @@ var factories = {
14736
14293
  'io.flow.internal.v0.models.rescreen_restrictions_products': function () { return ({
14737
14294
  placeholder: factories.boolean(),
14738
14295
  }); },
14296
+ 'io.flow.internal.v0.models.restriction_blanket_organization_exemption': function () { return ({
14297
+ id: factories.string(),
14298
+ organization_id: factories.string(),
14299
+ description: factories.string(),
14300
+ is_all_rules_exempt: factories.boolean(),
14301
+ exempt_regions: arrayOf(function () { return factories.string(); }),
14302
+ excluded_rules: arrayOf(function () { return factories.string(); }),
14303
+ }); },
14739
14304
  'io.flow.internal.v0.models.restriction_category': function () { return ({
14740
14305
  category: factories.string(),
14741
14306
  }); },
@@ -14782,6 +14347,7 @@ var factories = {
14782
14347
  statuses: arrayOf(function () { return factories['io.flow.internal.v0.enums.restriction_status'](); }),
14783
14348
  rule_ids: arrayOf(function () { return factories.string(); }),
14784
14349
  user_ids: arrayOf(function () { return factories.string(); }),
14350
+ exclude_items_with_pc: factories.boolean(),
14785
14351
  category: factories.string(),
14786
14352
  product_name_query: factories.string(),
14787
14353
  hs6: factories.string(),
@@ -14885,6 +14451,8 @@ var factories = {
14885
14451
  reviews: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_item_review'](); }),
14886
14452
  created_at: factories.date_time_iso_8601(),
14887
14453
  updated_at: factories.date_time_iso_8601(),
14454
+ taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
14455
+ taxonomy_data: arrayOf(function () { return factories['io.flow.product.v0.models.product_taxonomy_data'](); }),
14888
14456
  }); },
14889
14457
  'io.flow.internal.v0.models.restriction_product_decision_form': function () { return ({
14890
14458
  rule_decisions: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_rule_decision_form'](); }),
@@ -14917,6 +14485,8 @@ var factories = {
14917
14485
  auto_review_criteria: arrayOf(function () { return factories['io.flow.internal.v0.models.auto_review_criteria'](); }),
14918
14486
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
14919
14487
  sellability_positive_keywords: arrayOf(function () { return factories.string(); }),
14488
+ community_exemption: arrayOf(function () { return factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](); }),
14489
+ reason_code: factories.string(),
14920
14490
  }); },
14921
14491
  'io.flow.internal.v0.models.restriction_rule_decision_form': function () { return ({
14922
14492
  rule_id: factories.string(),
@@ -14965,6 +14535,8 @@ var factories = {
14965
14535
  auto_review_criteria: arrayOf(function () { return factories['io.flow.internal.v0.models.auto_review_criteria'](); }),
14966
14536
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
14967
14537
  sellability_positive_keywords: arrayOf(function () { return factories.string(); }),
14538
+ community_exemption: arrayOf(function () { return factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](); }),
14539
+ reason_code: factories.string(),
14968
14540
  }); },
14969
14541
  'io.flow.internal.v0.models.restriction_rule_lane_exemption': function () { return ({
14970
14542
  id: factories.string(),
@@ -14979,9 +14551,10 @@ var factories = {
14979
14551
  rule_id: factories.string(),
14980
14552
  description: factories.string(),
14981
14553
  is_rule_exempt: factories.boolean(),
14982
- exempt_countries: arrayOf(function () { return factories.string(); }),
14554
+ exempt_regions: arrayOf(function () { return factories.string(); }),
14983
14555
  ignored_keywords: arrayOf(function () { return factories.string(); }),
14984
14556
  additional_keywords: arrayOf(function () { return factories.string(); }),
14557
+ community_exemption_override: arrayOf(function () { return factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](); }),
14985
14558
  }); },
14986
14559
  'io.flow.internal.v0.models.restriction_rule_override': function () { return ({
14987
14560
  id: factories.string(),
@@ -15012,8 +14585,14 @@ var factories = {
15012
14585
  num_products_setup_complete_with_pvs: factories.decimal(),
15013
14586
  num_orgs_transacting_with_pvs: factories.decimal(),
15014
14587
  num_products_transacting_with_pvs: factories.decimal(),
14588
+ num_orgs_setup_complete_with_pcs: factories.decimal(),
14589
+ num_products_setup_complete_with_pcs: factories.decimal(),
14590
+ num_orgs_transacting_with_pcs: factories.decimal(),
14591
+ num_products_transacting_with_pcs: factories.decimal(),
15015
14592
  oldest_pv_product_date_setup_complete: factories.date_iso_8601(),
15016
14593
  oldest_pv_product_date_transacting: factories.date_iso_8601(),
14594
+ oldest_pc_product_date_setup_complete: factories.date_iso_8601(),
14595
+ oldest_pc_product_date_transacting: factories.date_iso_8601(),
15017
14596
  num_orgs_setup_complete_prs: factories.decimal(),
15018
14597
  num_products_setup_complete_prs: factories.decimal(),
15019
14598
  num_orgs_transacting_prs: factories.decimal(),
@@ -15182,12 +14761,40 @@ var factories = {
15182
14761
  discriminator: 'routing_processor',
15183
14762
  processor: factories['io.flow.internal.v0.enums.processor'](),
15184
14763
  }); },
15185
- 'io.flow.internal.v0.models.sandbox_setup': function () { return ({
14764
+ 'io.flow.internal.v0.models.sales_payment_record': function () { return ({
14765
+ id: factories.string(),
14766
+ organization: factories['io.flow.internal.v0.models.reporting_organization_summary'](),
14767
+ order: factories['io.flow.internal.v0.models.reporting_order_summary'](),
14768
+ order_total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
14769
+ shopper_breakdown: factories['io.flow.internal.v0.models.shopper_breakdown'](),
14770
+ payment: factories['io.flow.internal.v0.models.reporting_payment'](),
14771
+ fees: factories['io.flow.internal.v0.models.reporting_fees'](),
14772
+ conversion_rate: factories['io.flow.internal.v0.models.reporting_conversion_rates'](),
14773
+ payment_is: factories['io.flow.internal.v0.models.payment_is'](),
14774
+ destination_country: factories.string(),
14775
+ fulfilled_at: factories.date_time_iso_8601(),
14776
+ }); },
14777
+ 'io.flow.internal.v0.models.sandbox_setup': function () { return ({
15186
14778
  requested_by: factories.string(),
15187
14779
  }); },
15188
14780
  'io.flow.internal.v0.models.sandbox_setup_form': function () { return ({
15189
14781
  requested_by: factories.string(),
15190
14782
  }); },
14783
+ 'io.flow.internal.v0.models.sarvesh_item': function () { return ({
14784
+ id: factories.string(),
14785
+ number: factories.string(),
14786
+ amount: factories['io.flow.common.v0.models.price'](),
14787
+ description: factories.string(),
14788
+ type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
14789
+ added_on: factories.date_time_iso_8601(),
14790
+ }); },
14791
+ 'io.flow.internal.v0.models.sarvesh_item_form': function () { return ({
14792
+ number: factories.string(),
14793
+ amount: factories['io.flow.common.v0.models.price'](),
14794
+ description: factories.string(),
14795
+ type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
14796
+ added_on: factories.date_time_iso_8601(),
14797
+ }); },
15191
14798
  'io.flow.internal.v0.models.scheduled_payment': function () { return ({
15192
14799
  payment: factories['io.flow.internal.v0.models.report_payment'](),
15193
14800
  bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
@@ -15310,22 +14917,6 @@ var factories = {
15310
14917
  freight_cost: factories.decimal(),
15311
14918
  customer_price: factories.decimal(),
15312
14919
  }); },
15313
- 'io.flow.internal.v0.models.shop': function () { return ({
15314
- id: factories.string(),
15315
- organization: factories['io.flow.common.v0.models.organization_reference'](),
15316
- myshopify_domain: factories.string(),
15317
- domain: factories.string(),
15318
- }); },
15319
- 'io.flow.internal.v0.models.shop_form': function () { return ({
15320
- organization_id: factories.string(),
15321
- token: factories.string(),
15322
- }); },
15323
- 'io.flow.internal.v0.models.shop_version': function () { return ({
15324
- id: factories.string(),
15325
- timestamp: factories.date_time_iso_8601(),
15326
- type: factories['io.flow.common.v0.enums.change_type'](),
15327
- shop: factories['io.flow.internal.v0.models.shop'](),
15328
- }); },
15329
14920
  'io.flow.internal.v0.models.shopify_catalog_publication': function () { return ({
15330
14921
  owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
15331
14922
  }); },
@@ -15336,14 +14927,6 @@ var factories = {
15336
14927
  token: factories['io.flow.internal.v0.models.shopify_channel_organization_token'](),
15337
14928
  service: factories['io.flow.internal.v0.enums.shopify_service'](),
15338
14929
  }); },
15339
- 'io.flow.internal.v0.models.shopify_check_inventory_error': function () { return ({
15340
- code: factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code'](),
15341
- messages: arrayOf(function () { return factories.string(); }),
15342
- numbers: arrayOf(function () { return factories.string(); }),
15343
- }); },
15344
- 'io.flow.internal.v0.models.shopify_code_form': function () { return ({
15345
- code: factories.string(),
15346
- }); },
15347
14930
  'io.flow.internal.v0.models.shopify_dispute': function () { return ({
15348
14931
  id: factories.string(),
15349
14932
  organization_id: factories.string(),
@@ -15371,64 +14954,28 @@ var factories = {
15371
14954
  organization: factories.string(),
15372
14955
  dispute: factories['io.flow.internal.v0.models.shopify_dispute'](),
15373
14956
  }); },
15374
- 'io.flow.internal.v0.models.shopify_experience_short_id': function () { return ({
14957
+ 'io.flow.internal.v0.models.shopify_hs10_code': function () { return ({
14958
+ country_code: factories.string(),
14959
+ code: factories.string(),
14960
+ }); },
14961
+ 'io.flow.internal.v0.models.shopify_hs10_codes': function () { return ({
15375
14962
  id: factories.string(),
15376
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
15377
- short_id: factories.string(),
14963
+ item_number: factories.string(),
14964
+ codes: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_hs10_code'](); }),
15378
14965
  }); },
15379
- 'io.flow.internal.v0.models.shopify_experience_short_id_deleted': function () { return ({
15380
- discriminator: 'shopify_experience_short_id_deleted',
14966
+ 'io.flow.internal.v0.models.shopify_hs10_codes_deleted': function () { return ({
14967
+ discriminator: 'shopify_hs10_codes_deleted',
15381
14968
  event_id: factories.string(),
15382
14969
  timestamp: factories.date_time_iso_8601(),
15383
14970
  organization: factories.string(),
15384
- short_id: factories['io.flow.internal.v0.models.shopify_experience_short_id'](),
14971
+ id: factories.string(),
15385
14972
  }); },
15386
- 'io.flow.internal.v0.models.shopify_experience_short_id_upserted': function () { return ({
15387
- discriminator: 'shopify_experience_short_id_upserted',
14973
+ 'io.flow.internal.v0.models.shopify_hs10_codes_upserted': function () { return ({
14974
+ discriminator: 'shopify_hs10_codes_upserted',
15388
14975
  event_id: factories.string(),
15389
14976
  timestamp: factories.date_time_iso_8601(),
15390
14977
  organization: factories.string(),
15391
- short_id: factories['io.flow.internal.v0.models.shopify_experience_short_id'](),
15392
- }); },
15393
- 'io.flow.internal.v0.models.shopify_gift_card_balance': function () { return ({
15394
- gift_card_id: factories.long(),
15395
- last_characters: factories.string(),
15396
- amount: factories.decimal(),
15397
- currency: factories.string(),
15398
- }); },
15399
- 'io.flow.internal.v0.models.shopify_gift_card_balance_form': function () { return ({
15400
- number: factories.string(),
15401
- }); },
15402
- 'io.flow.internal.v0.models.shopify_gift_card_payment_form': function () { return ({
15403
- code: factories.string(),
15404
- customer_id: factories.long(),
15405
- }); },
15406
- 'io.flow.internal.v0.models.shopify_gift_card_redemption': function () { return ({
15407
- adjustment_id: factories.long(),
15408
- gift_card_id: factories.long(),
15409
- last_characters: factories.string(),
15410
- amount: factories.decimal(),
15411
- currency: factories.string(),
15412
- }); },
15413
- 'io.flow.internal.v0.models.shopify_gift_card_redemption_form': function () { return ({
15414
- number: factories.string(),
15415
- amount: factories.decimal(),
15416
- currency: factories.string(),
15417
- }); },
15418
- 'io.flow.internal.v0.models.shopify_gift_card_reversal': function () { return ({
15419
- adjustment_id: factories.long(),
15420
- gift_card_id: factories.long(),
15421
- last_characters: factories.string(),
15422
- amount: factories.decimal(),
15423
- currency: factories.string(),
15424
- }); },
15425
- 'io.flow.internal.v0.models.shopify_gift_card_reversal_form': function () { return ({
15426
- number: factories.string(),
15427
- amount: factories.decimal(),
15428
- currency: factories.string(),
15429
- }); },
15430
- 'io.flow.internal.v0.models.shopify_grants_check': function () { return ({
15431
- placeholder: factories.string(),
14978
+ shopify_hs10_codes: factories['io.flow.internal.v0.models.shopify_hs10_codes'](),
15432
14979
  }); },
15433
14980
  'io.flow.internal.v0.models.shopify_incoterm_includes': function () { return ({
15434
14981
  duties: factories.boolean(),
@@ -15751,11 +15298,6 @@ var factories = {
15751
15298
  'io.flow.internal.v0.models.shopify_monitoring_tracking_url': function () { return ({
15752
15299
  url: factories.string(),
15753
15300
  }); },
15754
- 'io.flow.internal.v0.models.shopify_order_authorization': function () { return ({
15755
- result: factories['io.flow.payment.v0.models.authorization_result'](),
15756
- detail: factories['io.flow.internal.v0.models.shopify_order_detail'](),
15757
- redirect: factories.string(),
15758
- }); },
15759
15301
  'io.flow.internal.v0.models.shopify_order_cancel_form': function () { return ({
15760
15302
  note: factories.string(),
15761
15303
  }); },
@@ -15764,25 +15306,10 @@ var factories = {
15764
15306
  shopify_order_id: factories.long(),
15765
15307
  message: factories.string(),
15766
15308
  }); },
15767
- 'io.flow.internal.v0.models.shopify_order_content': function () { return ({
15768
- lines: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_order_line_content'](); }),
15769
- discounts: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_order_discount_content'](); }),
15770
- }); },
15771
15309
  'io.flow.internal.v0.models.shopify_order_destination_form': function () { return ({
15772
15310
  destination: factories['io.flow.common.v0.models.address'](),
15773
15311
  order_note: factories.string(),
15774
15312
  }); },
15775
- 'io.flow.internal.v0.models.shopify_order_detail': function () { return ({
15776
- organization: factories['io.flow.common.v0.models.organization_reference'](),
15777
- number: factories.string(),
15778
- order: factories['io.flow.experience.v0.models.order'](),
15779
- payments: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_payment_summary'](); }),
15780
- contents: factories['io.flow.internal.v0.models.shopify_order_content'](),
15781
- }); },
15782
- 'io.flow.internal.v0.models.shopify_order_discount_content': function () { return ({
15783
- description: factories.string(),
15784
- code: factories.string(),
15785
- }); },
15786
15313
  'io.flow.internal.v0.models.shopify_order_fulfillments_snapshot': function () { return ({
15787
15314
  id: factories.string(),
15788
15315
  organization_id: factories.string(),
@@ -15804,26 +15331,6 @@ var factories = {
15804
15331
  timestamp: factories.date_time_iso_8601(),
15805
15332
  shopify_order_fulfillments_snapshot: factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'](),
15806
15333
  }); },
15807
- 'io.flow.internal.v0.models.shopify_order_inventory_check': function () { return ({
15808
- item_number: factories.string(),
15809
- quantity: factories.long(),
15810
- order_number: factories.string(),
15811
- }); },
15812
- 'io.flow.internal.v0.models.shopify_order_line_attribute': function () { return ({
15813
- key: factories.string(),
15814
- name: factories.string(),
15815
- value: factories.string(),
15816
- }); },
15817
- 'io.flow.internal.v0.models.shopify_order_line_content': function () { return ({
15818
- item_number: factories.string(),
15819
- quantity: factories.long(),
15820
- price: factories['io.flow.common.v0.models.price_with_base'](),
15821
- total: factories['io.flow.common.v0.models.price_with_base'](),
15822
- name: factories.string(),
15823
- image_url: factories.string(),
15824
- variant_url: factories.string(),
15825
- attributes: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_order_line_attribute'](); }),
15826
- }); },
15827
15334
  'io.flow.internal.v0.models.shopify_order_risk_assessment': function () { return ({
15828
15335
  id: factories.string(),
15829
15336
  risk_level: factories.string(),
@@ -15861,28 +15368,12 @@ var factories = {
15861
15368
  organization: factories.string(),
15862
15369
  transaction: factories['io.flow.internal.v0.models.shopify_order_transaction'](),
15863
15370
  }); },
15864
- 'io.flow.internal.v0.models.shopify_organization_settings': function () { return ({
15865
- id: factories.string(),
15866
- process_label: factories.boolean(),
15867
- send_order_receipt: factories.boolean(),
15868
- send_inventory_update: factories.boolean(),
15869
- }); },
15870
- 'io.flow.internal.v0.models.shopify_organization_settings_form': function () { return ({
15871
- process_label: factories.boolean(),
15872
- send_order_receipt: factories.boolean(),
15873
- send_inventory_update: factories.boolean(),
15874
- }); },
15875
15371
  'io.flow.internal.v0.models.shopify_partner_webhook': function () { return ({
15876
15372
  placeholder: factories.boolean(),
15877
15373
  }); },
15878
15374
  'io.flow.internal.v0.models.shopify_partner_webhook_raw': function () { return ({
15879
15375
  placeholder: factories.boolean(),
15880
15376
  }); },
15881
- 'io.flow.internal.v0.models.shopify_payment_summary': function () { return ({
15882
- description: factories.string(),
15883
- address: factories['io.flow.common.v0.models.address'](),
15884
- contact: factories['io.flow.common.v0.models.contact'](),
15885
- }); },
15886
15377
  'io.flow.internal.v0.models.shopify_product_bundle': function () { return ({
15887
15378
  id: factories.string(),
15888
15379
  underlying: factories['io.flow.internal.v0.models.shopify_product_bundle_underlying'](),
@@ -15964,85 +15455,17 @@ var factories = {
15964
15455
  shopify_product: factories['io.flow.shopify.external.v0.models.product'](),
15965
15456
  deleted_at: factories.date_time_iso_8601(),
15966
15457
  }); },
15967
- 'io.flow.internal.v0.models.shopify_promo_form': function () { return ({
15968
- name: factories.string(),
15969
- starts_at: factories.date_time_iso_8601(),
15970
- ends_at: factories.date_time_iso_8601(),
15971
- status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
15972
- rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
15973
- stackable_limit: factories.long(),
15974
- behaviors: arrayOf(function () { return factories['io.flow.internal.v0.enums.shopify_promotion_behavior'](); }),
15975
- }); },
15976
- 'io.flow.internal.v0.models.shopify_promotion': function () { return ({
15458
+ 'io.flow.internal.v0.models.shopify_report_file_deleted': function () { return ({
15459
+ discriminator: 'shopify_report_file_deleted',
15460
+ event_id: factories.string(),
15461
+ timestamp: factories.date_time_iso_8601(),
15977
15462
  id: factories.string(),
15978
- name: factories.string(),
15979
- starts_at: factories.date_time_iso_8601(),
15980
- ends_at: factories.date_time_iso_8601(),
15981
- status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
15982
- rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
15983
- stackable_limit: factories.long(),
15984
- behaviors: arrayOf(function () { return factories['io.flow.internal.v0.enums.shopify_promotion_behavior'](); }),
15985
- }); },
15986
- 'io.flow.internal.v0.models.shopify_promotion_attribute_value': function () { return ({
15987
- name: factories.string(),
15988
- discount: factories['io.flow.common.v0.models.money'](),
15989
- }); },
15990
- 'io.flow.internal.v0.models.shopify_promotion_fixed_amount': function () { return ({
15991
- discriminator: 'shopify_promotion_fixed_amount',
15992
- amount: factories.decimal(),
15993
- currency: factories.string(),
15994
- }); },
15995
- 'io.flow.internal.v0.models.shopify_promotion_form': function () { return ({
15996
- code: factories.string(),
15997
- }); },
15998
- 'io.flow.internal.v0.models.shopify_promotion_item_entitlement': function () { return ({
15999
- discriminator: 'shopify_promotion_item_entitlement',
16000
- q: factories.string(),
16001
- allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
16002
- }); },
16003
- 'io.flow.internal.v0.models.shopify_promotion_item_prerequisite': function () { return ({
16004
- discriminator: 'shopify_promotion_item_prerequisite',
16005
- q: factories.string(),
16006
- at_least: factories.long(),
16007
- at_most: factories.long(),
16008
- exclude_from_offer: factories.boolean(),
16009
- }); },
16010
- 'io.flow.internal.v0.models.shopify_promotion_max_amount': function () { return ({
16011
- discriminator: 'shopify_promotion_max_amount',
16012
- amount: factories.decimal(),
16013
- currency: factories.string(),
16014
- }); },
16015
- 'io.flow.internal.v0.models.shopify_promotion_max_limit': function () { return ({
16016
- discriminator: 'shopify_promotion_max_limit',
16017
- limit: factories.long(),
16018
- }); },
16019
- 'io.flow.internal.v0.models.shopify_promotion_offer': function () { return ({
16020
- discount: factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount'](),
16021
- entitlement: factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement'](),
16022
- max: arrayOf(function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_max'](); }),
16023
- }); },
16024
- 'io.flow.internal.v0.models.shopify_promotion_order_entitlement': function () { return ({
16025
- discriminator: 'shopify_promotion_order_entitlement',
16026
- components: arrayOf(function () { return factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component'](); }),
16027
- allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
16028
- }); },
16029
- 'io.flow.internal.v0.models.shopify_promotion_order_prerequisite': function () { return ({
16030
- discriminator: 'shopify_promotion_order_prerequisite',
16031
- q: factories.string(),
16032
15463
  }); },
16033
- 'io.flow.internal.v0.models.shopify_promotion_percent': function () { return ({
16034
- discriminator: 'shopify_promotion_percent',
16035
- percent: factories.long(),
16036
- }); },
16037
- 'io.flow.internal.v0.models.shopify_promotion_rule': function () { return ({
16038
- prerequisites: arrayOf(function () { return factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite'](); }),
16039
- offers: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_promotion_offer'](); }),
16040
- }); },
16041
- 'io.flow.internal.v0.models.shopify_shop_deleted': function () { return ({
16042
- discriminator: 'shopify_shop_deleted',
15464
+ 'io.flow.internal.v0.models.shopify_report_file_upserted': function () { return ({
15465
+ discriminator: 'shopify_report_file_upserted',
16043
15466
  event_id: factories.string(),
16044
15467
  timestamp: factories.date_time_iso_8601(),
16045
- id: factories.string(),
15468
+ shopify_report_file: factories['io.flow.internal.v0.models.report_file'](),
16046
15469
  }); },
16047
15470
  'io.flow.internal.v0.models.shopify_shop_statistics': function () { return ({
16048
15471
  id: factories.string(),
@@ -16053,12 +15476,6 @@ var factories = {
16053
15476
  catalog_products_count: factories.long(),
16054
15477
  initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
16055
15478
  }); },
16056
- 'io.flow.internal.v0.models.shopify_shop_upserted': function () { return ({
16057
- discriminator: 'shopify_shop_upserted',
16058
- event_id: factories.string(),
16059
- timestamp: factories.date_time_iso_8601(),
16060
- shop: factories['io.flow.internal.v0.models.shop'](),
16061
- }); },
16062
15479
  'io.flow.internal.v0.models.shopify_store_detail': function () { return ({
16063
15480
  shopify_domain: factories.string(),
16064
15481
  shop_id: factories.string(),
@@ -16067,19 +15484,12 @@ var factories = {
16067
15484
  id: factories.string(),
16068
15485
  request: factories.object(),
16069
15486
  }); },
16070
- 'io.flow.internal.v0.models.shopify_webhook': function () { return ({
16071
- id: factories.string(),
16072
- shop_id: factories.string(),
16073
- address: factories.string(),
16074
- topic: factories['io.flow.shopify.external.v0.enums.topic'](),
16075
- }); },
16076
- 'io.flow.internal.v0.models.shopify_webhook_event': function () { return ({
16077
- placeholder: factories.string(),
16078
- }); },
16079
- 'io.flow.internal.v0.models.shopify_webhook_form': function () { return ({
16080
- myshopify_domain: factories.string(),
16081
- address: factories.string(),
16082
- topic: factories['io.flow.shopify.external.v0.enums.topic'](),
15487
+ 'io.flow.internal.v0.models.shopper_breakdown': function () { return ({
15488
+ product: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
15489
+ tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
15490
+ duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
15491
+ discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
15492
+ total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
16083
15493
  }); },
16084
15494
  'io.flow.internal.v0.models.shopper_fees': function () { return ({
16085
15495
  fuel: factories.decimal(),
@@ -16252,14 +15662,6 @@ var factories = {
16252
15662
  discriminator: 'statement_creation_metadata',
16253
15663
  period: factories['io.flow.common.v0.models.datetime_range'](),
16254
15664
  }); },
16255
- 'io.flow.internal.v0.models.store_connection': function () { return ({
16256
- organization: factories['io.flow.common.v0.models.organization_reference'](),
16257
- id: factories.string(),
16258
- domain: factories.string(),
16259
- }); },
16260
- 'io.flow.internal.v0.models.store_connection_form': function () { return ({
16261
- organization: factories.string(),
16262
- }); },
16263
15665
  'io.flow.internal.v0.models.string_feature_default_value': function () { return ({
16264
15666
  discriminator: 'string',
16265
15667
  value: factories.string(),
@@ -16564,10 +15966,6 @@ var factories = {
16564
15966
  timestamp: factories.date_time_iso_8601(),
16565
15967
  reversal: factories['io.flow.internal.v0.models.stripe_internal_reversal'](),
16566
15968
  }); },
16567
- 'io.flow.internal.v0.models.subcatalog_item_count': function () { return ({
16568
- key: factories.string(),
16569
- count: factories.long(),
16570
- }); },
16571
15969
  'io.flow.internal.v0.models.submitted_order_upserted': function () { return ({
16572
15970
  discriminator: 'submitted_order_upserted',
16573
15971
  event_id: factories.string(),
@@ -16621,10 +16019,6 @@ var factories = {
16621
16019
  stacktrace: factories.string(),
16622
16020
  snooze_id: factories.string(),
16623
16021
  }); },
16624
- 'io.flow.internal.v0.models.task_count': function () { return ({
16625
- discriminator: factories.string(),
16626
- count: factories.long(),
16627
- }); },
16628
16022
  'io.flow.internal.v0.models.task_import': function () { return ({
16629
16023
  discriminator: 'task_import',
16630
16024
  import_id: factories.string(),
@@ -17263,25 +16657,6 @@ var factories = {
17263
16657
  timestamp: factories.date_time_iso_8601(),
17264
16658
  user: factories['io.flow.common.v0.models.user'](),
17265
16659
  }); },
17266
- 'io.flow.internal.v0.models.v1_checkout': function () { return ({
17267
- id: factories.string(),
17268
- organization: factories['io.flow.common.v0.models.organization_summary'](),
17269
- builder: factories['io.flow.experience.v0.models.order_builder'](),
17270
- platform: factories['io.flow.internal.v0.models.checkout_platform_data'](),
17271
- content: factories['io.flow.internal.v0.models.checkout_content'](),
17272
- destinations: arrayOf(function () { return factories['io.flow.reference.v0.models.country'](); }),
17273
- optins: arrayOf(function () { return factories['io.flow.internal.v0.models.optin_prompt'](); }),
17274
- addresses: arrayOf(function () { return factories['io.flow.experience.v0.models.address_configuration'](); }),
17275
- features: factories['io.flow.internal.v0.models.feature_value_result'](),
17276
- configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
17277
- cart: factories['io.flow.shopify.v0.models.shopify_cart'](),
17278
- customer: factories['io.flow.customer.v0.models.customer'](),
17279
- address_book: factories['io.flow.customer.v0.models.customer_address_book'](),
17280
- gift_card_program: factories['io.flow.internal.v0.models.gift_card_program'](),
17281
- loyalty_program: factories['io.flow.internal.v0.models.loyalty_program'](),
17282
- payment: factories['io.flow.internal.v0.models.checkout_payment'](),
17283
- customer_bundle: factories['io.flow.customer.v0.models.customer_bundle'](),
17284
- }); },
17285
16660
  'io.flow.internal.v0.models.validated_address': function () { return ({
17286
16661
  company_name: factories.string(),
17287
16662
  person_name: factories.string(),
@@ -17328,11 +16703,6 @@ var factories = {
17328
16703
  direction: factories['io.flow.label.v0.enums.direction'](),
17329
16704
  package_dimensions_source: factories['io.flow.label.v0.enums.package_dimensions_source'](),
17330
16705
  }); },
17331
- 'io.flow.internal.v0.models.validation_character_length': function () { return ({
17332
- discriminator: 'validation_character_length',
17333
- min: factories.long(),
17334
- max: factories.long(),
17335
- }); },
17336
16706
  'io.flow.internal.v0.models.vies_result': function () { return ({
17337
16707
  country: factories.string(),
17338
16708
  number: factories.string(),
@@ -17500,15 +16870,6 @@ var factories = {
17500
16870
  ]);
17501
16871
  return f();
17502
16872
  },
17503
- 'io.flow.internal.v0.unions.content_item': function () {
17504
- var f = faker.helpers.arrayElement([
17505
- function () { return factories['io.flow.internal.v0.models.dict'](); },
17506
- function () { return factories['io.flow.internal.v0.models.href'](); },
17507
- function () { return factories['io.flow.internal.v0.models.content_label'](); },
17508
- function () { return factories['io.flow.internal.v0.models.load'](); },
17509
- ]);
17510
- return f();
17511
- },
17512
16873
  'io.flow.internal.v0.unions.decline_reason': function () {
17513
16874
  var f = faker.helpers.arrayElement([
17514
16875
  function () { return factories['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'](); },
@@ -17621,12 +16982,8 @@ var factories = {
17621
16982
  function () { return factories['io.flow.internal.v0.models.channel_order_acceptance_upserted'](); },
17622
16983
  function () { return factories['io.flow.internal.v0.models.channel_order_acceptance_deleted'](); },
17623
16984
  function () { return factories['io.flow.internal.v0.models.channel_order_acceptance_failed'](); },
17624
- function () { return factories['io.flow.internal.v0.models.checkout_configuration_upserted'](); },
17625
- function () { return factories['io.flow.internal.v0.models.checkout_configuration_deleted'](); },
17626
16985
  function () { return factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted'](); },
17627
16986
  function () { return factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted'](); },
17628
- function () { return factories['io.flow.internal.v0.models.localized_content_upserted'](); },
17629
- function () { return factories['io.flow.internal.v0.models.localization_upserted'](); },
17630
16987
  function () { return factories['io.flow.internal.v0.models.internal_channel_rate_deleted'](); },
17631
16988
  function () { return factories['io.flow.internal.v0.models.internal_channel_rate_upserted'](); },
17632
16989
  function () { return factories['io.flow.internal.v0.models.rate_deleted'](); },
@@ -17727,8 +17084,6 @@ var factories = {
17727
17084
  function () { return factories['io.flow.internal.v0.models.item_harmonization_upserted'](); },
17728
17085
  function () { return factories['io.flow.internal.v0.models.item_harmonization_deleted'](); },
17729
17086
  function () { return factories['io.flow.internal.v0.models.harmonization_classification_statistics_published'](); },
17730
- function () { return factories['io.flow.internal.v0.models.issuer_upserted'](); },
17731
- function () { return factories['io.flow.internal.v0.models.issuer_deleted'](); },
17732
17087
  function () { return factories['io.flow.internal.v0.models.item_form_import_request'](); },
17733
17088
  function () { return factories['io.flow.internal.v0.models.label_request_error_upserted'](); },
17734
17089
  function () { return factories['io.flow.internal.v0.models.label_request_error_deleted'](); },
@@ -17826,10 +17181,8 @@ var factories = {
17826
17181
  function () { return factories['io.flow.internal.v0.models.restriction_rule_effect_deleted'](); },
17827
17182
  function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](); },
17828
17183
  function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'](); },
17829
- function () { return factories['io.flow.internal.v0.models.shopify_shop_upserted'](); },
17830
- function () { return factories['io.flow.internal.v0.models.shopify_shop_deleted'](); },
17831
- function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](); },
17832
- function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted'](); },
17184
+ function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted'](); },
17185
+ function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted'](); },
17833
17186
  function () { return factories['io.flow.internal.v0.models.shopify_markets_order_upserted'](); },
17834
17187
  function () { return factories['io.flow.internal.v0.models.shopify_markets_order_deleted'](); },
17835
17188
  function () { return factories['io.flow.internal.v0.models.shopify_markets_shop_upserted'](); },
@@ -17875,6 +17228,8 @@ var factories = {
17875
17228
  function () { return factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](); },
17876
17229
  function () { return factories['io.flow.internal.v0.models.shopify_dispute_upserted'](); },
17877
17230
  function () { return factories['io.flow.internal.v0.models.shopify_dispute_deleted'](); },
17231
+ function () { return factories['io.flow.internal.v0.models.shopify_report_file_upserted'](); },
17232
+ function () { return factories['io.flow.internal.v0.models.shopify_report_file_deleted'](); },
17878
17233
  function () { return factories['io.flow.internal.v0.models.stripe_authorization_deleted'](); },
17879
17234
  function () { return factories['io.flow.internal.v0.models.stripe_authorization_upserted'](); },
17880
17235
  function () { return factories['io.flow.internal.v0.models.stripe_reversal_deleted'](); },
@@ -18057,19 +17412,6 @@ var factories = {
18057
17412
  ]);
18058
17413
  return f();
18059
17414
  },
18060
- 'io.flow.internal.v0.unions.localizable_content': function () {
18061
- var f = faker.helpers.arrayElement([
18062
- function () { return factories['io.flow.internal.v0.models.localizable_content_reference'](); },
18063
- function () { return factories['io.flow.internal.v0.models.localization'](); },
18064
- ]);
18065
- return f();
18066
- },
18067
- 'io.flow.internal.v0.unions.optin_prompt_display': function () {
18068
- var f = faker.helpers.arrayElement([
18069
- function () { return factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](); },
18070
- ]);
18071
- return f();
18072
- },
18073
17415
  'io.flow.internal.v0.unions.order_action_form': function () {
18074
17416
  var f = faker.helpers.arrayElement([
18075
17417
  function () { return factories['io.flow.internal.v0.models.whole_order_action_form'](); },
@@ -18203,34 +17545,6 @@ var factories = {
18203
17545
  ]);
18204
17546
  return f();
18205
17547
  },
18206
- 'io.flow.internal.v0.unions.shopify_promotion_offer_discount': function () {
18207
- var f = faker.helpers.arrayElement([
18208
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount'](); },
18209
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_percent'](); },
18210
- ]);
18211
- return f();
18212
- },
18213
- 'io.flow.internal.v0.unions.shopify_promotion_offer_entitlement': function () {
18214
- var f = faker.helpers.arrayElement([
18215
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement'](); },
18216
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement'](); },
18217
- ]);
18218
- return f();
18219
- },
18220
- 'io.flow.internal.v0.unions.shopify_promotion_offer_max': function () {
18221
- var f = faker.helpers.arrayElement([
18222
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_limit'](); },
18223
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_amount'](); },
18224
- ]);
18225
- return f();
18226
- },
18227
- 'io.flow.internal.v0.unions.shopify_promotion_prerequisite': function () {
18228
- var f = faker.helpers.arrayElement([
18229
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite'](); },
18230
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite'](); },
18231
- ]);
18232
- return f();
18233
- },
18234
17548
  'io.flow.internal.v0.unions.simplified_classification_taxonomy': function () {
18235
17549
  var f = faker.helpers.arrayElement([
18236
17550
  function () { return factories['io.flow.internal.v0.models.simplified_taxonomy_category'](); },
@@ -18328,12 +17642,6 @@ var factories = {
18328
17642
  ]);
18329
17643
  return f();
18330
17644
  },
18331
- 'io.flow.internal.v0.unions.validation_rule': function () {
18332
- var f = faker.helpers.arrayElement([
18333
- function () { return factories['io.flow.internal.v0.models.validation_character_length'](); },
18334
- ]);
18335
- return f();
18336
- },
18337
17645
  'io.flow.inventory.v0.enums.aggregate': function () { return faker.helpers.arrayElement(['maximum', 'minimum']); },
18338
17646
  'io.flow.inventory.v0.enums.inventory_status': function () { return faker.helpers.arrayElement(['has_inventory', 'no_inventory']); },
18339
17647
  'io.flow.inventory.v0.enums.update_type': function () { return faker.helpers.arrayElement(['change', 'set']); },
@@ -19005,61 +18313,6 @@ var factories = {
19005
18313
  ]);
19006
18314
  return f();
19007
18315
  },
19008
- 'io.flow.order.management.event.v0.models.fulfillment_item_allocation_details': function () { return ({
19009
- item_number: factories.string(),
19010
- line_number: factories.long(),
19011
- levies: factories['io.flow.common.v0.models.price_with_base'](),
19012
- total: factories['io.flow.common.v0.models.price_with_base'](),
19013
- }); },
19014
- 'io.flow.order.management.event.v0.models.order_placed': function () { return ({
19015
- discriminator: 'order_placed',
19016
- event_id: factories.string(),
19017
- timestamp: factories.date_time_iso_8601(),
19018
- organization: factories.string(),
19019
- order_number: factories.string(),
19020
- order: factories['io.flow.experience.v0.models.order'](),
19021
- allocation: factories['io.flow.experience.v0.models.allocation_v2'](),
19022
- }); },
19023
- 'io.flow.order.management.event.v0.models.order_placed_v2': function () { return ({
19024
- discriminator: 'order_placed_v2',
19025
- event_id: factories.string(),
19026
- timestamp: factories.date_time_iso_8601(),
19027
- organization: factories.string(),
19028
- order_placed: factories['io.flow.order.management.v0.models.order_placed_details'](),
19029
- }); },
19030
- 'io.flow.order.management.event.v0.models.ready_to_fulfill': function () { return ({
19031
- discriminator: 'ready_to_fulfill',
19032
- event_id: factories.string(),
19033
- timestamp: factories.date_time_iso_8601(),
19034
- organization: factories.string(),
19035
- order_number: factories.string(),
19036
- order: factories['io.flow.experience.v0.models.order'](),
19037
- fulfillments: arrayOf(function () { return factories['io.flow.order.management.v0.models.fulfillment'](); }),
19038
- fulfillment_item_allocation_details: arrayOf(function () { return factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](); }),
19039
- }); },
19040
- 'io.flow.order.management.event.v0.models.ready_to_fulfill_details': function () { return ({
19041
- id: factories.string(),
19042
- order_number: factories.string(),
19043
- order: factories['io.flow.experience.v0.models.order'](),
19044
- fulfillments: arrayOf(function () { return factories['io.flow.order.management.v0.models.fulfillment'](); }),
19045
- fulfillment_item_allocation_details: arrayOf(function () { return factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](); }),
19046
- }); },
19047
- 'io.flow.order.management.event.v0.models.ready_to_fulfill_v2': function () { return ({
19048
- discriminator: 'ready_to_fulfill_v2',
19049
- event_id: factories.string(),
19050
- timestamp: factories.date_time_iso_8601(),
19051
- organization: factories.string(),
19052
- ready_to_fulfill: factories['io.flow.order.management.event.v0.models.ready_to_fulfill_details'](),
19053
- }); },
19054
- 'io.flow.order.management.event.v0.unions.order_management_event': function () {
19055
- var f = faker.helpers.arrayElement([
19056
- function () { return factories['io.flow.order.management.event.v0.models.order_placed'](); },
19057
- function () { return factories['io.flow.order.management.event.v0.models.order_placed_v2'](); },
19058
- function () { return factories['io.flow.order.management.event.v0.models.ready_to_fulfill'](); },
19059
- function () { return factories['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'](); },
19060
- ]);
19061
- return f();
19062
- },
19063
18316
  'io.flow.order.management.v0.enums.cancel_reason': function () { return faker.helpers.arrayElement(['out_of_stock', 'consumer_requested', 'flow_cancel']); },
19064
18317
  'io.flow.order.management.v0.enums.fulfillment_item_quantity_status': function () { return faker.helpers.arrayElement(['new', 'shipped', 'cancelled']); },
19065
18318
  'io.flow.order.management.v0.enums.order_change_source': function () { return faker.helpers.arrayElement(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']); },
@@ -21666,6 +20919,7 @@ var factories = {
21666
20919
  taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
21667
20920
  taxonomy_data: arrayOf(function () { return factories['io.flow.product.v0.models.product_taxonomy_data'](); }),
21668
20921
  item_numbers: arrayOf(function () { return factories.string(); }),
20922
+ highest_value_item_number: factories.string(),
21669
20923
  updated_at: factories.date_time_iso_8601(),
21670
20924
  deleted_at: factories.date_time_iso_8601(),
21671
20925
  }); },
@@ -22484,16 +21738,12 @@ var factories = {
22484
21738
  shop_id: factories.string(),
22485
21739
  product_id: factories.string(),
22486
21740
  name: factories.string(),
22487
- price: factories['io.flow.sellability.v0.models.product_sellability_price'](),
21741
+ price: factories['io.flow.common.v0.models.money'](),
22488
21742
  description: factories.string(),
22489
21743
  taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
22490
21744
  status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
22491
21745
  dry_run: factories.boolean(),
22492
21746
  }); },
22493
- 'io.flow.sellability.v0.models.product_sellability_price': function () { return ({
22494
- currency: factories.string(),
22495
- amount: factories.decimal(),
22496
- }); },
22497
21747
  'io.flow.sellability.v0.models.sellability_error': function () { return ({
22498
21748
  discriminator: 'sellability_error',
22499
21749
  code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
@@ -22510,90 +21760,6 @@ var factories = {
22510
21760
  ]);
22511
21761
  return f();
22512
21762
  },
22513
- 'io.flow.session.v0.models.cart_reference': function () { return ({
22514
- id: factories.string(),
22515
- }); },
22516
- 'io.flow.session.v0.models.local_session': function () { return ({
22517
- country: factories['io.flow.reference.v0.models.country'](),
22518
- currency: factories['io.flow.reference.v0.models.currency'](),
22519
- language: factories['io.flow.reference.v0.models.language'](),
22520
- locale: factories['io.flow.reference.v0.models.locale'](),
22521
- experience: factories['io.flow.experience.v0.models.experience_geo'](),
22522
- }); },
22523
- 'io.flow.session.v0.models.organization_session': function () { return ({
22524
- discriminator: 'organization_session',
22525
- id: factories.string(),
22526
- organization: factories.string(),
22527
- visitor: factories['io.flow.session.v0.models.session_visitor'](),
22528
- visit: factories['io.flow.session.v0.models.session_visit'](),
22529
- environment: factories['io.flow.common.v0.enums.environment'](),
22530
- attributes: objectOf(function () { return factories.string(); }),
22531
- ip: factories.string(),
22532
- local: factories['io.flow.session.v0.models.local_session'](),
22533
- geo: factories['io.flow.session.v0.models.session_geo'](),
22534
- experience: factories['io.flow.experience.v0.models.experience_geo'](),
22535
- format: factories['io.flow.session.v0.models.session_format'](),
22536
- }); },
22537
- 'io.flow.session.v0.models.organization_session_authorization': function () { return ({
22538
- discriminator: 'organization_session_authorization',
22539
- organization: factories['io.flow.common.v0.models.organization_reference'](),
22540
- environment: factories['io.flow.common.v0.enums.environment'](),
22541
- }); },
22542
- 'io.flow.session.v0.models.session_authorization_form': function () { return ({
22543
- session: factories.string(),
22544
- }); },
22545
- 'io.flow.session.v0.models.session_currency_format': function () { return ({
22546
- symbol: factories['io.flow.common.v0.enums.currency_symbol_format'](),
22547
- label_formatters: arrayOf(function () { return factories['io.flow.common.v0.enums.currency_label_formatter'](); }),
22548
- }); },
22549
- 'io.flow.session.v0.models.session_expiration_config': function () { return ({
22550
- unit: factories['io.flow.common.v0.enums.unit_of_time'](),
22551
- value: factories.long(),
22552
- }); },
22553
- 'io.flow.session.v0.models.session_form': function () { return ({
22554
- ip: factories.string(),
22555
- experience: factories.string(),
22556
- country: factories.string(),
22557
- currency: factories.string(),
22558
- language: factories.string(),
22559
- locale: factories.string(),
22560
- attributes: objectOf(function () { return factories.string(); }),
22561
- }); },
22562
- 'io.flow.session.v0.models.session_format': function () { return ({
22563
- currency: factories['io.flow.session.v0.models.session_currency_format'](),
22564
- }); },
22565
- 'io.flow.session.v0.models.session_geo': function () { return ({
22566
- country: factories['io.flow.reference.v0.models.country'](),
22567
- currency: factories['io.flow.reference.v0.models.currency'](),
22568
- language: factories['io.flow.reference.v0.models.language'](),
22569
- locale: factories['io.flow.reference.v0.models.locale'](),
22570
- }); },
22571
- 'io.flow.session.v0.models.session_put_form': function () { return ({
22572
- ip: factories.string(),
22573
- experience: factories.string(),
22574
- country: factories.string(),
22575
- currency: factories.string(),
22576
- language: factories.string(),
22577
- locale: factories.string(),
22578
- attributes: objectOf(function () { return factories.string(); }),
22579
- }); },
22580
- 'io.flow.session.v0.models.session_visit': function () { return ({
22581
- id: factories.string(),
22582
- expires_at: factories.date_time_iso_8601(),
22583
- }); },
22584
- 'io.flow.session.v0.models.session_visitor': function () { return ({
22585
- id: factories.string(),
22586
- }); },
22587
- 'io.flow.session.v0.unions.session': function () {
22588
- var f = faker.helpers.arrayElement([function () { return factories['io.flow.session.v0.models.organization_session'](); }]);
22589
- return f();
22590
- },
22591
- 'io.flow.session.v0.unions.session_authorization': function () {
22592
- var f = faker.helpers.arrayElement([
22593
- function () { return factories['io.flow.session.v0.models.organization_session_authorization'](); },
22594
- ]);
22595
- return f();
22596
- },
22597
21763
  'io.flow.shopify.external.v0.enums.cancel_reason': function () { return faker.helpers.arrayElement(['customer', 'fraud', 'inventory', 'declined', 'other']); },
22598
21764
  'io.flow.shopify.external.v0.enums.discount_status': function () { return faker.helpers.arrayElement(['enabled', 'disabled', 'depleted']); },
22599
21765
  'io.flow.shopify.external.v0.enums.discount_type': function () { return faker.helpers.arrayElement(['fixed_amount', 'percentage', 'shipping']); },
@@ -23856,7 +23022,7 @@ var factories = {
23856
23022
  'sync_product_catalog',
23857
23023
  'shopify_webhook',
23858
23024
  ]); },
23859
- 'io.flow.shopify.markets.internal.v0.enums.product_status': function () { return faker.helpers.arrayElement(['active', 'archived', 'draft']); },
23025
+ 'io.flow.shopify.markets.internal.v0.enums.product_status': function () { return faker.helpers.arrayElement(['active', 'archived', 'draft', 'unlisted']); },
23860
23026
  'io.flow.shopify.markets.internal.v0.enums.shopify_markets_dangerous_goods': function () { return faker.helpers.arrayElement([
23861
23027
  'aerosols',
23862
23028
  'air_bag_inflators_or_seat_belt_pretensioners',
@@ -23971,6 +23137,15 @@ var factories = {
23971
23137
  origin: factories.string(),
23972
23138
  destination: factories.string(),
23973
23139
  }); },
23140
+ 'io.flow.shopify.markets.internal.v0.models.shopify_hs10_code': function () { return ({
23141
+ country_code: factories.string(),
23142
+ code: factories.string(),
23143
+ }); },
23144
+ 'io.flow.shopify.markets.internal.v0.models.shopify_hs10_codes': function () { return ({
23145
+ id: factories.string(),
23146
+ item_number: factories.string(),
23147
+ codes: arrayOf(function () { return factories['io.flow.shopify.markets.internal.v0.models.shopify_hs10_code'](); }),
23148
+ }); },
23974
23149
  'io.flow.shopify.markets.internal.v0.models.shopify_markets_best_selling_product': function () { return ({
23975
23150
  id: factories.string(),
23976
23151
  }); },
@@ -24960,243 +24135,6 @@ var factories = {
24960
24135
  ]);
24961
24136
  return f();
24962
24137
  },
24963
- 'io.flow.shopify.v0.enums.shopify_grant': function () { return faker.helpers.arrayElement(['customer', 'discount', 'gift_card', 'metafield', 'order']); },
24964
- 'io.flow.shopify.v0.enums.shopify_localization_method': function () { return faker.helpers.arrayElement(['api', 'ssr']); },
24965
- 'io.flow.shopify.v0.enums.shopify_sync_check': function () { return faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']); },
24966
- 'io.flow.shopify.v0.models.flow_center_reference': function () { return ({
24967
- key: factories.string(),
24968
- }); },
24969
- 'io.flow.shopify.v0.models.geo_form': function () { return ({
24970
- country: factories.string(),
24971
- currency: factories.string(),
24972
- language: factories.string(),
24973
- locale: factories.string(),
24974
- experience: factories.string(),
24975
- }); },
24976
- 'io.flow.shopify.v0.models.shopify_cart': function () { return ({
24977
- id: factories.string(),
24978
- items: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_cart_item'](); }),
24979
- item_count: factories.long(),
24980
- total_price: factories.long(),
24981
- local: factories['io.flow.shopify.v0.models.shopify_local_cart_metadata'](),
24982
- attributes: factories.object(),
24983
- note: factories.string(),
24984
- requires_shipping: factories.boolean(),
24985
- total_weight: factories.long(),
24986
- }); },
24987
- 'io.flow.shopify.v0.models.shopify_cart_add_multiple_form': function () { return ({
24988
- discriminator: 'shopify_cart_add_multiple_form',
24989
- items: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](); }),
24990
- attributes: objectOf(function () { return factories.string(); }),
24991
- }); },
24992
- 'io.flow.shopify.v0.models.shopify_cart_add_single_form': function () { return ({
24993
- discriminator: 'shopify_cart_add_single_form',
24994
- id: factories.long(),
24995
- quantity: factories.long(),
24996
- properties: objectOf(function () { return factories.string(); }),
24997
- }); },
24998
- 'io.flow.shopify.v0.models.shopify_cart_change_form': function () { return ({
24999
- quantity: factories.long(),
25000
- line: factories.long(),
25001
- id: factories.long(),
25002
- properties: objectOf(function () { return factories.string(); }),
25003
- }); },
25004
- 'io.flow.shopify.v0.models.shopify_cart_conversion': function () { return ({
25005
- flow: factories['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'](),
25006
- shopify: factories['io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart'](),
25007
- }); },
25008
- 'io.flow.shopify.v0.models.shopify_cart_conversion_flow_order': function () { return ({
25009
- order: factories['io.flow.experience.v0.models.order'](),
25010
- errors: arrayOf(function () { return factories['io.flow.experience.v0.models.order_error'](); }),
25011
- }); },
25012
- 'io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart': function () { return ({
25013
- cart: factories['io.flow.shopify.external.v0.models.shopify_external_cart'](),
25014
- }); },
25015
- 'io.flow.shopify.v0.models.shopify_cart_item': function () { return ({
25016
- id: factories.string(),
25017
- handle: factories.string(),
25018
- line_price: factories.double(),
25019
- price: factories.long(),
25020
- product_id: factories.long(),
25021
- product_title: factories.string(),
25022
- quantity: factories.long(),
25023
- title: factories.string(),
25024
- url: factories.string(),
25025
- variant_id: factories.long(),
25026
- local: factories['io.flow.shopify.v0.models.shopify_local_cart_item_metadata'](),
25027
- gift_card: factories.boolean(),
25028
- image: factories.string(),
25029
- product_description: factories.string(),
25030
- product_type: factories.string(),
25031
- properties: objectOf(function () { return factories.string(); }),
25032
- requires_shipping: factories.boolean(),
25033
- sku: factories.string(),
25034
- variant_title: factories.string(),
25035
- variant_options: arrayOf(function () { return factories.string(); }),
25036
- vendor: factories.string(),
25037
- }); },
25038
- 'io.flow.shopify.v0.models.shopify_customer_metafield_value': function () { return ({
25039
- flow_consumer_id: factories.string(),
25040
- }); },
25041
- 'io.flow.shopify.v0.models.shopify_item_event_bucket': function () { return ({
25042
- discriminator: 'shopify_item_event_bucket',
25043
- range: factories['io.flow.common.v0.models.datetime_range'](),
25044
- count: factories.long(),
25045
- data: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_item_event_data'](); }),
25046
- }); },
25047
- 'io.flow.shopify.v0.models.shopify_item_event_data': function () { return ({
25048
- created_at: factories.date_time_iso_8601(),
25049
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
25050
- item: factories['io.flow.common.v0.models.catalog_item_summary'](),
25051
- }); },
25052
- 'io.flow.shopify.v0.models.shopify_line': function () { return ({
25053
- variant_id: factories.long(),
25054
- quantity: factories.long(),
25055
- price: factories['io.flow.shopify.v0.models.shopify_price'](),
25056
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
25057
- price_source: factories['io.flow.common.v0.unions.price_source'](),
25058
- }); },
25059
- 'io.flow.shopify.v0.models.shopify_local_cart_item_metadata': function () { return ({
25060
- line_price: factories['io.flow.common.v0.models.price_with_base'](),
25061
- price: factories['io.flow.common.v0.models.price_with_base'](),
25062
- }); },
25063
- 'io.flow.shopify.v0.models.shopify_local_cart_metadata': function () { return ({
25064
- total_price: factories['io.flow.common.v0.models.price_with_base'](),
25065
- promotions: factories['io.flow.experience.v0.models.promotions'](),
25066
- rules: factories['io.flow.experience.v0.models.order_rules_summary'](),
25067
- subtotal: factories['io.flow.common.v0.models.price_with_base'](),
25068
- vat: factories['io.flow.common.v0.models.price_with_base'](),
25069
- duty: factories['io.flow.common.v0.models.price_with_base'](),
25070
- discount: factories['io.flow.common.v0.models.price_with_base'](),
25071
- }); },
25072
- 'io.flow.shopify.v0.models.shopify_local_price_metadata': function () { return ({
25073
- price: factories['io.flow.common.v0.models.price_with_base'](),
25074
- }); },
25075
- 'io.flow.shopify.v0.models.shopify_localization_setting': function () { return ({
25076
- id: factories.string(),
25077
- method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
25078
- datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
25079
- }); },
25080
- 'io.flow.shopify.v0.models.shopify_localization_setting_form': function () { return ({
25081
- method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
25082
- datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
25083
- }); },
25084
- 'io.flow.shopify.v0.models.shopify_localized_order': function () { return ({
25085
- id: factories.long(),
25086
- lines: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_line'](); }),
25087
- prices: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_price'](); }),
25088
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
25089
- allocation_details: arrayOf(function () { return factories['io.flow.experience.v0.unions.allocation_detail'](); }),
25090
- merchant_of_record: factories['io.flow.common.v0.enums.order_merchant_of_record'](),
25091
- merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
25092
- incoterm: factories['io.flow.common.v0.enums.incoterm'](),
25093
- flow_order_id: factories.string(),
25094
- tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
25095
- geo: factories['io.flow.experience.v0.models.order_geo'](),
25096
- }); },
25097
- 'io.flow.shopify.v0.models.shopify_localized_variant': function () { return ({
25098
- id: factories.long(),
25099
- handle: factories.string(),
25100
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
25101
- prices: factories['io.flow.shopify.v0.models.shopify_localized_variant_prices'](),
25102
- status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
25103
- inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
25104
- }); },
25105
- 'io.flow.shopify.v0.models.shopify_localized_variant_prices': function () { return ({
25106
- item: factories['io.flow.shopify.v0.models.shopify_price'](),
25107
- compare_at: factories['io.flow.shopify.v0.models.shopify_price'](),
25108
- vat: factories['io.flow.shopify.v0.models.shopify_price'](),
25109
- duty: factories['io.flow.shopify.v0.models.shopify_price'](),
25110
- }); },
25111
- 'io.flow.shopify.v0.models.shopify_location_flow_center_mapping': function () { return ({
25112
- id: factories.string(),
25113
- shopify_location: factories['io.flow.shopify.v0.models.shopify_location_reference'](),
25114
- flow_center: factories['io.flow.shopify.v0.models.flow_center_reference'](),
25115
- }); },
25116
- 'io.flow.shopify.v0.models.shopify_location_flow_center_mapping_form': function () { return ({
25117
- shopify_location_id: factories.long(),
25118
- flow_center_key: factories.string(),
25119
- }); },
25120
- 'io.flow.shopify.v0.models.shopify_location_reference': function () { return ({
25121
- id: factories.string(),
25122
- }); },
25123
- 'io.flow.shopify.v0.models.shopify_order_attributes_form': function () { return ({
25124
- attributes: objectOf(function () { return factories.string(); }),
25125
- }); },
25126
- 'io.flow.shopify.v0.models.shopify_order_delivery_metafield': function () { return ({
25127
- key: factories.string(),
25128
- items: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_order_delivery_metafield_item'](); }),
25129
- service: factories['io.flow.fulfillment.v0.models.service_summary'](),
25130
- window: factories['io.flow.fulfillment.v0.models.delivery_window'](),
25131
- liability: factories['io.flow.fulfillment.v0.enums.ratecard_owner'](),
25132
- cost: factories['io.flow.common.v0.models.money_with_optional_base'](),
25133
- prices: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_price'](); }),
25134
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
25135
- merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
25136
- }); },
25137
- 'io.flow.shopify.v0.models.shopify_order_delivery_metafield_item': function () { return ({
25138
- number: factories.string(),
25139
- quantity: factories.long(),
25140
- }); },
25141
- 'io.flow.shopify.v0.models.shopify_order_price_attributes_metafield': function () { return ({
25142
- item_number: factories.string(),
25143
- price_attributes: objectOf(function () { return factories['io.flow.common.v0.models.price_with_base'](); }),
25144
- }); },
25145
- 'io.flow.shopify.v0.models.shopify_order_romanization_metafield': function () { return ({
25146
- destination: factories['io.flow.experience.v0.models.order_address'](),
25147
- billing: factories['io.flow.common.v0.models.billing_address'](),
25148
- }); },
25149
- 'io.flow.shopify.v0.models.shopify_price': function () { return ({
25150
- name: factories.string(),
25151
- amount: factories.double(),
25152
- cents: factories.double(),
25153
- currency: factories.string(),
25154
- label: factories.string(),
25155
- includes: factories['io.flow.common.v0.models.included_levies'](),
25156
- local: factories['io.flow.shopify.v0.models.shopify_local_price_metadata'](),
25157
- }); },
25158
- 'io.flow.shopify.v0.models.shopify_private_app': function () { return ({
25159
- id: factories.string(),
25160
- api_key: factories.string(),
25161
- password: factories.string(),
25162
- }); },
25163
- 'io.flow.shopify.v0.models.shopify_private_app_form': function () { return ({
25164
- api_key: factories.string(),
25165
- password: factories.string(),
25166
- }); },
25167
- 'io.flow.shopify.v0.models.shopify_sync_status': function () { return ({
25168
- sync_check: factories['io.flow.shopify.v0.enums.shopify_sync_check'](),
25169
- range: factories['io.flow.common.v0.models.datetime_range'](),
25170
- interval_seconds: factories.long(),
25171
- total: factories.long(),
25172
- buckets: arrayOf(function () { return factories['io.flow.shopify.v0.unions.shopify_event_bucket'](); }),
25173
- }); },
25174
- 'io.flow.shopify.v0.models.shopify_variant_flow_metafield': function () { return ({
25175
- prices_item: factories.string(),
25176
- prices_currency: factories.string(),
25177
- prices_includes: factories.string(),
25178
- prices_vat: factories.string(),
25179
- prices_vat_name: factories.string(),
25180
- prices_duty: factories.string(),
25181
- prices_compare_at: factories.string(),
25182
- prices_status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
25183
- inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
25184
- }); },
25185
- 'io.flow.shopify.v0.models.shopify_variant_inventory_metafield': function () { return ({
25186
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
25187
- status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
25188
- }); },
25189
- 'io.flow.shopify.v0.unions.shopify_cart_add_form': function () {
25190
- var f = faker.helpers.arrayElement([
25191
- function () { return factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](); },
25192
- function () { return factories['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'](); },
25193
- ]);
25194
- return f();
25195
- },
25196
- 'io.flow.shopify.v0.unions.shopify_event_bucket': function () {
25197
- var f = faker.helpers.arrayElement([function () { return factories['io.flow.shopify.v0.models.shopify_item_event_bucket'](); }]);
25198
- return f();
25199
- },
25200
24138
  'io.flow.stripe.v0.enums.account_type': function () { return faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']); },
25201
24139
  'io.flow.stripe.v0.enums.apple_pay_type': function () { return faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']); },
25202
24140
  'io.flow.stripe.v0.enums.balance_transaction_type': function () { return faker.helpers.arrayElement([
@@ -27280,10 +26218,6 @@ export var makeAccountUpsertedV2 = function () { return factories['io.flow.inter
27280
26218
  export var makeAccountingPendingOrderMetadata = function () { return factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](); };
27281
26219
  export var makeActionQuantity = function () { return factories['io.flow.internal.v0.models.action_quantity'](); };
27282
26220
  export var makeAdditionalImportTax = function () { return factories['io.flow.internal.v0.models.additional_import_tax'](); };
27283
- export var makeAddressConfigurationProvinceSetting = function () { return factories['io.flow.internal.v0.models.address_configuration_province_setting'](); };
27284
- export var makeAddressConfigurationSetting = function () { return factories['io.flow.internal.v0.models.address_configuration_setting'](); };
27285
- export var makeAddressConfigurationSettingForm = function () { return factories['io.flow.internal.v0.models.address_configuration_setting_form'](); };
27286
- export var makeAddressConfigurationSettingProvinceCode = function () { return factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](); };
27287
26221
  export var makeAdjustmentAmount = function () { return factories['io.flow.internal.v0.unions.adjustment_amount'](); };
27288
26222
  export var makeAdjustmentAmountFixed = function () { return factories['io.flow.internal.v0.models.adjustment_amount_fixed'](); };
27289
26223
  export var makeAdjustmentAmountPercentage = function () { return factories['io.flow.internal.v0.models.adjustment_amount_percentage'](); };
@@ -27343,11 +26277,6 @@ export var makeAftershipWebhook = function () { return factories['io.flow.intern
27343
26277
  export var makeAldoItem = function () { return factories['io.flow.internal.v0.models.aldo_item'](); };
27344
26278
  export var makeAldoItemForm = function () { return factories['io.flow.internal.v0.models.aldo_item_form'](); };
27345
26279
  export var makeAldoItemType = function () { return factories['io.flow.internal.v0.enums.aldo_item_type'](); };
27346
- export var makeAlertErrorSummary = function () { return factories['io.flow.internal.v0.models.alert_error_summary'](); };
27347
- export var makeAlertFailureSummary = function () { return factories['io.flow.internal.v0.models.alert_failure_summary'](); };
27348
- export var makeAlertFailureSummaryDetail = function () { return factories['io.flow.internal.v0.models.alert_failure_summary_detail'](); };
27349
- export var makeAlertImportSummary = function () { return factories['io.flow.internal.v0.models.alert_import_summary'](); };
27350
- export var makeAlertRequeueSummary = function () { return factories['io.flow.internal.v0.models.alert_requeue_summary'](); };
27351
26280
  export var makeAllItemsExport = function () { return factories['io.flow.internal.v0.models.all_items_export'](); };
27352
26281
  export var makeAllOrganizationsMembership = function () { return factories['io.flow.internal.v0.models.all_organizations_membership'](); };
27353
26282
  export var makeAllocationItemReference = function () { return factories['io.flow.internal.v0.models.allocation_item_reference'](); };
@@ -27357,7 +26286,6 @@ export var makeAnshItemForm = function () { return factories['io.flow.internal.v
27357
26286
  export var makeAnshItemType = function () { return factories['io.flow.internal.v0.enums.ansh_item_type'](); };
27358
26287
  export var makeAnyDangerousGoods = function () { return factories['io.flow.internal.v0.enums.any_dangerous_goods'](); };
27359
26288
  export var makeApiCallReferenceId = function () { return factories['io.flow.internal.v0.enums.api_call_reference_id'](); };
27360
- export var makeApmContent = function () { return factories['io.flow.internal.v0.models.apm_content'](); };
27361
26289
  export var makeApplePayAuthorizationPayload = function () { return factories['io.flow.internal.v0.models.apple_pay_authorization_payload'](); };
27362
26290
  export var makeApplicablePreferentialRate = function () { return factories['io.flow.internal.v0.enums.applicable_preferential_rate'](); };
27363
26291
  export var makeApplyAtValueForm = function () { return factories['io.flow.internal.v0.models.apply_at_value_form'](); };
@@ -27382,6 +26310,8 @@ export var makeBankAccountReference = function () { return factories['io.flow.in
27382
26310
  export var makeBankAccountStatus = function () { return factories['io.flow.internal.v0.enums.bank_account_status'](); };
27383
26311
  export var makeBankPayment = function () { return factories['io.flow.internal.v0.models.bank_payment'](); };
27384
26312
  export var makeBankPaymentDeletedV2 = function () { return factories['io.flow.internal.v0.models.bank_payment_deleted_v2'](); };
26313
+ export var makeBankPaymentDetail = function () { return factories['io.flow.internal.v0.models.bank_payment_detail'](); };
26314
+ export var makeBankPaymentDetailAttachment = function () { return factories['io.flow.internal.v0.models.bank_payment_detail_attachment'](); };
27385
26315
  export var makeBankPaymentForm = function () { return factories['io.flow.internal.v0.models.bank_payment_form'](); };
27386
26316
  export var makeBankPaymentOrder = function () { return factories['io.flow.internal.v0.models.bank_payment_order'](); };
27387
26317
  export var makeBankPaymentOrderDeleted = function () { return factories['io.flow.internal.v0.models.bank_payment_order_deleted'](); };
@@ -27564,7 +26494,6 @@ export var makeChargebackPaymentStatus = function () { return factories['io.flow
27564
26494
  export var makeChargebackProcessStatus = function () { return factories['io.flow.internal.v0.enums.chargeback_process_status'](); };
27565
26495
  export var makeChargebackUpserted = function () { return factories['io.flow.internal.v0.models.chargeback_upserted'](); };
27566
26496
  export var makeChargebackVersion = function () { return factories['io.flow.internal.v0.models.chargeback_version'](); };
27567
- export var makeCheckbox = function () { return factories['io.flow.internal.v0.models.checkbox'](); };
27568
26497
  export var makeCheckoutAnalytics = function () { return factories['io.flow.internal.v0.models.checkout_analytics'](); };
27569
26498
  export var makeCheckoutAsset = function () { return factories['io.flow.internal.v0.models.checkout_asset'](); };
27570
26499
  export var makeCheckoutAssetType = function () { return factories['io.flow.internal.v0.enums.checkout_asset_type'](); };
@@ -27574,22 +26503,9 @@ export var makeCheckoutBehaviorCustomerInfoEmail = function () { return factorie
27574
26503
  export var makeCheckoutBehaviorShippingAddress = function () { return factories['io.flow.internal.v0.models.checkout_behavior_shipping_address'](); };
27575
26504
  export var makeCheckoutBehaviorShippingMethod = function () { return factories['io.flow.internal.v0.models.checkout_behavior_shipping_method'](); };
27576
26505
  export var makeCheckoutConfiguration = function () { return factories['io.flow.internal.v0.models.checkout_configuration'](); };
27577
- export var makeCheckoutConfigurationDeleted = function () { return factories['io.flow.internal.v0.models.checkout_configuration_deleted'](); };
27578
26506
  export var makeCheckoutConfigurationForm = function () { return factories['io.flow.internal.v0.models.checkout_configuration_form'](); };
27579
26507
  export var makeCheckoutConfigurationReference = function () { return factories['io.flow.internal.v0.models.checkout_configuration_reference'](); };
27580
- export var makeCheckoutConfigurationUpserted = function () { return factories['io.flow.internal.v0.models.checkout_configuration_upserted'](); };
27581
- export var makeCheckoutContent = function () { return factories['io.flow.internal.v0.models.checkout_content'](); };
27582
- export var makeCheckoutContentDetails = function () { return factories['io.flow.internal.v0.models.checkout_content_details'](); };
27583
- export var makeCheckoutContentSummary = function () { return factories['io.flow.internal.v0.models.checkout_content_summary'](); };
27584
- export var makeCheckoutError = function () { return factories['io.flow.internal.v0.models.checkout_error'](); };
27585
- export var makeCheckoutErrorCode = function () { return factories['io.flow.internal.v0.enums.checkout_error_code'](); };
27586
- export var makeCheckoutMarketingContent = function () { return factories['io.flow.internal.v0.models.checkout_marketing_content'](); };
27587
- export var makeCheckoutPayment = function () { return factories['io.flow.internal.v0.models.checkout_payment'](); };
27588
- export var makeCheckoutPaymentContent = function () { return factories['io.flow.internal.v0.models.checkout_payment_content'](); };
27589
- export var makeCheckoutPlatformData = function () { return factories['io.flow.internal.v0.models.checkout_platform_data'](); };
27590
26508
  export var makeCheckoutPromptBehavior = function () { return factories['io.flow.internal.v0.enums.checkout_prompt_behavior'](); };
27591
- export var makeCheckoutRedirect = function () { return factories['io.flow.internal.v0.models.checkout_redirect'](); };
27592
- export var makeCheckoutRedirectMethod = function () { return factories['io.flow.internal.v0.enums.checkout_redirect_method'](); };
27593
26509
  export var makeCheckoutSettings = function () { return factories['io.flow.internal.v0.models.checkout_settings'](); };
27594
26510
  export var makeCheckoutShippingMethodPromptBehavior = function () { return factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'](); };
27595
26511
  export var makeCheckoutUrl = function () { return factories['io.flow.internal.v0.models.checkout_url'](); };
@@ -27654,24 +26570,6 @@ export var makeConnectReportTransferTransferType = function () { return factorie
27654
26570
  export var makeConsoleLabelRequestForm = function () { return factories['io.flow.internal.v0.models.console_label_request_form'](); };
27655
26571
  export var makeConsoleLabelValidationForm = function () { return factories['io.flow.internal.v0.unions.console_label_validation_form'](); };
27656
26572
  export var makeConsoleMarkUnresolvableForm = function () { return factories['io.flow.internal.v0.models.console_mark_unresolvable_form'](); };
27657
- export var makeConsumerOptinActivity = function () { return factories['io.flow.internal.v0.models.consumer_optin_activity'](); };
27658
- export var makeContentElementType = function () { return factories['io.flow.internal.v0.enums.content_element_type'](); };
27659
- export var makeContentItem = function () { return factories['io.flow.internal.v0.unions.content_item'](); };
27660
- export var makeContentLabel = function () { return factories['io.flow.internal.v0.models.content_label'](); };
27661
- export var makeContentSchema = function () { return factories['io.flow.internal.v0.models.content_schema'](); };
27662
- export var makeContentSchemaElement = function () { return factories['io.flow.internal.v0.models.content_schema_element'](); };
27663
- export var makeContentSchemaForm = function () { return factories['io.flow.internal.v0.models.content_schema_form'](); };
27664
- export var makeContentSchemaSummary = function () { return factories['io.flow.internal.v0.models.content_schema_summary'](); };
27665
- export var makeContentStatus = function () { return factories['io.flow.internal.v0.enums.content_status'](); };
27666
- export var makeContentType = function () { return factories['io.flow.internal.v0.enums.content_type'](); };
27667
- export var makeContentTypeCast = function () { return factories['io.flow.internal.v0.enums.content_type_cast'](); };
27668
- export var makeCountryPickerCountry = function () { return factories['io.flow.internal.v0.models.country_picker_country'](); };
27669
- export var makeCountryPickerCountryData = function () { return factories['io.flow.internal.v0.models.country_picker_country_data'](); };
27670
- export var makeCountryPickerCurrency = function () { return factories['io.flow.internal.v0.models.country_picker_currency'](); };
27671
- export var makeCountryPickerData = function () { return factories['io.flow.internal.v0.models.country_picker_data'](); };
27672
- export var makeCountryPickerDeliveryWindow = function () { return factories['io.flow.internal.v0.models.country_picker_delivery_window'](); };
27673
- export var makeCountryPickerExperienceData = function () { return factories['io.flow.internal.v0.models.country_picker_experience_data'](); };
27674
- export var makeCountryPickerPaymentMethod = function () { return factories['io.flow.internal.v0.models.country_picker_payment_method'](); };
27675
26573
  export var makeCourthouseProductSummary = function () { return factories['io.flow.internal.v0.models.courthouse_product_summary'](); };
27676
26574
  export var makeCrossdockTrackingStatus = function () { return factories['io.flow.internal.v0.enums.crossdock_tracking_status'](); };
27677
26575
  export var makeCryptoAccount = function () { return factories['io.flow.internal.v0.models.crypto_account'](); };
@@ -27694,6 +26592,7 @@ export var makeCustomsProductLabels = function () { return factories['io.flow.in
27694
26592
  export var makeDailyValue = function () { return factories['io.flow.internal.v0.models.daily_value'](); };
27695
26593
  export var makeDailyValueDeleted = function () { return factories['io.flow.internal.v0.models.daily_value_deleted'](); };
27696
26594
  export var makeDailyValueUpserted = function () { return factories['io.flow.internal.v0.models.daily_value_upserted'](); };
26595
+ export var makeDatabase = function () { return factories['io.flow.internal.v0.models.database'](); };
27697
26596
  export var makeDebugAccountingTransaction = function () { return factories['io.flow.internal.v0.models.debug_accounting_transaction'](); };
27698
26597
  export var makeDebugAccountingTransactionType = function () { return factories['io.flow.internal.v0.enums.debug_accounting_transaction_type'](); };
27699
26598
  export var makeDebugAdjustment = function () { return factories['io.flow.internal.v0.models.debug_adjustment'](); };
@@ -27733,7 +26632,6 @@ export var makeDeminimisAdjustmentType = function () { return factories['io.flow
27733
26632
  export var makeDestinationError = function () { return factories['io.flow.internal.v0.models.destination_error'](); };
27734
26633
  export var makeDhl = function () { return factories['io.flow.internal.v0.models.dhl'](); };
27735
26634
  export var makeDhlEcommerce = function () { return factories['io.flow.internal.v0.models.dhl_ecommerce'](); };
27736
- export var makeDict = function () { return factories['io.flow.internal.v0.models.dict'](); };
27737
26635
  export var makeDimensionEstimateOpsInput = function () { return factories['io.flow.internal.v0.models.dimension_estimate_ops_input'](); };
27738
26636
  export var makeDiscount = function () { return factories['io.flow.internal.v0.models.discount'](); };
27739
26637
  export var makeDiscountCode = function () { return factories['io.flow.internal.v0.models.discount_code'](); };
@@ -27881,9 +26779,6 @@ export var makeFinanceBankAccount = function () { return factories['io.flow.inte
27881
26779
  export var makeFinanceBankAccountOwner = function () { return factories['io.flow.internal.v0.models.finance_bank_account_owner'](); };
27882
26780
  export var makeFinanceBankPayment = function () { return factories['io.flow.internal.v0.models.finance_bank_payment'](); };
27883
26781
  export var makeFinancialMerchantCategory = function () { return factories['io.flow.internal.v0.models.financial_merchant_category'](); };
27884
- export var makeFinancialReportingResponsibleParty = function () { return factories['io.flow.internal.v0.enums.financial_reporting_responsible_party'](); };
27885
- export var makeFinancialReportingStatement = function () { return factories['io.flow.internal.v0.models.financial_reporting_statement'](); };
27886
- export var makeFinancialReportingStatementForm = function () { return factories['io.flow.internal.v0.models.financial_reporting_statement_form'](); };
27887
26782
  export var makeFiservAccount = function () { return factories['io.flow.internal.v0.models.fiserv_account'](); };
27888
26783
  export var makeFiservAccountModificationForm = function () { return factories['io.flow.internal.v0.models.fiserv_account_modification_form'](); };
27889
26784
  export var makeFiservAccountPutForm = function () { return factories['io.flow.internal.v0.models.fiserv_account_put_form'](); };
@@ -27895,7 +26790,6 @@ export var makeFiservMerchantModificationForm = function () { return factories['
27895
26790
  export var makeFiservMerchantPutForm = function () { return factories['io.flow.internal.v0.models.fiserv_merchant_put_form'](); };
27896
26791
  export var makeFlexeWebhook = function () { return factories['io.flow.internal.v0.models.flexe_webhook'](); };
27897
26792
  export var makeFlowAccount = function () { return factories['io.flow.internal.v0.models.flow_account'](); };
27898
- export var makeFlowApp = function () { return factories['io.flow.internal.v0.enums.flow_app'](); };
27899
26793
  export var makeFlowBillingStatement = function () { return factories['io.flow.internal.v0.models.flow_billing_statement'](); };
27900
26794
  export var makeFlowChannelOrganization = function () { return factories['io.flow.internal.v0.models.flow_channel_organization'](); };
27901
26795
  export var makeFlowLabProject = function () { return factories['io.flow.internal.v0.models.flow_lab_project'](); };
@@ -27904,7 +26798,6 @@ export var makeFlowLabProjectPutForm = function () { return factories['io.flow.i
27904
26798
  export var makeFlowLabelSetting = function () { return factories['io.flow.internal.v0.models.flow_label_setting'](); };
27905
26799
  export var makeFlowLabelSettingForm = function () { return factories['io.flow.internal.v0.models.flow_label_setting_form'](); };
27906
26800
  export var makeFlowShopValidationError = function () { return factories['io.flow.internal.v0.models.flow_shop_validation_error'](); };
27907
- export var makeFormat = function () { return factories['io.flow.internal.v0.enums.format'](); };
27908
26801
  export var makeFraudAuthorizationSummary = function () { return factories['io.flow.internal.v0.models.fraud_authorization_summary'](); };
27909
26802
  export var makeFraudPendingReview = function () { return factories['io.flow.internal.v0.models.fraud_pending_review'](); };
27910
26803
  export var makeFraudPendingReviewAuthorization = function () { return factories['io.flow.internal.v0.models.fraud_pending_review_authorization'](); };
@@ -27940,12 +26833,6 @@ export var makeFraudSummary = function () { return factories['io.flow.internal.v
27940
26833
  export var makeFtpFileDeleted = function () { return factories['io.flow.internal.v0.models.ftp_file_deleted'](); };
27941
26834
  export var makeFtpFileToProcessUploaded = function () { return factories['io.flow.internal.v0.models.ftp_file_to_process_uploaded'](); };
27942
26835
  export var makeFtpFileUpserted = function () { return factories['io.flow.internal.v0.models.ftp_file_upserted'](); };
27943
- export var makeFtpIntent = function () { return factories['io.flow.internal.v0.enums.ftp_intent'](); };
27944
- export var makeFtpProtocol = function () { return factories['io.flow.internal.v0.enums.ftp_protocol'](); };
27945
- export var makeFtpSetting = function () { return factories['io.flow.internal.v0.models.ftp_setting'](); };
27946
- export var makeFtpSettingForm = function () { return factories['io.flow.internal.v0.models.ftp_setting_form'](); };
27947
- export var makeFtpSettingVersion = function () { return factories['io.flow.internal.v0.models.ftp_setting_version'](); };
27948
- export var makeFtpSettingsPaths = function () { return factories['io.flow.internal.v0.models.ftp_settings_paths'](); };
27949
26836
  export var makeFuelSurchargeServiceFeeAmountByWeightPutForm = function () { return factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'](); };
27950
26837
  export var makeFuelSurchargeServiceFeePercentPutForm = function () { return factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'](); };
27951
26838
  export var makeFuelSurchargeServiceFeePutForm = function () { return factories['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'](); };
@@ -27981,6 +26868,7 @@ export var makeFxRevenueRecognitionRate = function () { return factories['io.flo
27981
26868
  export var makeFxRevenueRecognitionSource = function () { return factories['io.flow.internal.v0.models.fx_revenue_recognition_source'](); };
27982
26869
  export var makeGeIngestionFileStatus = function () { return factories['io.flow.internal.v0.enums.ge_ingestion_file_status'](); };
27983
26870
  export var makeGeRevenueShareTransaction = function () { return factories['io.flow.internal.v0.models.ge_revenue_share_transaction'](); };
26871
+ export var makeGeRevenueShareTransactionType = function () { return factories['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'](); };
27984
26872
  export var makeGenerateLoad = function () { return factories['io.flow.internal.v0.unions.generate_load'](); };
27985
26873
  export var makeGenerateLoadMultipleOrgs = function () { return factories['io.flow.internal.v0.models.generate_load_multiple_orgs'](); };
27986
26874
  export var makeGenerateLoadSingleOrg = function () { return factories['io.flow.internal.v0.models.generate_load_single_org'](); };
@@ -28015,7 +26903,6 @@ export var makeHarmonizedItemsHs6Export = function () { return factories['io.flo
28015
26903
  export var makeHoseinItem = function () { return factories['io.flow.internal.v0.models.hosein_item'](); };
28016
26904
  export var makeHoseinItemForm = function () { return factories['io.flow.internal.v0.models.hosein_item_form'](); };
28017
26905
  export var makeHoseinItemType = function () { return factories['io.flow.internal.v0.enums.hosein_item_type'](); };
28018
- export var makeHref = function () { return factories['io.flow.internal.v0.models.href'](); };
28019
26906
  export var makeHs6 = function () { return factories['io.flow.internal.v0.models.hs6'](); };
28020
26907
  export var makeHs6Metadata = function () { return factories['io.flow.internal.v0.models.hs6_metadata'](); };
28021
26908
  export var makeHttpMethod = function () { return factories['io.flow.internal.v0.enums.http_method'](); };
@@ -28023,7 +26910,6 @@ export var makeImportCompleted = function () { return factories['io.flow.interna
28023
26910
  export var makeImportFailed = function () { return factories['io.flow.internal.v0.models.import_failed'](); };
28024
26911
  export var makeIndexTaskType = function () { return factories['io.flow.internal.v0.unions.index_task_type'](); };
28025
26912
  export var makeInlineAuthorizationParameters = function () { return factories['io.flow.internal.v0.unions.inline_authorization_parameters'](); };
28026
- export var makeInstallForm = function () { return factories['io.flow.internal.v0.models.install_form'](); };
28027
26913
  export var makeInternalAdyenAuthorizationDetails = function () { return factories['io.flow.internal.v0.models.internal_adyen_authorization_details'](); };
28028
26914
  export var makeInternalAfterpayAuthorizationDetails = function () { return factories['io.flow.internal.v0.models.internal_afterpay_authorization_details'](); };
28029
26915
  export var makeInternalAuthorization = function () { return factories['io.flow.internal.v0.models.internal_authorization'](); };
@@ -28058,9 +26944,6 @@ export var makeInvoiceInfoForm = function () { return factories['io.flow.interna
28058
26944
  export var makeInvoiceLine = function () { return factories['io.flow.internal.v0.models.invoice_line'](); };
28059
26945
  export var makeInvoiceLineItem = function () { return factories['io.flow.internal.v0.models.invoice_line_item'](); };
28060
26946
  export var makeInvoiceTransaction = function () { return factories['io.flow.internal.v0.models.invoice_transaction'](); };
28061
- export var makeIssuer = function () { return factories['io.flow.internal.v0.models.issuer'](); };
28062
- export var makeIssuerDeleted = function () { return factories['io.flow.internal.v0.models.issuer_deleted'](); };
28063
- export var makeIssuerUpserted = function () { return factories['io.flow.internal.v0.models.issuer_upserted'](); };
28064
26947
  export var makeItemClassification = function () { return factories['io.flow.internal.v0.models.item_classification'](); };
28065
26948
  export var makeItemClassificationAction = function () { return factories['io.flow.internal.v0.enums.item_classification_action'](); };
28066
26949
  export var makeItemClassificationForm = function () { return factories['io.flow.internal.v0.models.item_classification_form'](); };
@@ -28093,6 +26976,9 @@ export var makeItemSummary = function () { return factories['io.flow.internal.v0
28093
26976
  export var makeItemType = function () { return factories['io.flow.internal.v0.enums.item_type'](); };
28094
26977
  export var makeItemValuesForm = function () { return factories['io.flow.internal.v0.models.item_values_form'](); };
28095
26978
  export var makeJeanDemoItem = function () { return factories['io.flow.internal.v0.models.jean_demo_item'](); };
26979
+ export var makeJournal = function () { return factories['io.flow.internal.v0.models.journal'](); };
26980
+ export var makeJournalFailure = function () { return factories['io.flow.internal.v0.models.journal_failure'](); };
26981
+ export var makeJournalOperation = function () { return factories['io.flow.internal.v0.enums.journal_operation'](); };
28096
26982
  export var makeKey = function () { return factories['io.flow.internal.v0.models.key'](); };
28097
26983
  export var makeKeyReference = function () { return factories['io.flow.internal.v0.models.key_reference'](); };
28098
26984
  export var makeKeywordType = function () { return factories['io.flow.internal.v0.enums.keyword_type'](); };
@@ -28140,7 +27026,6 @@ export var makeLabelTransaction = function () { return factories['io.flow.intern
28140
27026
  export var makeLabelTransactionDeleted = function () { return factories['io.flow.internal.v0.models.label_transaction_deleted'](); };
28141
27027
  export var makeLabelTransactionType = function () { return factories['io.flow.internal.v0.enums.label_transaction_type'](); };
28142
27028
  export var makeLabelTransactionUpserted = function () { return factories['io.flow.internal.v0.models.label_transaction_upserted'](); };
28143
- export var makeLabeledContent = function () { return factories['io.flow.internal.v0.models.labeled_content'](); };
28144
27029
  export var makeLabelsPrediction = function () { return factories['io.flow.internal.v0.models.labels_prediction'](); };
28145
27030
  export var makeLandedCostItem = function () { return factories['io.flow.internal.v0.models.landed_cost_item'](); };
28146
27031
  export var makeLandmark = function () { return factories['io.flow.internal.v0.models.landmark'](); };
@@ -28157,21 +27042,9 @@ export var makeLiabilityRemittancePlanUpserted = function () { return factories[
28157
27042
  export var makeLiabilityType = function () { return factories['io.flow.internal.v0.enums.liability_type'](); };
28158
27043
  export var makeLineActionForm = function () { return factories['io.flow.internal.v0.models.line_action_form'](); };
28159
27044
  export var makeLineActionQuantities = function () { return factories['io.flow.internal.v0.models.line_action_quantities'](); };
28160
- export var makeLoad = function () { return factories['io.flow.internal.v0.models.load'](); };
28161
- export var makeLocalizableContent = function () { return factories['io.flow.internal.v0.unions.localizable_content'](); };
28162
- export var makeLocalizableContentReference = function () { return factories['io.flow.internal.v0.models.localizable_content_reference'](); };
28163
- export var makeLocalization = function () { return factories['io.flow.internal.v0.models.localization'](); };
28164
- export var makeLocalizationForm = function () { return factories['io.flow.internal.v0.models.localization_form'](); };
28165
- export var makeLocalizationRef = function () { return factories['io.flow.internal.v0.models.localization_ref'](); };
28166
- export var makeLocalizationUpserted = function () { return factories['io.flow.internal.v0.models.localization_upserted'](); };
28167
- export var makeLocalizedContent = function () { return factories['io.flow.internal.v0.models.localized_content'](); };
28168
- export var makeLocalizedContentElement = function () { return factories['io.flow.internal.v0.models.localized_content_element'](); };
28169
- export var makeLocalizedContentForm = function () { return factories['io.flow.internal.v0.models.localized_content_form'](); };
28170
- export var makeLocalizedContentUpserted = function () { return factories['io.flow.internal.v0.models.localized_content_upserted'](); };
28171
27045
  export var makeLocalizedItemPricesExportRequest = function () { return factories['io.flow.internal.v0.models.localized_item_prices_export_request'](); };
28172
27046
  export var makeLocalizedItemsExportSettings = function () { return factories['io.flow.internal.v0.models.localized_items_export_settings'](); };
28173
27047
  export var makeLocalizedPriceBookItemData = function () { return factories['io.flow.internal.v0.models.localized_price_book_item_data'](); };
28174
- export var makeLocation = function () { return factories['io.flow.internal.v0.models.location'](); };
28175
27048
  export var makeLogisticsCapabilities = function () { return factories['io.flow.internal.v0.models.logistics_capabilities'](); };
28176
27049
  export var makeLogisticsCapabilitiesDeleted = function () { return factories['io.flow.internal.v0.models.logistics_capabilities_deleted'](); };
28177
27050
  export var makeLogisticsCapabilitiesForm = function () { return factories['io.flow.internal.v0.models.logistics_capabilities_form'](); };
@@ -28180,13 +27053,11 @@ export var makeLogisticsCapability = function () { return factories['io.flow.int
28180
27053
  export var makeLogisticsPayoutRequest = function () { return factories['io.flow.internal.v0.models.logistics_payout_request'](); };
28181
27054
  export var makeLogisticsPayoutRequestForm = function () { return factories['io.flow.internal.v0.models.logistics_payout_request_form'](); };
28182
27055
  export var makeLogisticsPayoutResolutionMethod = function () { return factories['io.flow.internal.v0.enums.logistics_payout_resolution_method'](); };
28183
- export var makeLogo = function () { return factories['io.flow.internal.v0.models.logo'](); };
28184
27056
  export var makeLostChargeback = function () { return factories['io.flow.internal.v0.models.lost_chargeback'](); };
28185
27057
  export var makeLoyaltyProgram = function () { return factories['io.flow.internal.v0.models.loyalty_program'](); };
28186
27058
  export var makeLoyaltyProgramMessage = function () { return factories['io.flow.internal.v0.models.loyalty_program_message'](); };
28187
27059
  export var makeLoyaltyProgramReward = function () { return factories['io.flow.internal.v0.models.loyalty_program_reward'](); };
28188
27060
  export var makeLoyaltyProgramRewards = function () { return factories['io.flow.internal.v0.models.loyalty_program_rewards'](); };
28189
- export var makeMagentoInstallForm = function () { return factories['io.flow.internal.v0.models.magento_install_form'](); };
28190
27061
  export var makeMainTransaction = function () { return factories['io.flow.internal.v0.models.main_transaction'](); };
28191
27062
  export var makeMainTransactionDeleted = function () { return factories['io.flow.internal.v0.models.main_transaction_deleted'](); };
28192
27063
  export var makeMainTransactionDeletedV2 = function () { return factories['io.flow.internal.v0.models.main_transaction_deleted_v2'](); };
@@ -28258,14 +27129,6 @@ export var makeOnboardingStateForm = function () { return factories['io.flow.int
28258
27129
  export var makeOnboardingStateSource = function () { return factories['io.flow.internal.v0.enums.onboarding_state_source'](); };
28259
27130
  export var makeOneTimeTokenRedemptionForm = function () { return factories['io.flow.internal.v0.models.one_time_token_redemption_form'](); };
28260
27131
  export var makeOnlineAuthorizationCompleted = function () { return factories['io.flow.internal.v0.models.online_authorization_completed'](); };
28261
- export var makeOptinAttribute = function () { return factories['io.flow.internal.v0.models.optin_attribute'](); };
28262
- export var makeOptinAttributeForm = function () { return factories['io.flow.internal.v0.models.optin_attribute_form'](); };
28263
- export var makeOptinPrompt = function () { return factories['io.flow.internal.v0.models.optin_prompt'](); };
28264
- export var makeOptinPromptCheckoutDisplay = function () { return factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](); };
28265
- export var makeOptinPromptCopy = function () { return factories['io.flow.internal.v0.models.optin_prompt_copy'](); };
28266
- export var makeOptinPromptCopyForm = function () { return factories['io.flow.internal.v0.models.optin_prompt_copy_form'](); };
28267
- export var makeOptinPromptDisplay = function () { return factories['io.flow.internal.v0.unions.optin_prompt_display'](); };
28268
- export var makeOptinPromptForm = function () { return factories['io.flow.internal.v0.models.optin_prompt_form'](); };
28269
27132
  export var makeOrderAction = function () { return factories['io.flow.internal.v0.enums.order_action'](); };
28270
27133
  export var makeOrderActionForm = function () { return factories['io.flow.internal.v0.unions.order_action_form'](); };
28271
27134
  export var makeOrderActionability = function () { return factories['io.flow.internal.v0.models.order_actionability'](); };
@@ -28304,7 +27167,6 @@ export var makeOrderRevenueRegionDataPoint = function () { return factories['io.
28304
27167
  export var makeOrderRevenueTimelineChart = function () { return factories['io.flow.internal.v0.models.order_revenue_timeline_chart'](); };
28305
27168
  export var makeOrderRevenueTimelineDataPoint = function () { return factories['io.flow.internal.v0.models.order_revenue_timeline_data_point'](); };
28306
27169
  export var makeOrderServiceChangeCsvForm = function () { return factories['io.flow.internal.v0.models.order_service_change_csv_form'](); };
28307
- export var makeOrderSubmissionForm = function () { return factories['io.flow.internal.v0.models.order_submission_form'](); };
28308
27170
  export var makeOrderSummary = function () { return factories['io.flow.internal.v0.models.order_summary'](); };
28309
27171
  export var makeOrderTaxAndDutyInclusivitySetting = function () { return factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'](); };
28310
27172
  export var makeOrderTaxAndDutyInclusivitySettingDeleted = function () { return factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](); };
@@ -28424,6 +27286,7 @@ export var makePartnerTrackingSubscriptionUpserted = function () { return factor
28424
27286
  export var makePassphrase = function () { return factories['io.flow.internal.v0.models.passphrase'](); };
28425
27287
  export var makePassphraseForm = function () { return factories['io.flow.internal.v0.models.passphrase_form'](); };
28426
27288
  export var makePassphraseSummary = function () { return factories['io.flow.internal.v0.models.passphrase_summary'](); };
27289
+ export var makePaymentIs = function () { return factories['io.flow.internal.v0.models.payment_is'](); };
28427
27290
  export var makePaymentMethodDetail = function () { return factories['io.flow.internal.v0.models.payment_method_detail'](); };
28428
27291
  export var makePaymentMethodOption = function () { return factories['io.flow.internal.v0.models.payment_method_option'](); };
28429
27292
  export var makePaymentOrganizationSettings = function () { return factories['io.flow.internal.v0.models.payment_organization_settings'](); };
@@ -28525,13 +27388,11 @@ export var makeProductRestrictionStateInserted = function () { return factories[
28525
27388
  export var makeProductRestrictionStateUpdated = function () { return factories['io.flow.internal.v0.models.product_restriction_state_updated'](); };
28526
27389
  export var makeProductReviewHistory = function () { return factories['io.flow.internal.v0.models.product_review_history'](); };
28527
27390
  export var makeProductSellabilityInternal = function () { return factories['io.flow.internal.v0.models.product_sellability_internal'](); };
27391
+ export var makeProductSellabilityInternalForm = function () { return factories['io.flow.internal.v0.models.product_sellability_internal_form'](); };
27392
+ export var makeProductSellabilityInternalResult = function () { return factories['io.flow.internal.v0.models.product_sellability_internal_result'](); };
28528
27393
  export var makeProductSellabilityResult = function () { return factories['io.flow.internal.v0.models.product_sellability_result'](); };
28529
27394
  export var makeProductStatus = function () { return factories['io.flow.internal.v0.enums.product_status'](); };
28530
27395
  export var makeProductTransaction = function () { return factories['io.flow.internal.v0.models.product_transaction'](); };
28531
- export var makePromptAction = function () { return factories['io.flow.internal.v0.enums.prompt_action'](); };
28532
- export var makePromptCheckoutDisplayPosition = function () { return factories['io.flow.internal.v0.enums.prompt_checkout_display_position'](); };
28533
- export var makePromptOptions = function () { return factories['io.flow.internal.v0.enums.prompt_options'](); };
28534
- export var makePromptTarget = function () { return factories['io.flow.internal.v0.enums.prompt_target'](); };
28535
27396
  export var makeProofOfPosting = function () { return factories['io.flow.internal.v0.unions.proof_of_posting'](); };
28536
27397
  export var makeProofOfPostingExternallyFulfilled = function () { return factories['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'](); };
28537
27398
  export var makeProofOfPostingFulfilled = function () { return factories['io.flow.internal.v0.models.proof_of_posting_fulfilled'](); };
@@ -28599,9 +27460,6 @@ export var makeRatecardStandardConfigurationUpserted = function () { return fact
28599
27460
  export var makeRatecardStandardSettings = function () { return factories['io.flow.internal.v0.models.ratecard_standard_settings'](); };
28600
27461
  export var makeRatesChanged = function () { return factories['io.flow.internal.v0.models.rates_changed'](); };
28601
27462
  export var makeRatesNamesSummary = function () { return factories['io.flow.internal.v0.models.rates_names_summary'](); };
28602
- export var makeReboundConfiguration = function () { return factories['io.flow.internal.v0.models.rebound_configuration'](); };
28603
- export var makeReboundConfigurationForm = function () { return factories['io.flow.internal.v0.models.rebound_configuration_form'](); };
28604
- export var makeReboundConfigurationStatus = function () { return factories['io.flow.internal.v0.enums.rebound_configuration_status'](); };
28605
27463
  export var makeRecordReference = function () { return factories['io.flow.internal.v0.models.record_reference'](); };
28606
27464
  export var makeRedirect = function () { return factories['io.flow.internal.v0.models.redirect'](); };
28607
27465
  export var makeRedirectActionCompleted = function () { return factories['io.flow.internal.v0.models.redirect_action_completed'](); };
@@ -28641,6 +27499,7 @@ export var makeReportingDebug = function () { return factories['io.flow.internal
28641
27499
  export var makeReportingDebugMissingSubsidies = function () { return factories['io.flow.internal.v0.models.reporting_debug_missing_subsidies'](); };
28642
27500
  export var makeReportingDestination = function () { return factories['io.flow.internal.v0.models.reporting_destination'](); };
28643
27501
  export var makeReportingDetails = function () { return factories['io.flow.internal.v0.models.reporting_details'](); };
27502
+ export var makeReportingFees = function () { return factories['io.flow.internal.v0.models.reporting_fees'](); };
28644
27503
  export var makeReportingFulfillment = function () { return factories['io.flow.internal.v0.models.reporting_fulfillment'](); };
28645
27504
  export var makeReportingFulfillmentHas = function () { return factories['io.flow.internal.v0.models.reporting_fulfillment_has'](); };
28646
27505
  export var makeReportingFulfillmentIs = function () { return factories['io.flow.internal.v0.models.reporting_fulfillment_is'](); };
@@ -28668,6 +27527,7 @@ export var makeRequeueRequestForm = function () { return factories['io.flow.inte
28668
27527
  export var makeRescreenRestrictionsProducts = function () { return factories['io.flow.internal.v0.models.rescreen_restrictions_products'](); };
28669
27528
  export var makeResponsibleParty = function () { return factories['io.flow.internal.v0.enums.responsible_party'](); };
28670
27529
  export var makeRestrictionAction = function () { return factories['io.flow.internal.v0.enums.restriction_action'](); };
27530
+ export var makeRestrictionBlanketOrganizationExemption = function () { return factories['io.flow.internal.v0.models.restriction_blanket_organization_exemption'](); };
28671
27531
  export var makeRestrictionCategory = function () { return factories['io.flow.internal.v0.models.restriction_category'](); };
28672
27532
  export var makeRestrictionDecision = function () { return factories['io.flow.internal.v0.enums.restriction_decision'](); };
28673
27533
  export var makeRestrictionFilter = function () { return factories['io.flow.internal.v0.models.restriction_filter'](); };
@@ -28691,6 +27551,7 @@ export var makeRestrictionProductDecisionForm = function () { return factories['
28691
27551
  export var makeRestrictionProductRequestForm = function () { return factories['io.flow.internal.v0.models.restriction_product_request_form'](); };
28692
27552
  export var makeRestrictionProductSummary = function () { return factories['io.flow.internal.v0.models.restriction_product_summary'](); };
28693
27553
  export var makeRestrictionRule = function () { return factories['io.flow.internal.v0.models.restriction_rule'](); };
27554
+ export var makeRestrictionRuleCommunityExemption = function () { return factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](); };
28694
27555
  export var makeRestrictionRuleDecisionForm = function () { return factories['io.flow.internal.v0.models.restriction_rule_decision_form'](); };
28695
27556
  export var makeRestrictionRuleDeleted = function () { return factories['io.flow.internal.v0.models.restriction_rule_deleted'](); };
28696
27557
  export var makeRestrictionRuleEffect = function () { return factories['io.flow.internal.v0.models.restriction_rule_effect'](); };
@@ -28735,8 +27596,12 @@ export var makeRoutingAccount = function () { return factories['io.flow.internal
28735
27596
  export var makeRoutingEntity = function () { return factories['io.flow.internal.v0.unions.routing_entity'](); };
28736
27597
  export var makeRoutingMerchant = function () { return factories['io.flow.internal.v0.models.routing_merchant'](); };
28737
27598
  export var makeRoutingProcessor = function () { return factories['io.flow.internal.v0.models.routing_processor'](); };
27599
+ export var makeSalesPaymentRecord = function () { return factories['io.flow.internal.v0.models.sales_payment_record'](); };
28738
27600
  export var makeSandboxSetup = function () { return factories['io.flow.internal.v0.models.sandbox_setup'](); };
28739
27601
  export var makeSandboxSetupForm = function () { return factories['io.flow.internal.v0.models.sandbox_setup_form'](); };
27602
+ export var makeSarveshItem = function () { return factories['io.flow.internal.v0.models.sarvesh_item'](); };
27603
+ export var makeSarveshItemForm = function () { return factories['io.flow.internal.v0.models.sarvesh_item_form'](); };
27604
+ export var makeSarveshItemType = function () { return factories['io.flow.internal.v0.enums.sarvesh_item_type'](); };
28740
27605
  export var makeScheduledPayment = function () { return factories['io.flow.internal.v0.models.scheduled_payment'](); };
28741
27606
  export var makeScreen = function () { return factories['io.flow.internal.v0.models.screen'](); };
28742
27607
  export var makeScreenForm = function () { return factories['io.flow.internal.v0.models.screen_form'](); };
@@ -28757,30 +27622,16 @@ export var makeShipmentCostSummary = function () { return factories['io.flow.int
28757
27622
  export var makeShippingLane = function () { return factories['io.flow.internal.v0.models.shipping_lane'](); };
28758
27623
  export var makeShippingMethodReference = function () { return factories['io.flow.internal.v0.models.shipping_method_reference'](); };
28759
27624
  export var makeShippingPricing = function () { return factories['io.flow.internal.v0.models.shipping_pricing'](); };
28760
- export var makeShop = function () { return factories['io.flow.internal.v0.models.shop'](); };
28761
- export var makeShopForm = function () { return factories['io.flow.internal.v0.models.shop_form'](); };
28762
- export var makeShopVersion = function () { return factories['io.flow.internal.v0.models.shop_version'](); };
28763
27625
  export var makeShopifyCatalogPublication = function () { return factories['io.flow.internal.v0.models.shopify_catalog_publication'](); };
28764
27626
  export var makeShopifyChannelOrganizationToken = function () { return factories['io.flow.internal.v0.models.shopify_channel_organization_token'](); };
28765
27627
  export var makeShopifyChannelOrganizationTokens = function () { return factories['io.flow.internal.v0.models.shopify_channel_organization_tokens'](); };
28766
- export var makeShopifyCheckInventoryError = function () { return factories['io.flow.internal.v0.models.shopify_check_inventory_error'](); };
28767
- export var makeShopifyCheckInventoryErrorCode = function () { return factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code'](); };
28768
- export var makeShopifyCodeForm = function () { return factories['io.flow.internal.v0.models.shopify_code_form'](); };
28769
27628
  export var makeShopifyDispute = function () { return factories['io.flow.internal.v0.models.shopify_dispute'](); };
28770
27629
  export var makeShopifyDisputeDeleted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_deleted'](); };
28771
27630
  export var makeShopifyDisputeUpserted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_upserted'](); };
28772
- export var makeShopifyExperienceShortId = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id'](); };
28773
- export var makeShopifyExperienceShortIdDeleted = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted'](); };
28774
- export var makeShopifyExperienceShortIdUpserted = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](); };
28775
- export var makeShopifyGiftCardBalance = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_balance'](); };
28776
- export var makeShopifyGiftCardBalanceForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_balance_form'](); };
28777
- export var makeShopifyGiftCardPaymentForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_payment_form'](); };
28778
- export var makeShopifyGiftCardRedemption = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_redemption'](); };
28779
- export var makeShopifyGiftCardRedemptionForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_redemption_form'](); };
28780
- export var makeShopifyGiftCardReversal = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_reversal'](); };
28781
- export var makeShopifyGiftCardReversalForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_reversal_form'](); };
28782
- export var makeShopifyGrantStatus = function () { return factories['io.flow.internal.v0.enums.shopify_grant_status'](); };
28783
- export var makeShopifyGrantsCheck = function () { return factories['io.flow.internal.v0.models.shopify_grants_check'](); };
27631
+ export var makeShopifyHs10Code = function () { return factories['io.flow.internal.v0.models.shopify_hs10_code'](); };
27632
+ export var makeShopifyHs10Codes = function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes'](); };
27633
+ export var makeShopifyHs10CodesDeleted = function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted'](); };
27634
+ export var makeShopifyHs10CodesUpserted = function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted'](); };
28784
27635
  export var makeShopifyIncotermConfiguration = function () { return factories['io.flow.internal.v0.enums.shopify_incoterm_configuration'](); };
28785
27636
  export var makeShopifyIncotermIncludes = function () { return factories['io.flow.internal.v0.models.shopify_incoterm_includes'](); };
28786
27637
  export var makeShopifyIncotermSummaryErrorData = function () { return factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data'](); };
@@ -28842,30 +27693,20 @@ export var makeShopifyMonitoringOrderMonitorType = function () { return factorie
28842
27693
  export var makeShopifyMonitoringTrackingField = function () { return factories['io.flow.internal.v0.enums.shopify_monitoring_tracking_field'](); };
28843
27694
  export var makeShopifyMonitoringTrackingNumber = function () { return factories['io.flow.internal.v0.models.shopify_monitoring_tracking_number'](); };
28844
27695
  export var makeShopifyMonitoringTrackingUrl = function () { return factories['io.flow.internal.v0.models.shopify_monitoring_tracking_url'](); };
28845
- export var makeShopifyOrderAuthorization = function () { return factories['io.flow.internal.v0.models.shopify_order_authorization'](); };
28846
27696
  export var makeShopifyOrderCancelForm = function () { return factories['io.flow.internal.v0.models.shopify_order_cancel_form'](); };
28847
27697
  export var makeShopifyOrderCancelResponse = function () { return factories['io.flow.internal.v0.models.shopify_order_cancel_response'](); };
28848
- export var makeShopifyOrderContent = function () { return factories['io.flow.internal.v0.models.shopify_order_content'](); };
28849
27698
  export var makeShopifyOrderDestinationForm = function () { return factories['io.flow.internal.v0.models.shopify_order_destination_form'](); };
28850
- export var makeShopifyOrderDetail = function () { return factories['io.flow.internal.v0.models.shopify_order_detail'](); };
28851
- export var makeShopifyOrderDiscountContent = function () { return factories['io.flow.internal.v0.models.shopify_order_discount_content'](); };
28852
27699
  export var makeShopifyOrderFulfillmentsSnapshot = function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'](); };
28853
27700
  export var makeShopifyOrderFulfillmentsSnapshotDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'](); };
28854
27701
  export var makeShopifyOrderFulfillmentsSnapshotUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](); };
28855
- export var makeShopifyOrderInventoryCheck = function () { return factories['io.flow.internal.v0.models.shopify_order_inventory_check'](); };
28856
- export var makeShopifyOrderLineAttribute = function () { return factories['io.flow.internal.v0.models.shopify_order_line_attribute'](); };
28857
- export var makeShopifyOrderLineContent = function () { return factories['io.flow.internal.v0.models.shopify_order_line_content'](); };
28858
27702
  export var makeShopifyOrderRiskAssessment = function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment'](); };
28859
27703
  export var makeShopifyOrderRiskAssessmentDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'](); };
28860
27704
  export var makeShopifyOrderRiskAssessmentUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'](); };
28861
27705
  export var makeShopifyOrderTransaction = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction'](); };
28862
27706
  export var makeShopifyOrderTransactionDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_deleted'](); };
28863
27707
  export var makeShopifyOrderTransactionUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_upserted'](); };
28864
- export var makeShopifyOrganizationSettings = function () { return factories['io.flow.internal.v0.models.shopify_organization_settings'](); };
28865
- export var makeShopifyOrganizationSettingsForm = function () { return factories['io.flow.internal.v0.models.shopify_organization_settings_form'](); };
28866
27708
  export var makeShopifyPartnerWebhook = function () { return factories['io.flow.internal.v0.models.shopify_partner_webhook'](); };
28867
27709
  export var makeShopifyPartnerWebhookRaw = function () { return factories['io.flow.internal.v0.models.shopify_partner_webhook_raw'](); };
28868
- export var makeShopifyPaymentSummary = function () { return factories['io.flow.internal.v0.models.shopify_payment_summary'](); };
28869
27710
  export var makeShopifyPlanType = function () { return factories['io.flow.internal.v0.enums.shopify_plan_type'](); };
28870
27711
  export var makeShopifyProductBundle = function () { return factories['io.flow.internal.v0.models.shopify_product_bundle'](); };
28871
27712
  export var makeShopifyProductBundleDeleted = function () { return factories['io.flow.internal.v0.models.shopify_product_bundle_deleted'](); };
@@ -28881,37 +27722,13 @@ export var makeShopifyProductUpdateDeleted = function () { return factories['io.
28881
27722
  export var makeShopifyProductUpdateUpserted = function () { return factories['io.flow.internal.v0.models.shopify_product_update_upserted'](); };
28882
27723
  export var makeShopifyProductUpdateWebhookEvent = function () { return factories['io.flow.internal.v0.models.shopify_product_update_webhook_event'](); };
28883
27724
  export var makeShopifyProductWrapper = function () { return factories['io.flow.internal.v0.models.shopify_product_wrapper'](); };
28884
- export var makeShopifyPromoForm = function () { return factories['io.flow.internal.v0.models.shopify_promo_form'](); };
28885
- export var makeShopifyPromotion = function () { return factories['io.flow.internal.v0.models.shopify_promotion'](); };
28886
- export var makeShopifyPromotionAttributeValue = function () { return factories['io.flow.internal.v0.models.shopify_promotion_attribute_value'](); };
28887
- export var makeShopifyPromotionBehavior = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_behavior'](); };
28888
- export var makeShopifyPromotionFixedAmount = function () { return factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount'](); };
28889
- export var makeShopifyPromotionForm = function () { return factories['io.flow.internal.v0.models.shopify_promotion_form'](); };
28890
- export var makeShopifyPromotionItemEntitlement = function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement'](); };
28891
- export var makeShopifyPromotionItemPrerequisite = function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite'](); };
28892
- export var makeShopifyPromotionMaxAmount = function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_amount'](); };
28893
- export var makeShopifyPromotionMaxLimit = function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_limit'](); };
28894
- export var makeShopifyPromotionOffer = function () { return factories['io.flow.internal.v0.models.shopify_promotion_offer'](); };
28895
- export var makeShopifyPromotionOfferAllocationMethod = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](); };
28896
- export var makeShopifyPromotionOfferDiscount = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount'](); };
28897
- export var makeShopifyPromotionOfferEntitlement = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement'](); };
28898
- export var makeShopifyPromotionOfferMax = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_max'](); };
28899
- export var makeShopifyPromotionOrderEntitlement = function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement'](); };
28900
- export var makeShopifyPromotionOrderEntitlementComponent = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component'](); };
28901
- export var makeShopifyPromotionOrderPrerequisite = function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite'](); };
28902
- export var makeShopifyPromotionPercent = function () { return factories['io.flow.internal.v0.models.shopify_promotion_percent'](); };
28903
- export var makeShopifyPromotionPrerequisite = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite'](); };
28904
- export var makeShopifyPromotionRule = function () { return factories['io.flow.internal.v0.models.shopify_promotion_rule'](); };
28905
- export var makeShopifyPromotionStatus = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_status'](); };
27725
+ export var makeShopifyReportFileDeleted = function () { return factories['io.flow.internal.v0.models.shopify_report_file_deleted'](); };
27726
+ export var makeShopifyReportFileUpserted = function () { return factories['io.flow.internal.v0.models.shopify_report_file_upserted'](); };
28906
27727
  export var makeShopifyService = function () { return factories['io.flow.internal.v0.enums.shopify_service'](); };
28907
- export var makeShopifyShopDeleted = function () { return factories['io.flow.internal.v0.models.shopify_shop_deleted'](); };
28908
27728
  export var makeShopifyShopStatistics = function () { return factories['io.flow.internal.v0.models.shopify_shop_statistics'](); };
28909
- export var makeShopifyShopUpserted = function () { return factories['io.flow.internal.v0.models.shopify_shop_upserted'](); };
28910
27729
  export var makeShopifyStoreDetail = function () { return factories['io.flow.internal.v0.models.shopify_store_detail'](); };
28911
27730
  export var makeShopifyStripeEvent = function () { return factories['io.flow.internal.v0.models.shopify_stripe_event'](); };
28912
- export var makeShopifyWebhook = function () { return factories['io.flow.internal.v0.models.shopify_webhook'](); };
28913
- export var makeShopifyWebhookEvent = function () { return factories['io.flow.internal.v0.models.shopify_webhook_event'](); };
28914
- export var makeShopifyWebhookForm = function () { return factories['io.flow.internal.v0.models.shopify_webhook_form'](); };
27731
+ export var makeShopperBreakdown = function () { return factories['io.flow.internal.v0.models.shopper_breakdown'](); };
28915
27732
  export var makeShopperFees = function () { return factories['io.flow.internal.v0.models.shopper_fees'](); };
28916
27733
  export var makeShopperFreight = function () { return factories['io.flow.internal.v0.models.shopper_freight'](); };
28917
27734
  export var makeShopperLine = function () { return factories['io.flow.internal.v0.models.shopper_line'](); };
@@ -28944,11 +27761,8 @@ export var makeStandaloneAttachment = function () { return factories['io.flow.in
28944
27761
  export var makeStandaloneAttachmentDeleted = function () { return factories['io.flow.internal.v0.models.standalone_attachment_deleted'](); };
28945
27762
  export var makeStandaloneAttachmentUpserted = function () { return factories['io.flow.internal.v0.models.standalone_attachment_upserted'](); };
28946
27763
  export var makeStatementCreationMetadata = function () { return factories['io.flow.internal.v0.models.statement_creation_metadata'](); };
28947
- export var makeStatementStatus = function () { return factories['io.flow.internal.v0.enums.statement_status'](); };
28948
27764
  export var makeStatementTransferTransactionLocation = function () { return factories['io.flow.internal.v0.enums.statement_transfer_transaction_location'](); };
28949
27765
  export var makeStatisticType = function () { return factories['io.flow.internal.v0.enums.statistic_type'](); };
28950
- export var makeStoreConnection = function () { return factories['io.flow.internal.v0.models.store_connection'](); };
28951
- export var makeStoreConnectionForm = function () { return factories['io.flow.internal.v0.models.store_connection_form'](); };
28952
27766
  export var makeStringFeatureDefaultValue = function () { return factories['io.flow.internal.v0.models.string_feature_default_value'](); };
28953
27767
  export var makeStringFeatureRule = function () { return factories['io.flow.internal.v0.models.string_feature_rule'](); };
28954
27768
  export var makeStringFeatureRuleForm = function () { return factories['io.flow.internal.v0.models.string_feature_rule_form'](); };
@@ -28984,7 +27798,6 @@ export var makeStripeRefundDeleted = function () { return factories['io.flow.int
28984
27798
  export var makeStripeRefundUpserted = function () { return factories['io.flow.internal.v0.models.stripe_refund_upserted'](); };
28985
27799
  export var makeStripeReversalDeleted = function () { return factories['io.flow.internal.v0.models.stripe_reversal_deleted'](); };
28986
27800
  export var makeStripeReversalUpserted = function () { return factories['io.flow.internal.v0.models.stripe_reversal_upserted'](); };
28987
- export var makeSubcatalogItemCount = function () { return factories['io.flow.internal.v0.models.subcatalog_item_count'](); };
28988
27801
  export var makeSubmittedOrderUpserted = function () { return factories['io.flow.internal.v0.models.submitted_order_upserted'](); };
28989
27802
  export var makeSubscription = function () { return factories['io.flow.internal.v0.models.subscription'](); };
28990
27803
  export var makeSubscriptionFrequency = function () { return factories['io.flow.internal.v0.enums.subscription_frequency'](); };
@@ -28997,7 +27810,6 @@ export var makeTariffEligibilityData = function () { return factories['io.flow.i
28997
27810
  export var makeTariffEligibilityForm = function () { return factories['io.flow.internal.v0.unions.tariff_eligibility_form'](); };
28998
27811
  export var makeTariffEligibilityType = function () { return factories['io.flow.internal.v0.enums.tariff_eligibility_type'](); };
28999
27812
  export var makeTask = function () { return factories['io.flow.internal.v0.models.task'](); };
29000
- export var makeTaskCount = function () { return factories['io.flow.internal.v0.models.task_count'](); };
29001
27813
  export var makeTaskData = function () { return factories['io.flow.internal.v0.unions.task_data'](); };
29002
27814
  export var makeTaskImport = function () { return factories['io.flow.internal.v0.models.task_import'](); };
29003
27815
  export var makeTaskItemUpserted = function () { return factories['io.flow.internal.v0.models.task_item_upserted'](); };
@@ -29023,6 +27835,7 @@ export var makeTaxTransactionDeleted = function () { return factories['io.flow.i
29023
27835
  export var makeTaxTransactionType = function () { return factories['io.flow.internal.v0.enums.tax_transaction_type'](); };
29024
27836
  export var makeTaxTransactionUpserted = function () { return factories['io.flow.internal.v0.models.tax_transaction_upserted'](); };
29025
27837
  export var makeTaxonomyCategory = function () { return factories['io.flow.internal.v0.models.taxonomy_category'](); };
27838
+ export var makeTaxonomyCategoryClassificationAlignment = function () { return factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'](); };
29026
27839
  export var makeTaxonomyCategoryHs6Ref = function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref'](); };
29027
27840
  export var makeTaxonomyCategoryHs6RefDeleted = function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'](); };
29028
27841
  export var makeTaxonomyCategoryHs6RefUpserted = function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](); };
@@ -29117,11 +27930,8 @@ export var makeUserStatusForm = function () { return factories['io.flow.internal
29117
27930
  export var makeUserStatusRule = function () { return factories['io.flow.internal.v0.models.user_status_rule'](); };
29118
27931
  export var makeUserStatusRuleForm = function () { return factories['io.flow.internal.v0.models.user_status_rule_form'](); };
29119
27932
  export var makeUserUpsertedV2 = function () { return factories['io.flow.internal.v0.models.user_upserted_v2'](); };
29120
- export var makeV1Checkout = function () { return factories['io.flow.internal.v0.models.v1_checkout'](); };
29121
27933
  export var makeValidatedAddress = function () { return factories['io.flow.internal.v0.models.validated_address'](); };
29122
27934
  export var makeValidatedShippingData = function () { return factories['io.flow.internal.v0.models.validated_shipping_data'](); };
29123
- export var makeValidationCharacterLength = function () { return factories['io.flow.internal.v0.models.validation_character_length'](); };
29124
- export var makeValidationRule = function () { return factories['io.flow.internal.v0.unions.validation_rule'](); };
29125
27935
  export var makeViesResult = function () { return factories['io.flow.internal.v0.models.vies_result'](); };
29126
27936
  export var makeVirtualCardTransaction = function () { return factories['io.flow.internal.v0.models.virtual_card_transaction'](); };
29127
27937
  export var makeWasteElectricalAndElectronicEquipmentComplianceData = function () { return factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'](); };