@flowio/api-internal-factories 0.0.129 → 0.0.131

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',
@@ -6470,6 +6369,7 @@ var factories = {
6470
6369
  'shopify_webhook',
6471
6370
  ]); },
6472
6371
  'io.flow.internal.v0.enums.harmonization_decision_source': function () { return faker.helpers.arrayElement(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']); },
6372
+ 'io.flow.internal.v0.enums.hosein_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
6473
6373
  'io.flow.internal.v0.enums.http_method': function () { return faker.helpers.arrayElement(['get', 'post']); },
6474
6374
  'io.flow.internal.v0.enums.internal_payment_entity_type': function () { return faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'dispute']); },
6475
6375
  'io.flow.internal.v0.enums.item_classification_action': function () { return faker.helpers.arrayElement(['ACCEPT', 'MANUAL', 'REJECT']); },
@@ -6489,6 +6389,7 @@ var factories = {
6489
6389
  ]); },
6490
6390
  'io.flow.internal.v0.enums.item_quantity_action': function () { return faker.helpers.arrayElement(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']); },
6491
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']); },
6492
6393
  'io.flow.internal.v0.enums.keyword_type': function () { return faker.helpers.arrayElement(['positive', 'negative']); },
6493
6394
  'io.flow.internal.v0.enums.label_billing_strategy': function () { return faker.helpers.arrayElement(['quote', 'carrier']); },
6494
6395
  'io.flow.internal.v0.enums.label_cancellation_error_code': function () { return faker.helpers.arrayElement(['already_used', 'carrier_unsupported']); },
@@ -6642,6 +6543,7 @@ var factories = {
6642
6543
  ]); },
6643
6544
  'io.flow.internal.v0.enums.payment_summary_type': function () { return faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'reversal', 'credit']); },
6644
6545
  'io.flow.internal.v0.enums.payment_term': function () { return faker.helpers.arrayElement(['net7', 'net15', 'net30']); },
6546
+ 'io.flow.internal.v0.enums.pending_record_type': function () { return faker.helpers.arrayElement(['verification', 'classification', 'restriction']); },
6645
6547
  'io.flow.internal.v0.enums.prateek_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
6646
6548
  'io.flow.internal.v0.enums.preferred_billing_schedule': function () { return faker.helpers.arrayElement(['monthly', 'bi-monthly']); },
6647
6549
  'io.flow.internal.v0.enums.price_selector': function () { return faker.helpers.arrayElement(['minimum', 'maximum']); },
@@ -6664,11 +6566,7 @@ var factories = {
6664
6566
  'crypto',
6665
6567
  ]); },
6666
6568
  'io.flow.internal.v0.enums.processor_entity_status': function () { return faker.helpers.arrayElement(['active', 'draft', 'archived']); },
6667
- 'io.flow.internal.v0.enums.product_status': function () { return faker.helpers.arrayElement(['active', 'archived', 'draft']); },
6668
- 'io.flow.internal.v0.enums.prompt_action': function () { return faker.helpers.arrayElement(['prompt_displayed', 'consent_granted', 'consent_denied']); },
6669
- 'io.flow.internal.v0.enums.prompt_checkout_display_position': function () { return faker.helpers.arrayElement(['email', 'submission']); },
6670
- 'io.flow.internal.v0.enums.prompt_options': function () { return faker.helpers.arrayElement(['notice_only', 'require_consent', 'consent_by_default']); },
6671
- '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']); },
6672
6570
  'io.flow.internal.v0.enums.rate_level_key': function () { return faker.helpers.arrayElement([
6673
6571
  'shopify_small_usa',
6674
6572
  'shopify_medium_usa',
@@ -6676,7 +6574,6 @@ var factories = {
6676
6574
  'shopify_small_sdc_usa',
6677
6575
  ]); },
6678
6576
  'io.flow.internal.v0.enums.rate_source': function () { return faker.helpers.arrayElement(['calculated', 'market']); },
6679
- 'io.flow.internal.v0.enums.rebound_configuration_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
6680
6577
  'io.flow.internal.v0.enums.redirect_reason': function () { return faker.helpers.arrayElement(['three_d_secure']); },
6681
6578
  'io.flow.internal.v0.enums.rejection_reason': function () { return faker.helpers.arrayElement([
6682
6579
  'merchant_policy',
@@ -6705,6 +6602,7 @@ var factories = {
6705
6602
  'reconcile_not_recorded',
6706
6603
  'products_record',
6707
6604
  'disputes',
6605
+ 'sales_payments_record',
6708
6606
  ]); },
6709
6607
  'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': function () { return faker.helpers.arrayElement(['all', 'mixed', 'none']); },
6710
6608
  'io.flow.internal.v0.enums.reporting_scheme': function () { return faker.helpers.arrayElement([
@@ -6718,6 +6616,7 @@ var factories = {
6718
6616
  'io.flow.internal.v0.enums.restriction_decision': function () { return faker.helpers.arrayElement(['accept', 'escalate', 'reject', 'review']); },
6719
6617
  'io.flow.internal.v0.enums.restriction_organization_channel': function () { return faker.helpers.arrayElement(['shopify', 'enterprise', 'shopify-sandbox', 'enterprise-sandbox']); },
6720
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']); },
6721
6620
  'io.flow.internal.v0.enums.restriction_rule_exception_action': function () { return faker.helpers.arrayElement(['allow', 'deny']); },
6722
6621
  'io.flow.internal.v0.enums.restriction_state_review_status': function () { return faker.helpers.arrayElement(['reviewed', 'in_review']); },
6723
6622
  'io.flow.internal.v0.enums.restriction_status': function () { return faker.helpers.arrayElement(['pending', 'in_review', 'escalated', 'accepted', 'restricted']); },
@@ -6725,8 +6624,7 @@ var factories = {
6725
6624
  'io.flow.internal.v0.enums.risk_check': function () { return faker.helpers.arrayElement(['three_d_secure']); },
6726
6625
  'io.flow.internal.v0.enums.risk_evaluation': function () { return faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']); },
6727
6626
  'io.flow.internal.v0.enums.rohan_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
6728
- 'io.flow.internal.v0.enums.shopify_check_inventory_error_code': function () { return faker.helpers.arrayElement(['inventory_out_of_stock']); },
6729
- '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']); },
6730
6628
  'io.flow.internal.v0.enums.shopify_incoterm_configuration': function () { return faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']); },
6731
6629
  'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': function () { return faker.helpers.arrayElement([
6732
6630
  'aerosols',
@@ -6782,23 +6680,11 @@ var factories = {
6782
6680
  'io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status': function () { return faker.helpers.arrayElement(['in_review', 'reviewed']); },
6783
6681
  'io.flow.internal.v0.enums.shopify_monitoring_tracking_field': function () { return faker.helpers.arrayElement(['tracking_number', 'carrier_service', 'tracking_url']); },
6784
6682
  'io.flow.internal.v0.enums.shopify_plan_type': function () { return faker.helpers.arrayElement(['standard', 'shopify_plus']); },
6785
- 'io.flow.internal.v0.enums.shopify_promotion_behavior': function () { return faker.helpers.arrayElement(['disable_discount_codes']); },
6786
- 'io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method': function () { return faker.helpers.arrayElement(['each', 'across']); },
6787
- 'io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component': function () { return faker.helpers.arrayElement(['subtotal', 'shipping', 'vat', 'duty']); },
6788
- 'io.flow.internal.v0.enums.shopify_promotion_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
6789
6683
  'io.flow.internal.v0.enums.shopify_service': function () { return faker.helpers.arrayElement(['payment', 'duty_tax_calculator', 'sellability']); },
6790
6684
  'io.flow.internal.v0.enums.simple_rounding_strategy': function () { return faker.helpers.arrayElement(['no_rounding', 'currency_precision']); },
6791
6685
  'io.flow.internal.v0.enums.snooze_next_action_with': function () { return faker.helpers.arrayElement(['customer_service', 'engineering']); },
6792
6686
  'io.flow.internal.v0.enums.snooze_source_type': function () { return faker.helpers.arrayElement(['task', 'invariant']); },
6793
6687
  'io.flow.internal.v0.enums.source_type_filter': function () { return faker.helpers.arrayElement(['organization', 'channel']); },
6794
- 'io.flow.internal.v0.enums.statement_status': function () { return faker.helpers.arrayElement([
6795
- 'created',
6796
- 'no_transactions',
6797
- 'transactions_assigned',
6798
- 'statement_generated',
6799
- 'statement_regenerated',
6800
- 'failed',
6801
- ]); },
6802
6688
  'io.flow.internal.v0.enums.statement_transfer_transaction_location': function () { return faker.helpers.arrayElement(['transactions_file', 'summary']); },
6803
6689
  'io.flow.internal.v0.enums.statistic_type': function () { return faker.helpers.arrayElement([
6804
6690
  'time-to-classify',
@@ -6827,6 +6713,13 @@ var factories = {
6827
6713
  'io.flow.internal.v0.enums.tax_calculation_error_code': function () { return faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']); },
6828
6714
  'io.flow.internal.v0.enums.tax_party': function () { return faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']); },
6829
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
+ ]); },
6830
6723
  'io.flow.internal.v0.enums.tracking_integration_type': function () { return faker.helpers.arrayElement(['api', 'bulk', 'aftership']); },
6831
6724
  'io.flow.internal.v0.enums.tracking_label_dimensions_source': function () { return faker.helpers.arrayElement(['aftership', 'carrier_api']); },
6832
6725
  'io.flow.internal.v0.enums.tracking_processing_failure_classification': function () { return faker.helpers.arrayElement([
@@ -7062,16 +6955,6 @@ var factories = {
7062
6955
  additional_import_tax_value: factories['io.flow.common.v0.models.money'](),
7063
6956
  rate: factories.decimal(),
7064
6957
  }); },
7065
- 'io.flow.internal.v0.models.address_configuration_province_setting': function () { return ({
7066
- code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
7067
- }); },
7068
- 'io.flow.internal.v0.models.address_configuration_setting': function () { return ({
7069
- id: factories.string(),
7070
- province: factories['io.flow.internal.v0.models.address_configuration_province_setting'](),
7071
- }); },
7072
- 'io.flow.internal.v0.models.address_configuration_setting_form': function () { return ({
7073
- province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
7074
- }); },
7075
6958
  'io.flow.internal.v0.models.adjustment_amount_fixed': function () { return ({
7076
6959
  discriminator: 'fixed',
7077
6960
  amount: factories['io.flow.common.v0.models.money'](),
@@ -7519,9 +7402,6 @@ var factories = {
7519
7402
  type: factories['io.flow.internal.v0.enums.ansh_item_type'](),
7520
7403
  added_on: factories.date_iso_8601(),
7521
7404
  }); },
7522
- 'io.flow.internal.v0.models.apm_content': function () { return ({
7523
- processor_description: factories['io.flow.internal.v0.unions.content_item'](),
7524
- }); },
7525
7405
  'io.flow.internal.v0.models.apple_pay_authorization_payload': function () { return ({
7526
7406
  discriminator: 'apple_pay_authorization_payload',
7527
7407
  apple_pay_token: factories.string(),
@@ -7630,6 +7510,22 @@ var factories = {
7630
7510
  timestamp: factories.date_time_iso_8601(),
7631
7511
  id: factories.string(),
7632
7512
  }); },
7513
+ 'io.flow.internal.v0.models.bank_payment_detail': function () { return ({
7514
+ id: factories.string(),
7515
+ source_type: factories['io.flow.internal.v0.enums.account_type'](),
7516
+ source_id: factories.string(),
7517
+ status: factories['io.flow.internal.v0.enums.bank_payment_status_code'](),
7518
+ amount: factories.decimal(),
7519
+ currency: factories.string(),
7520
+ created_at: factories.date_time_iso_8601(),
7521
+ payment_transactions_url: factories.string(),
7522
+ statement_attachments: arrayOf(function () { return factories['io.flow.internal.v0.models.bank_payment_detail_attachment'](); }),
7523
+ }); },
7524
+ 'io.flow.internal.v0.models.bank_payment_detail_attachment': function () { return ({
7525
+ statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
7526
+ statement_url: factories.string(),
7527
+ statement_transactions_url: factories.string(),
7528
+ }); },
7633
7529
  'io.flow.internal.v0.models.bank_payment_form': function () { return ({
7634
7530
  account_id: factories.string(),
7635
7531
  reference: factories.string(),
@@ -8661,13 +8557,6 @@ var factories = {
8661
8557
  type: factories['io.flow.common.v0.enums.change_type'](),
8662
8558
  chargeback: factories['io.flow.internal.v0.models.chargeback'](),
8663
8559
  }); },
8664
- 'io.flow.internal.v0.models.checkbox': function () { return ({
8665
- name: factories.string(),
8666
- value: factories.string(),
8667
- label: factories.string(),
8668
- checked_by_default: factories.boolean(),
8669
- required: factories.boolean(),
8670
- }); },
8671
8560
  'io.flow.internal.v0.models.checkout_analytics': function () { return ({
8672
8561
  trackers: arrayOf(function () { return factories['io.flow.internal.v0.unions.tracker'](); }),
8673
8562
  use_base_currency: factories.boolean(),
@@ -8700,13 +8589,6 @@ var factories = {
8700
8589
  analytics: factories['io.flow.internal.v0.models.checkout_analytics'](),
8701
8590
  domain: factories.string(),
8702
8591
  }); },
8703
- 'io.flow.internal.v0.models.checkout_configuration_deleted': function () { return ({
8704
- discriminator: 'checkout_configuration_deleted',
8705
- event_id: factories.string(),
8706
- timestamp: factories.date_time_iso_8601(),
8707
- organization: factories.string(),
8708
- checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
8709
- }); },
8710
8592
  'io.flow.internal.v0.models.checkout_configuration_form': function () { return ({
8711
8593
  behavior: factories['io.flow.internal.v0.models.checkout_behavior'](),
8712
8594
  settings: factories['io.flow.internal.v0.models.checkout_settings'](),
@@ -8716,60 +8598,6 @@ var factories = {
8716
8598
  'io.flow.internal.v0.models.checkout_configuration_reference': function () { return ({
8717
8599
  id: factories.string(),
8718
8600
  }); },
8719
- 'io.flow.internal.v0.models.checkout_configuration_upserted': function () { return ({
8720
- discriminator: 'checkout_configuration_upserted',
8721
- event_id: factories.string(),
8722
- timestamp: factories.date_time_iso_8601(),
8723
- organization: factories.string(),
8724
- checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
8725
- }); },
8726
- 'io.flow.internal.v0.models.checkout_content': function () { return ({
8727
- global: factories['io.flow.internal.v0.models.checkout_content_summary'](),
8728
- items: arrayOf(function () { return factories['io.flow.experience.v0.models.checkout_item_content'](); }),
8729
- }); },
8730
- 'io.flow.internal.v0.models.checkout_content_details': function () { return ({
8731
- contact_us: factories['io.flow.internal.v0.unions.content_item'](),
8732
- logo: factories['io.flow.internal.v0.models.logo'](),
8733
- privacy_policy: factories['io.flow.internal.v0.unions.content_item'](),
8734
- terms: factories['io.flow.internal.v0.unions.content_item'](),
8735
- order_summary_message: factories['io.flow.internal.v0.models.content_label'](),
8736
- }); },
8737
- 'io.flow.internal.v0.models.checkout_content_summary': function () { return ({
8738
- customer_service: factories['io.flow.internal.v0.models.labeled_content'](),
8739
- checkout: factories['io.flow.internal.v0.models.checkout_content_details'](),
8740
- payments: factories['io.flow.internal.v0.models.checkout_payment_content'](),
8741
- marketing: factories['io.flow.internal.v0.models.checkout_marketing_content'](),
8742
- footer: arrayOf(function () { return factories['io.flow.internal.v0.unions.content_item'](); }),
8743
- }); },
8744
- 'io.flow.internal.v0.models.checkout_error': function () { return ({
8745
- code: factories['io.flow.internal.v0.enums.checkout_error_code'](),
8746
- messages: arrayOf(function () { return factories.string(); }),
8747
- organization: factories['io.flow.common.v0.models.organization_reference'](),
8748
- redirect: factories['io.flow.internal.v0.models.checkout_redirect'](),
8749
- }); },
8750
- 'io.flow.internal.v0.models.checkout_marketing_content': function () { return ({
8751
- optins: arrayOf(function () { return factories['io.flow.internal.v0.models.checkbox'](); }),
8752
- }); },
8753
- 'io.flow.internal.v0.models.checkout_payment': function () { return ({
8754
- authorizations: arrayOf(function () { return factories['io.flow.payment.v0.unions.authorization'](); }),
8755
- sources: arrayOf(function () { return factories['io.flow.payment.v0.unions.payment_source'](); }),
8756
- public_key: factories['io.flow.payment.v0.models.public_key'](),
8757
- method_types: arrayOf(function () { return factories['io.flow.reference.v0.enums.payment_method_type'](); }),
8758
- method_rules: arrayOf(function () { return factories['io.flow.experience.v0.models.payment_method_rule'](); }),
8759
- authorization_parameters: arrayOf(function () { return factories['io.flow.internal.v0.models.authorization_parameters'](); }),
8760
- }); },
8761
- 'io.flow.internal.v0.models.checkout_payment_content': function () { return ({
8762
- 'default': factories['io.flow.internal.v0.models.apm_content'](),
8763
- paypal: factories['io.flow.internal.v0.models.apm_content'](),
8764
- }); },
8765
- 'io.flow.internal.v0.models.checkout_platform_data': function () { return ({
8766
- order_number: factories.string(),
8767
- }); },
8768
- 'io.flow.internal.v0.models.checkout_redirect': function () { return ({
8769
- method: factories['io.flow.internal.v0.enums.checkout_redirect_method'](),
8770
- url: factories.string(),
8771
- body: factories.string(),
8772
- }); },
8773
8601
  'io.flow.internal.v0.models.checkout_settings': function () { return ({
8774
8602
  session_persistence_timeout: factories['io.flow.common.v0.models.duration'](),
8775
8603
  session_persistence_attribute_keys: arrayOf(function () { return factories.string(); }),
@@ -9060,74 +8888,6 @@ var factories = {
9060
8888
  service: factories.string(),
9061
8889
  note: factories.string(),
9062
8890
  }); },
9063
- 'io.flow.internal.v0.models.consumer_optin_activity': function () { return ({
9064
- optin_attribute_key: factories.string(),
9065
- optin_region: factories.string(),
9066
- consent_granted: factories.boolean(),
9067
- last_seen_at: factories.date_time_iso_8601(),
9068
- last_acted_at: factories.date_time_iso_8601(),
9069
- }); },
9070
- 'io.flow.internal.v0.models.content_label': function () { return ({
9071
- discriminator: 'content_label',
9072
- key: factories.string(),
9073
- format: factories['io.flow.internal.v0.enums.format'](),
9074
- value: factories.string(),
9075
- }); },
9076
- 'io.flow.internal.v0.models.content_schema': function () { return ({
9077
- key: factories.string(),
9078
- description: factories.string(),
9079
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.content_schema_element'](); }),
9080
- allow_multiple: factories.boolean(),
9081
- }); },
9082
- 'io.flow.internal.v0.models.content_schema_element': function () { return ({
9083
- type: factories['io.flow.internal.v0.enums.content_element_type'](),
9084
- description: factories.string(),
9085
- example: factories.string(),
9086
- required: factories.boolean(),
9087
- validation: arrayOf(function () { return factories['io.flow.internal.v0.unions.validation_rule'](); }),
9088
- }); },
9089
- 'io.flow.internal.v0.models.content_schema_form': function () { return ({
9090
- description: factories.string(),
9091
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.content_schema_element'](); }),
9092
- allow_multiple: factories.boolean(),
9093
- }); },
9094
- 'io.flow.internal.v0.models.content_schema_summary': function () { return ({
9095
- key: factories.string(),
9096
- description: factories.string(),
9097
- }); },
9098
- 'io.flow.internal.v0.models.country_picker_country': function () { return ({
9099
- iso_3166_2: factories.string(),
9100
- iso_3166_3: factories.string(),
9101
- name: factories.string(),
9102
- default_currency: factories.string(),
9103
- }); },
9104
- 'io.flow.internal.v0.models.country_picker_country_data': function () { return ({
9105
- country: factories.string(),
9106
- delivery_window: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_delivery_window'](); }),
9107
- }); },
9108
- 'io.flow.internal.v0.models.country_picker_currency': function () { return ({
9109
- iso_4217_3: factories.string(),
9110
- name: factories.string(),
9111
- }); },
9112
- 'io.flow.internal.v0.models.country_picker_data': function () { return ({
9113
- countries: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_country'](); }),
9114
- currencies: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_currency'](); }),
9115
- experience_data: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_experience_data'](); }),
9116
- country_data: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_country_data'](); }),
9117
- }); },
9118
- 'io.flow.internal.v0.models.country_picker_delivery_window': function () { return ({
9119
- name: factories.string(),
9120
- from: factories.date_time_iso_8601(),
9121
- to: factories.date_time_iso_8601(),
9122
- timezone: factories.string(),
9123
- }); },
9124
- 'io.flow.internal.v0.models.country_picker_experience_data': function () { return ({
9125
- experience_key: factories.string(),
9126
- payment_methods: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_payment_method'](); }),
9127
- }); },
9128
- 'io.flow.internal.v0.models.country_picker_payment_method': function () { return ({
9129
- id: factories.string(),
9130
- }); },
9131
8891
  'io.flow.internal.v0.models.courthouse_product_summary': function () { return ({
9132
8892
  organization: factories['io.flow.common.v0.models.organization_summary'](),
9133
8893
  product_id: factories.string(),
@@ -9186,6 +8946,8 @@ var factories = {
9186
8946
  discount: factories['io.flow.internal.v0.models.other_record_discount'](),
9187
8947
  net: factories.decimal(),
9188
8948
  identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
8949
+ revenue_share_percentage: factories.decimal(),
8950
+ revenue_share_plan: factories.string(),
9189
8951
  created_at: factories.date_time_iso_8601(),
9190
8952
  updated_at: factories.date_time_iso_8601(),
9191
8953
  posted_at: factories.date_time_iso_8601(),
@@ -9289,6 +9051,9 @@ var factories = {
9289
9051
  timestamp: factories.date_time_iso_8601(),
9290
9052
  daily_value: factories['io.flow.internal.v0.models.daily_value'](),
9291
9053
  }); },
9054
+ 'io.flow.internal.v0.models.database': function () { return ({
9055
+ name: factories.string(),
9056
+ }); },
9292
9057
  'io.flow.internal.v0.models.debug_accounting_transaction': function () { return ({
9293
9058
  type: factories['io.flow.internal.v0.enums.debug_accounting_transaction_type'](),
9294
9059
  type_id: factories.string(),
@@ -9484,11 +9249,6 @@ var factories = {
9484
9249
  pickup_account_number: factories.string(),
9485
9250
  pickup_name: factories.string(),
9486
9251
  }); },
9487
- 'io.flow.internal.v0.models.dict': function () { return ({
9488
- discriminator: 'dict',
9489
- label: factories['io.flow.internal.v0.models.content_label'](),
9490
- description: factories['io.flow.internal.v0.models.content_label'](),
9491
- }); },
9492
9252
  'io.flow.internal.v0.models.dimension_estimate_ops_input': function () { return ({
9493
9253
  organization_id: factories.string(),
9494
9254
  length_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
@@ -10265,28 +10025,6 @@ var factories = {
10265
10025
  category_group: factories.string(),
10266
10026
  description: factories.string(),
10267
10027
  }); },
10268
- 'io.flow.internal.v0.models.financial_reporting_statement': function () { return ({
10269
- id: factories.string(),
10270
- statement_number: factories.string(),
10271
- status: factories['io.flow.internal.v0.enums.statement_status'](),
10272
- transactions_start_date: factories.date_time_iso_8601(),
10273
- transactions_end_date: factories.date_time_iso_8601(),
10274
- processing_start_at: factories.date_time_iso_8601(),
10275
- processing_end_at: factories.date_time_iso_8601(),
10276
- organization_id: factories.string(),
10277
- flow_entity_country_code: factories.string(),
10278
- captures_url: factories.string(),
10279
- missing_captures_url: factories.string(),
10280
- refunds_url: factories.string(),
10281
- missing_refunds_url: factories.string(),
10282
- adjustments_url: factories.string(),
10283
- }); },
10284
- 'io.flow.internal.v0.models.financial_reporting_statement_form': function () { return ({
10285
- transactions_start_date: factories.date_time_iso_8601(),
10286
- transactions_end_date: factories.date_time_iso_8601(),
10287
- organization_id: factories.string(),
10288
- flow_entity_country_code: factories.string(),
10289
- }); },
10290
10028
  'io.flow.internal.v0.models.fiserv_account': function () { return ({
10291
10029
  discriminator: 'fiserv_account',
10292
10030
  id: factories.string(),
@@ -10658,33 +10396,6 @@ var factories = {
10658
10396
  organization: factories.string(),
10659
10397
  ftp_file: factories['io.flow.ftp.v0.models.ftp_file'](),
10660
10398
  }); },
10661
- 'io.flow.internal.v0.models.ftp_setting': function () { return ({
10662
- id: factories.string(),
10663
- protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
10664
- paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
10665
- username: factories.string(),
10666
- password: factories.string(),
10667
- host: factories.string(),
10668
- intents: arrayOf(function () { return factories['io.flow.internal.v0.enums.ftp_intent'](); }),
10669
- }); },
10670
- 'io.flow.internal.v0.models.ftp_setting_form': function () { return ({
10671
- protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
10672
- paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
10673
- username: factories.string(),
10674
- password: factories.string(),
10675
- host: factories.string(),
10676
- intents: arrayOf(function () { return factories['io.flow.internal.v0.enums.ftp_intent'](); }),
10677
- }); },
10678
- 'io.flow.internal.v0.models.ftp_setting_version': function () { return ({
10679
- id: factories.string(),
10680
- timestamp: factories.date_time_iso_8601(),
10681
- type: factories['io.flow.common.v0.enums.change_type'](),
10682
- ftp_setting: factories['io.flow.internal.v0.models.ftp_setting'](),
10683
- }); },
10684
- 'io.flow.internal.v0.models.ftp_settings_paths': function () { return ({
10685
- inbound: factories.string(),
10686
- outbound: factories.string(),
10687
- }); },
10688
10399
  'io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form': function () { return ({
10689
10400
  discriminator: 'fuel_surcharge_service_fee_amount_by_weight_put_form',
10690
10401
  amount: factories['io.flow.common.v0.models.money'](),
@@ -11037,10 +10748,20 @@ var factories = {
11037
10748
  organization: factories.string(),
11038
10749
  export_id: factories.string(),
11039
10750
  }); },
11040
- 'io.flow.internal.v0.models.href': function () { return ({
11041
- discriminator: 'href',
11042
- label: factories['io.flow.internal.v0.models.content_label'](),
11043
- url: factories.string(),
10751
+ 'io.flow.internal.v0.models.hosein_item': function () { return ({
10752
+ id: factories.string(),
10753
+ number: factories.string(),
10754
+ amount: factories['io.flow.common.v0.models.price'](),
10755
+ description: factories.string(),
10756
+ type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
10757
+ added_on: factories.date_time_iso_8601(),
10758
+ }); },
10759
+ 'io.flow.internal.v0.models.hosein_item_form': function () { return ({
10760
+ number: factories.string(),
10761
+ amount: factories['io.flow.common.v0.models.price'](),
10762
+ description: factories.string(),
10763
+ type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
10764
+ added_on: factories.date_time_iso_8601(),
11044
10765
  }); },
11045
10766
  'io.flow.internal.v0.models.hs6': function () { return ({
11046
10767
  code: factories.string(),
@@ -11065,9 +10786,6 @@ var factories = {
11065
10786
  import_id: factories.string(),
11066
10787
  error: factories.string(),
11067
10788
  }); },
11068
- 'io.flow.internal.v0.models.install_form': function () { return ({
11069
- token: factories.string(),
11070
- }); },
11071
10789
  'io.flow.internal.v0.models.internal_adyen_authorization_details': function () { return ({
11072
10790
  discriminator: 'internal_adyen_authorization_details',
11073
10791
  adyen_authentication_data: factories['io.flow.internal.v0.models.adyen_authentication_data_reference'](),
@@ -11305,29 +11023,6 @@ var factories = {
11305
11023
  statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
11306
11024
  created_at: factories.date_time_iso_8601(),
11307
11025
  }); },
11308
- 'io.flow.internal.v0.models.issuer': function () { return ({
11309
- id: factories.string(),
11310
- iin: factories.string(),
11311
- name: factories.string(),
11312
- country: factories.string(),
11313
- brand: factories.string(),
11314
- type: factories.string(),
11315
- category: factories.string(),
11316
- website: factories.string(),
11317
- phone: factories.string(),
11318
- }); },
11319
- 'io.flow.internal.v0.models.issuer_deleted': function () { return ({
11320
- discriminator: 'issuer_deleted',
11321
- event_id: factories.string(),
11322
- timestamp: factories.date_time_iso_8601(),
11323
- issuer: factories['io.flow.internal.v0.models.issuer'](),
11324
- }); },
11325
- 'io.flow.internal.v0.models.issuer_upserted': function () { return ({
11326
- discriminator: 'issuer_upserted',
11327
- event_id: factories.string(),
11328
- timestamp: factories.date_time_iso_8601(),
11329
- issuer: factories['io.flow.internal.v0.models.issuer'](),
11330
- }); },
11331
11026
  'io.flow.internal.v0.models.item_classification': function () { return ({
11332
11027
  id: factories.string(),
11333
11028
  organization: factories.string(),
@@ -11422,6 +11117,7 @@ var factories = {
11422
11117
  tariffs: objectOf(function () { return factories['io.flow.internal.v0.models.tariff_code_duty'](); }),
11423
11118
  decision_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
11424
11119
  classification_scope: factories['io.flow.internal.v0.enums.classification_scope'](),
11120
+ taxonomy_category_classification_alignment: factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'](),
11425
11121
  created_at: factories.date_time_iso_8601(),
11426
11122
  updated_at: factories.date_time_iso_8601(),
11427
11123
  updated_by_user_id: factories.string(),
@@ -11527,6 +11223,19 @@ var factories = {
11527
11223
  id: factories.string(),
11528
11224
  name: factories.string(),
11529
11225
  }); },
11226
+ 'io.flow.internal.v0.models.journal': function () { return ({
11227
+ name: factories.string(),
11228
+ queued: factories.integer(),
11229
+ failed: factories.integer(),
11230
+ }); },
11231
+ 'io.flow.internal.v0.models.journal_failure': function () { return ({
11232
+ journal_id: factories.long(),
11233
+ operation: factories['io.flow.internal.v0.enums.journal_operation'](),
11234
+ created_at: factories.date_time_iso_8601(),
11235
+ failed_at: factories.date_time_iso_8601(),
11236
+ error: factories.string(),
11237
+ organization_id: factories.string(),
11238
+ }); },
11530
11239
  'io.flow.internal.v0.models.key': function () { return ({
11531
11240
  id: factories.string(),
11532
11241
  created_at: factories.date_time_iso_8601(),
@@ -11801,10 +11510,6 @@ var factories = {
11801
11510
  timestamp: factories.date_time_iso_8601(),
11802
11511
  label_transaction: factories['io.flow.internal.v0.models.label_transaction'](),
11803
11512
  }); },
11804
- 'io.flow.internal.v0.models.labeled_content': function () { return ({
11805
- label: factories['io.flow.internal.v0.models.content_label'](),
11806
- contents: arrayOf(function () { return factories['io.flow.internal.v0.unions.content_item'](); }),
11807
- }); },
11808
11513
  'io.flow.internal.v0.models.labels_prediction': function () { return ({
11809
11514
  main_material: factories.string(),
11810
11515
  gender: factories.string(),
@@ -11916,65 +11621,6 @@ var factories = {
11916
11621
  line_number: factories.long(),
11917
11622
  action_quantity: arrayOf(function () { return factories['io.flow.internal.v0.models.action_quantity'](); }),
11918
11623
  }); },
11919
- 'io.flow.internal.v0.models.load': function () { return ({
11920
- discriminator: 'load',
11921
- label: factories['io.flow.internal.v0.models.content_label'](),
11922
- location: factories['io.flow.internal.v0.models.location'](),
11923
- }); },
11924
- 'io.flow.internal.v0.models.localizable_content_reference': function () { return ({
11925
- discriminator: 'localizable_content_reference',
11926
- content_id: factories.string(),
11927
- }); },
11928
- 'io.flow.internal.v0.models.localization': function () { return ({
11929
- discriminator: 'localization',
11930
- id: factories.string(),
11931
- content_id: factories.string(),
11932
- locale: factories.string(),
11933
- status: factories['io.flow.internal.v0.enums.content_status'](),
11934
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.localized_content_element'](); }),
11935
- }); },
11936
- 'io.flow.internal.v0.models.localization_form': function () { return ({
11937
- locale: factories.string(),
11938
- status: factories['io.flow.internal.v0.enums.content_status'](),
11939
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.localized_content_element'](); }),
11940
- }); },
11941
- 'io.flow.internal.v0.models.localization_ref': function () { return ({
11942
- id: factories.string(),
11943
- locale: factories.string(),
11944
- status: factories['io.flow.internal.v0.enums.content_status'](),
11945
- }); },
11946
- 'io.flow.internal.v0.models.localization_upserted': function () { return ({
11947
- discriminator: 'localization_upserted',
11948
- event_id: factories.string(),
11949
- timestamp: factories.date_time_iso_8601(),
11950
- localization_id: factories.string(),
11951
- locale: factories.string(),
11952
- status: factories['io.flow.internal.v0.enums.content_status'](),
11953
- }); },
11954
- 'io.flow.internal.v0.models.localized_content': function () { return ({
11955
- id: factories.string(),
11956
- schema_key: factories.string(),
11957
- status: factories['io.flow.internal.v0.enums.content_status'](),
11958
- source: factories['io.flow.internal.v0.models.localization'](),
11959
- localizations: arrayOf(function () { return factories['io.flow.internal.v0.models.localization_ref'](); }),
11960
- }); },
11961
- 'io.flow.internal.v0.models.localized_content_element': function () { return ({
11962
- value: factories.string(),
11963
- type: factories['io.flow.internal.v0.enums.content_element_type'](),
11964
- }); },
11965
- 'io.flow.internal.v0.models.localized_content_form': function () { return ({
11966
- schema_key: factories.string(),
11967
- status: factories['io.flow.internal.v0.enums.content_status'](),
11968
- source: factories['io.flow.internal.v0.models.localization_form'](),
11969
- }); },
11970
- 'io.flow.internal.v0.models.localized_content_upserted': function () { return ({
11971
- discriminator: 'localized_content_upserted',
11972
- event_id: factories.string(),
11973
- timestamp: factories.date_time_iso_8601(),
11974
- content_id: factories.string(),
11975
- schema_key: factories.string(),
11976
- source_localization_id: factories.string(),
11977
- }); },
11978
11624
  'io.flow.internal.v0.models.localized_item_prices_export_request': function () { return ({
11979
11625
  discriminator: 'localized_item_prices_export_request',
11980
11626
  event_id: factories.string(),
@@ -11999,10 +11645,6 @@ var factories = {
11999
11645
  price_start_date: factories.date_time_iso_8601(),
12000
11646
  price_end_date: factories.date_time_iso_8601(),
12001
11647
  }); },
12002
- 'io.flow.internal.v0.models.location': function () { return ({
12003
- type: factories['io.flow.internal.v0.enums.content_type'](),
12004
- url: factories.string(),
12005
- }); },
12006
11648
  'io.flow.internal.v0.models.logistics_capabilities': function () { return ({
12007
11649
  id: factories.string(),
12008
11650
  capabilities: arrayOf(function () { return factories['io.flow.internal.v0.enums.logistics_capability'](); }),
@@ -12042,9 +11684,6 @@ var factories = {
12042
11684
  carrier_tracking_number: factories.string(),
12043
11685
  external_reference_number: factories.string(),
12044
11686
  }); },
12045
- 'io.flow.internal.v0.models.logo': function () { return ({
12046
- url: factories.string(),
12047
- }); },
12048
11687
  'io.flow.internal.v0.models.lost_chargeback': function () { return ({
12049
11688
  id: factories.string(),
12050
11689
  order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
@@ -12065,9 +11704,6 @@ var factories = {
12065
11704
  'io.flow.internal.v0.models.loyalty_program_rewards': function () { return ({
12066
11705
  applied: arrayOf(function () { return factories['io.flow.internal.v0.models.loyalty_program_reward'](); }),
12067
11706
  }); },
12068
- 'io.flow.internal.v0.models.magento_install_form': function () { return ({
12069
- token: factories.string(),
12070
- }); },
12071
11707
  'io.flow.internal.v0.models.main_transaction': function () { return ({
12072
11708
  id: factories.string(),
12073
11709
  account: factories['io.flow.billing.v0.models.account_reference'](),
@@ -12436,52 +12072,6 @@ var factories = {
12436
12072
  key: factories.string(),
12437
12073
  expires_at: factories.date_time_iso_8601(),
12438
12074
  }); },
12439
- 'io.flow.internal.v0.models.optin_attribute': function () { return ({
12440
- name: factories.string(),
12441
- optin_attribute_key: factories.string(),
12442
- target: factories['io.flow.internal.v0.enums.prompt_target'](),
12443
- status: factories['io.flow.internal.v0.enums.content_status'](),
12444
- created_at: factories.date_time_iso_8601(),
12445
- updated_at: factories.date_time_iso_8601(),
12446
- }); },
12447
- 'io.flow.internal.v0.models.optin_attribute_form': function () { return ({
12448
- name: factories.string(),
12449
- optin_attribute_key: factories.string(),
12450
- target: factories['io.flow.internal.v0.enums.prompt_target'](),
12451
- status: factories['io.flow.internal.v0.enums.content_status'](),
12452
- }); },
12453
- 'io.flow.internal.v0.models.optin_prompt': function () { return ({
12454
- id: factories.string(),
12455
- optin_attribute: factories['io.flow.internal.v0.models.optin_attribute'](),
12456
- region: factories.string(),
12457
- options: arrayOf(function () { return factories['io.flow.internal.v0.enums.prompt_options'](); }),
12458
- content: factories['io.flow.internal.v0.unions.localizable_content'](),
12459
- position: factories.long(),
12460
- enforce_on: factories.date_time_iso_8601(),
12461
- display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
12462
- }); },
12463
- 'io.flow.internal.v0.models.optin_prompt_checkout_display': function () { return ({
12464
- discriminator: 'optin_prompt_checkout_display',
12465
- display_position: factories['io.flow.internal.v0.enums.prompt_checkout_display_position'](),
12466
- }); },
12467
- 'io.flow.internal.v0.models.optin_prompt_copy': function () { return ({
12468
- from: factories.string(),
12469
- to: factories.string(),
12470
- number_prompts: factories.long(),
12471
- }); },
12472
- 'io.flow.internal.v0.models.optin_prompt_copy_form': function () { return ({
12473
- from: factories.string(),
12474
- to: factories.string(),
12475
- }); },
12476
- 'io.flow.internal.v0.models.optin_prompt_form': function () { return ({
12477
- optin_attribute_key: factories.string(),
12478
- region: factories.string(),
12479
- options: arrayOf(function () { return factories['io.flow.internal.v0.enums.prompt_options'](); }),
12480
- content: factories['io.flow.internal.v0.models.localization_form'](),
12481
- position: factories.integer(),
12482
- enforce_on: factories.date_time_iso_8601(),
12483
- display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
12484
- }); },
12485
12075
  'io.flow.internal.v0.models.order_actionability': function () { return ({
12486
12076
  action: arrayOf(function () { return factories['io.flow.internal.v0.enums.order_action'](); }),
12487
12077
  lines: arrayOf(function () { return factories['io.flow.internal.v0.models.line_action_quantities'](); }),
@@ -12658,9 +12248,6 @@ var factories = {
12658
12248
  from_service_id: factories.string(),
12659
12249
  to_service_id: factories.string(),
12660
12250
  }); },
12661
- 'io.flow.internal.v0.models.order_submission_form': function () { return ({
12662
- authorization: factories['io.flow.payment.v0.unions.authorization_form'](),
12663
- }); },
12664
12251
  'io.flow.internal.v0.models.order_summary': function () { return ({
12665
12252
  id: factories.string(),
12666
12253
  organization: factories['io.flow.common.v0.models.organization_reference'](),
@@ -12963,11 +12550,6 @@ var factories = {
12963
12550
  product_count: factories.long(),
12964
12551
  restricted_product_count: factories.long(),
12965
12552
  last_order_submitted_at: factories.date_time_iso_8601(),
12966
- matching_positive_keywords: arrayOf(function () { return factories.string(); }),
12967
- product_categories: arrayOf(function () { return factories.string(); }),
12968
- matching_negative_keywords: arrayOf(function () { return factories.string(); }),
12969
- decisions_user_ids: arrayOf(function () { return factories.string(); }),
12970
- restriction_rule_ids: arrayOf(function () { return factories.string(); }),
12971
12553
  }); },
12972
12554
  'io.flow.internal.v0.models.organization_metadata_deleted': function () { return ({
12973
12555
  discriminator: 'organization_metadata_deleted',
@@ -13138,6 +12720,8 @@ var factories = {
13138
12720
  discount: factories['io.flow.internal.v0.models.other_record_discount'](),
13139
12721
  net: factories.decimal(),
13140
12722
  identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
12723
+ revenue_share_percentage: factories.decimal(),
12724
+ revenue_share_plan: factories.string(),
13141
12725
  created_at: factories.date_time_iso_8601(),
13142
12726
  updated_at: factories.date_time_iso_8601(),
13143
12727
  posted_at: factories.date_time_iso_8601(),
@@ -13372,6 +12956,10 @@ var factories = {
13372
12956
  id: factories.string(),
13373
12957
  tribe: factories['io.flow.internal.v0.models.tribe'](),
13374
12958
  }); },
12959
+ 'io.flow.internal.v0.models.payment_is': function () { return ({
12960
+ lvg: factories.boolean(),
12961
+ manual: factories.boolean(),
12962
+ }); },
13375
12963
  'io.flow.internal.v0.models.payment_method_detail': function () { return ({
13376
12964
  method: factories['io.flow.reference.v0.models.payment_method'](),
13377
12965
  method_options: arrayOf(function () { return factories['io.flow.internal.v0.models.payment_method_option'](); }),
@@ -13994,12 +13582,24 @@ var factories = {
13994
13582
  restricted_regions: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellablility_region_result'](); }),
13995
13583
  rule_ids: arrayOf(function () { return factories.string(); }),
13996
13584
  }); },
13585
+ 'io.flow.internal.v0.models.product_sellability_internal_form': function () { return ({
13586
+ name: factories.string(),
13587
+ price: factories['io.flow.common.v0.models.money'](),
13588
+ description: factories.string(),
13589
+ hs6_code: factories.string(),
13590
+ categories: arrayOf(function () { return factories.string(); }),
13591
+ }); },
13592
+ 'io.flow.internal.v0.models.product_sellability_internal_result': function () { return ({
13593
+ restricted_regions: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellablility_region_result'](); }),
13594
+ rule_ids: arrayOf(function () { return factories.string(); }),
13595
+ }); },
13997
13596
  'io.flow.internal.v0.models.product_sellability_result': function () { return ({
13998
13597
  shop_id: factories.string(),
13999
13598
  product_number: factories.string(),
14000
13599
  request_id: factories.string(),
14001
13600
  hs6_code: factories.string(),
14002
13601
  restricted_regions: arrayOf(function () { return factories.string(); }),
13602
+ restricted_regions_by_type: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellablility_region_result'](); }),
14003
13603
  rule_ids: arrayOf(function () { return factories.string(); }),
14004
13604
  }); },
14005
13605
  'io.flow.internal.v0.models.product_transaction': function () { return ({
@@ -14395,19 +13995,6 @@ var factories = {
14395
13995
  destination: factories['io.flow.reference.v0.models.country'](),
14396
13996
  summaries: arrayOf(function () { return factories['io.flow.internal.v0.models.rate_name_summary'](); }),
14397
13997
  }); },
14398
- 'io.flow.internal.v0.models.rebound_configuration': function () { return ({
14399
- id: factories.string(),
14400
- login: factories.string(),
14401
- api_key: factories.string(),
14402
- status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
14403
- orders_since_submitted_at: factories.date_time_iso_8601(),
14404
- }); },
14405
- 'io.flow.internal.v0.models.rebound_configuration_form': function () { return ({
14406
- login: factories.string(),
14407
- api_key: factories.string(),
14408
- status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
14409
- orders_since_submitted_at: factories.date_time_iso_8601(),
14410
- }); },
14411
13998
  'io.flow.internal.v0.models.record_reference': function () { return ({
14412
13999
  id: factories.string(),
14413
14000
  }); },
@@ -14724,11 +14311,18 @@ var factories = {
14724
14311
  'io.flow.internal.v0.models.rescreen_restrictions_products': function () { return ({
14725
14312
  placeholder: factories.boolean(),
14726
14313
  }); },
14314
+ 'io.flow.internal.v0.models.restriction_blanket_organization_exemption': function () { return ({
14315
+ id: factories.string(),
14316
+ organization_id: factories.string(),
14317
+ description: factories.string(),
14318
+ is_all_rules_exempt: factories.boolean(),
14319
+ exempt_regions: arrayOf(function () { return factories.string(); }),
14320
+ excluded_rules: arrayOf(function () { return factories.string(); }),
14321
+ }); },
14727
14322
  'io.flow.internal.v0.models.restriction_category': function () { return ({
14728
14323
  category: factories.string(),
14729
14324
  }); },
14730
14325
  'io.flow.internal.v0.models.restriction_filter': function () { return ({
14731
- categories: arrayOf(function () { return factories.string(); }),
14732
14326
  users: arrayOf(function () { return factories['io.flow.common.v0.models.user'](); }),
14733
14327
  rules: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_rule_summary'](); }),
14734
14328
  positive_keywords: arrayOf(function () { return factories.string(); }),
@@ -14771,7 +14365,6 @@ var factories = {
14771
14365
  statuses: arrayOf(function () { return factories['io.flow.internal.v0.enums.restriction_status'](); }),
14772
14366
  rule_ids: arrayOf(function () { return factories.string(); }),
14773
14367
  user_ids: arrayOf(function () { return factories.string(); }),
14774
- categories: arrayOf(function () { return factories.string(); }),
14775
14368
  category: factories.string(),
14776
14369
  product_name_query: factories.string(),
14777
14370
  hs6: factories.string(),
@@ -14875,6 +14468,8 @@ var factories = {
14875
14468
  reviews: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_item_review'](); }),
14876
14469
  created_at: factories.date_time_iso_8601(),
14877
14470
  updated_at: factories.date_time_iso_8601(),
14471
+ taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
14472
+ taxonomy_data: arrayOf(function () { return factories['io.flow.product.v0.models.product_taxonomy_data'](); }),
14878
14473
  }); },
14879
14474
  'io.flow.internal.v0.models.restriction_product_decision_form': function () { return ({
14880
14475
  rule_decisions: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_rule_decision_form'](); }),
@@ -14885,7 +14480,6 @@ var factories = {
14885
14480
  positive_keywords: arrayOf(function () { return factories.string(); }),
14886
14481
  negative_keywords: arrayOf(function () { return factories.string(); }),
14887
14482
  user_ids: arrayOf(function () { return factories.string(); }),
14888
- categories: arrayOf(function () { return factories.string(); }),
14889
14483
  category: factories.string(),
14890
14484
  product_name_query: factories.string(),
14891
14485
  hs6: factories.string(),
@@ -14908,6 +14502,8 @@ var factories = {
14908
14502
  auto_review_criteria: arrayOf(function () { return factories['io.flow.internal.v0.models.auto_review_criteria'](); }),
14909
14503
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
14910
14504
  sellability_positive_keywords: arrayOf(function () { return factories.string(); }),
14505
+ community_exemption: arrayOf(function () { return factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](); }),
14506
+ reason_code: factories.string(),
14911
14507
  }); },
14912
14508
  'io.flow.internal.v0.models.restriction_rule_decision_form': function () { return ({
14913
14509
  rule_id: factories.string(),
@@ -14956,6 +14552,8 @@ var factories = {
14956
14552
  auto_review_criteria: arrayOf(function () { return factories['io.flow.internal.v0.models.auto_review_criteria'](); }),
14957
14553
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
14958
14554
  sellability_positive_keywords: arrayOf(function () { return factories.string(); }),
14555
+ community_exemption: arrayOf(function () { return factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](); }),
14556
+ reason_code: factories.string(),
14959
14557
  }); },
14960
14558
  'io.flow.internal.v0.models.restriction_rule_lane_exemption': function () { return ({
14961
14559
  id: factories.string(),
@@ -14970,9 +14568,10 @@ var factories = {
14970
14568
  rule_id: factories.string(),
14971
14569
  description: factories.string(),
14972
14570
  is_rule_exempt: factories.boolean(),
14973
- exempt_countries: arrayOf(function () { return factories.string(); }),
14571
+ exempt_regions: arrayOf(function () { return factories.string(); }),
14974
14572
  ignored_keywords: arrayOf(function () { return factories.string(); }),
14975
14573
  additional_keywords: arrayOf(function () { return factories.string(); }),
14574
+ community_exemption_override: arrayOf(function () { return factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](); }),
14976
14575
  }); },
14977
14576
  'io.flow.internal.v0.models.restriction_rule_override': function () { return ({
14978
14577
  id: factories.string(),
@@ -15003,8 +14602,14 @@ var factories = {
15003
14602
  num_products_setup_complete_with_pvs: factories.decimal(),
15004
14603
  num_orgs_transacting_with_pvs: factories.decimal(),
15005
14604
  num_products_transacting_with_pvs: factories.decimal(),
14605
+ num_orgs_setup_complete_with_pcs: factories.decimal(),
14606
+ num_products_setup_complete_with_pcs: factories.decimal(),
14607
+ num_orgs_transacting_with_pcs: factories.decimal(),
14608
+ num_products_transacting_with_pcs: factories.decimal(),
15006
14609
  oldest_pv_product_date_setup_complete: factories.date_iso_8601(),
15007
14610
  oldest_pv_product_date_transacting: factories.date_iso_8601(),
14611
+ oldest_pc_product_date_setup_complete: factories.date_iso_8601(),
14612
+ oldest_pc_product_date_transacting: factories.date_iso_8601(),
15008
14613
  num_orgs_setup_complete_prs: factories.decimal(),
15009
14614
  num_products_setup_complete_prs: factories.decimal(),
15010
14615
  num_orgs_transacting_prs: factories.decimal(),
@@ -15173,12 +14778,39 @@ var factories = {
15173
14778
  discriminator: 'routing_processor',
15174
14779
  processor: factories['io.flow.internal.v0.enums.processor'](),
15175
14780
  }); },
15176
- 'io.flow.internal.v0.models.sandbox_setup': function () { return ({
15177
- requested_by: factories.string(),
14781
+ 'io.flow.internal.v0.models.sales_payment_record': function () { return ({
14782
+ id: factories.string(),
14783
+ organization: factories['io.flow.internal.v0.models.reporting_organization_summary'](),
14784
+ order: factories['io.flow.internal.v0.models.reporting_order_summary'](),
14785
+ order_total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
14786
+ shopper_breakdown: factories['io.flow.internal.v0.models.shopper_breakdown'](),
14787
+ payment: factories['io.flow.internal.v0.models.reporting_payment'](),
14788
+ conversion_rate: factories['io.flow.internal.v0.models.reporting_conversion_rates'](),
14789
+ payment_is: factories['io.flow.internal.v0.models.payment_is'](),
14790
+ destination_country: factories.string(),
14791
+ fulfilled_at: factories.date_time_iso_8601(),
14792
+ }); },
14793
+ 'io.flow.internal.v0.models.sandbox_setup': function () { return ({
14794
+ requested_by: factories.string(),
15178
14795
  }); },
15179
14796
  'io.flow.internal.v0.models.sandbox_setup_form': function () { return ({
15180
14797
  requested_by: factories.string(),
15181
14798
  }); },
14799
+ 'io.flow.internal.v0.models.sarvesh_item': function () { return ({
14800
+ id: factories.string(),
14801
+ number: factories.string(),
14802
+ amount: factories['io.flow.common.v0.models.price'](),
14803
+ description: factories.string(),
14804
+ type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
14805
+ added_on: factories.date_time_iso_8601(),
14806
+ }); },
14807
+ 'io.flow.internal.v0.models.sarvesh_item_form': function () { return ({
14808
+ number: factories.string(),
14809
+ amount: factories['io.flow.common.v0.models.price'](),
14810
+ description: factories.string(),
14811
+ type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
14812
+ added_on: factories.date_time_iso_8601(),
14813
+ }); },
15182
14814
  'io.flow.internal.v0.models.scheduled_payment': function () { return ({
15183
14815
  payment: factories['io.flow.internal.v0.models.report_payment'](),
15184
14816
  bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
@@ -15301,22 +14933,6 @@ var factories = {
15301
14933
  freight_cost: factories.decimal(),
15302
14934
  customer_price: factories.decimal(),
15303
14935
  }); },
15304
- 'io.flow.internal.v0.models.shop': function () { return ({
15305
- id: factories.string(),
15306
- organization: factories['io.flow.common.v0.models.organization_reference'](),
15307
- myshopify_domain: factories.string(),
15308
- domain: factories.string(),
15309
- }); },
15310
- 'io.flow.internal.v0.models.shop_form': function () { return ({
15311
- organization_id: factories.string(),
15312
- token: factories.string(),
15313
- }); },
15314
- 'io.flow.internal.v0.models.shop_version': function () { return ({
15315
- id: factories.string(),
15316
- timestamp: factories.date_time_iso_8601(),
15317
- type: factories['io.flow.common.v0.enums.change_type'](),
15318
- shop: factories['io.flow.internal.v0.models.shop'](),
15319
- }); },
15320
14936
  'io.flow.internal.v0.models.shopify_catalog_publication': function () { return ({
15321
14937
  owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
15322
14938
  }); },
@@ -15327,14 +14943,6 @@ var factories = {
15327
14943
  token: factories['io.flow.internal.v0.models.shopify_channel_organization_token'](),
15328
14944
  service: factories['io.flow.internal.v0.enums.shopify_service'](),
15329
14945
  }); },
15330
- 'io.flow.internal.v0.models.shopify_check_inventory_error': function () { return ({
15331
- code: factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code'](),
15332
- messages: arrayOf(function () { return factories.string(); }),
15333
- numbers: arrayOf(function () { return factories.string(); }),
15334
- }); },
15335
- 'io.flow.internal.v0.models.shopify_code_form': function () { return ({
15336
- code: factories.string(),
15337
- }); },
15338
14946
  'io.flow.internal.v0.models.shopify_dispute': function () { return ({
15339
14947
  id: factories.string(),
15340
14948
  organization_id: factories.string(),
@@ -15362,64 +14970,28 @@ var factories = {
15362
14970
  organization: factories.string(),
15363
14971
  dispute: factories['io.flow.internal.v0.models.shopify_dispute'](),
15364
14972
  }); },
15365
- 'io.flow.internal.v0.models.shopify_experience_short_id': function () { return ({
14973
+ 'io.flow.internal.v0.models.shopify_hs10_code': function () { return ({
14974
+ country_code: factories.string(),
14975
+ code: factories.string(),
14976
+ }); },
14977
+ 'io.flow.internal.v0.models.shopify_hs10_codes': function () { return ({
15366
14978
  id: factories.string(),
15367
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
15368
- short_id: factories.string(),
14979
+ item_number: factories.string(),
14980
+ codes: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_hs10_code'](); }),
15369
14981
  }); },
15370
- 'io.flow.internal.v0.models.shopify_experience_short_id_deleted': function () { return ({
15371
- discriminator: 'shopify_experience_short_id_deleted',
14982
+ 'io.flow.internal.v0.models.shopify_hs10_codes_deleted': function () { return ({
14983
+ discriminator: 'shopify_hs10_codes_deleted',
15372
14984
  event_id: factories.string(),
15373
14985
  timestamp: factories.date_time_iso_8601(),
15374
14986
  organization: factories.string(),
15375
- short_id: factories['io.flow.internal.v0.models.shopify_experience_short_id'](),
14987
+ id: factories.string(),
15376
14988
  }); },
15377
- 'io.flow.internal.v0.models.shopify_experience_short_id_upserted': function () { return ({
15378
- discriminator: 'shopify_experience_short_id_upserted',
14989
+ 'io.flow.internal.v0.models.shopify_hs10_codes_upserted': function () { return ({
14990
+ discriminator: 'shopify_hs10_codes_upserted',
15379
14991
  event_id: factories.string(),
15380
14992
  timestamp: factories.date_time_iso_8601(),
15381
14993
  organization: factories.string(),
15382
- short_id: factories['io.flow.internal.v0.models.shopify_experience_short_id'](),
15383
- }); },
15384
- 'io.flow.internal.v0.models.shopify_gift_card_balance': function () { return ({
15385
- gift_card_id: factories.long(),
15386
- last_characters: factories.string(),
15387
- amount: factories.decimal(),
15388
- currency: factories.string(),
15389
- }); },
15390
- 'io.flow.internal.v0.models.shopify_gift_card_balance_form': function () { return ({
15391
- number: factories.string(),
15392
- }); },
15393
- 'io.flow.internal.v0.models.shopify_gift_card_payment_form': function () { return ({
15394
- code: factories.string(),
15395
- customer_id: factories.long(),
15396
- }); },
15397
- 'io.flow.internal.v0.models.shopify_gift_card_redemption': function () { return ({
15398
- adjustment_id: factories.long(),
15399
- gift_card_id: factories.long(),
15400
- last_characters: factories.string(),
15401
- amount: factories.decimal(),
15402
- currency: factories.string(),
15403
- }); },
15404
- 'io.flow.internal.v0.models.shopify_gift_card_redemption_form': function () { return ({
15405
- number: factories.string(),
15406
- amount: factories.decimal(),
15407
- currency: factories.string(),
15408
- }); },
15409
- 'io.flow.internal.v0.models.shopify_gift_card_reversal': function () { return ({
15410
- adjustment_id: factories.long(),
15411
- gift_card_id: factories.long(),
15412
- last_characters: factories.string(),
15413
- amount: factories.decimal(),
15414
- currency: factories.string(),
15415
- }); },
15416
- 'io.flow.internal.v0.models.shopify_gift_card_reversal_form': function () { return ({
15417
- number: factories.string(),
15418
- amount: factories.decimal(),
15419
- currency: factories.string(),
15420
- }); },
15421
- 'io.flow.internal.v0.models.shopify_grants_check': function () { return ({
15422
- placeholder: factories.string(),
14994
+ shopify_hs10_codes: factories['io.flow.internal.v0.models.shopify_hs10_codes'](),
15423
14995
  }); },
15424
14996
  'io.flow.internal.v0.models.shopify_incoterm_includes': function () { return ({
15425
14997
  duties: factories.boolean(),
@@ -15742,11 +15314,6 @@ var factories = {
15742
15314
  'io.flow.internal.v0.models.shopify_monitoring_tracking_url': function () { return ({
15743
15315
  url: factories.string(),
15744
15316
  }); },
15745
- 'io.flow.internal.v0.models.shopify_order_authorization': function () { return ({
15746
- result: factories['io.flow.payment.v0.models.authorization_result'](),
15747
- detail: factories['io.flow.internal.v0.models.shopify_order_detail'](),
15748
- redirect: factories.string(),
15749
- }); },
15750
15317
  'io.flow.internal.v0.models.shopify_order_cancel_form': function () { return ({
15751
15318
  note: factories.string(),
15752
15319
  }); },
@@ -15755,25 +15322,10 @@ var factories = {
15755
15322
  shopify_order_id: factories.long(),
15756
15323
  message: factories.string(),
15757
15324
  }); },
15758
- 'io.flow.internal.v0.models.shopify_order_content': function () { return ({
15759
- lines: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_order_line_content'](); }),
15760
- discounts: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_order_discount_content'](); }),
15761
- }); },
15762
15325
  'io.flow.internal.v0.models.shopify_order_destination_form': function () { return ({
15763
15326
  destination: factories['io.flow.common.v0.models.address'](),
15764
15327
  order_note: factories.string(),
15765
15328
  }); },
15766
- 'io.flow.internal.v0.models.shopify_order_detail': function () { return ({
15767
- organization: factories['io.flow.common.v0.models.organization_reference'](),
15768
- number: factories.string(),
15769
- order: factories['io.flow.experience.v0.models.order'](),
15770
- payments: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_payment_summary'](); }),
15771
- contents: factories['io.flow.internal.v0.models.shopify_order_content'](),
15772
- }); },
15773
- 'io.flow.internal.v0.models.shopify_order_discount_content': function () { return ({
15774
- description: factories.string(),
15775
- code: factories.string(),
15776
- }); },
15777
15329
  'io.flow.internal.v0.models.shopify_order_fulfillments_snapshot': function () { return ({
15778
15330
  id: factories.string(),
15779
15331
  organization_id: factories.string(),
@@ -15795,26 +15347,6 @@ var factories = {
15795
15347
  timestamp: factories.date_time_iso_8601(),
15796
15348
  shopify_order_fulfillments_snapshot: factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'](),
15797
15349
  }); },
15798
- 'io.flow.internal.v0.models.shopify_order_inventory_check': function () { return ({
15799
- item_number: factories.string(),
15800
- quantity: factories.long(),
15801
- order_number: factories.string(),
15802
- }); },
15803
- 'io.flow.internal.v0.models.shopify_order_line_attribute': function () { return ({
15804
- key: factories.string(),
15805
- name: factories.string(),
15806
- value: factories.string(),
15807
- }); },
15808
- 'io.flow.internal.v0.models.shopify_order_line_content': function () { return ({
15809
- item_number: factories.string(),
15810
- quantity: factories.long(),
15811
- price: factories['io.flow.common.v0.models.price_with_base'](),
15812
- total: factories['io.flow.common.v0.models.price_with_base'](),
15813
- name: factories.string(),
15814
- image_url: factories.string(),
15815
- variant_url: factories.string(),
15816
- attributes: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_order_line_attribute'](); }),
15817
- }); },
15818
15350
  'io.flow.internal.v0.models.shopify_order_risk_assessment': function () { return ({
15819
15351
  id: factories.string(),
15820
15352
  risk_level: factories.string(),
@@ -15852,28 +15384,12 @@ var factories = {
15852
15384
  organization: factories.string(),
15853
15385
  transaction: factories['io.flow.internal.v0.models.shopify_order_transaction'](),
15854
15386
  }); },
15855
- 'io.flow.internal.v0.models.shopify_organization_settings': function () { return ({
15856
- id: factories.string(),
15857
- process_label: factories.boolean(),
15858
- send_order_receipt: factories.boolean(),
15859
- send_inventory_update: factories.boolean(),
15860
- }); },
15861
- 'io.flow.internal.v0.models.shopify_organization_settings_form': function () { return ({
15862
- process_label: factories.boolean(),
15863
- send_order_receipt: factories.boolean(),
15864
- send_inventory_update: factories.boolean(),
15865
- }); },
15866
15387
  'io.flow.internal.v0.models.shopify_partner_webhook': function () { return ({
15867
15388
  placeholder: factories.boolean(),
15868
15389
  }); },
15869
15390
  'io.flow.internal.v0.models.shopify_partner_webhook_raw': function () { return ({
15870
15391
  placeholder: factories.boolean(),
15871
15392
  }); },
15872
- 'io.flow.internal.v0.models.shopify_payment_summary': function () { return ({
15873
- description: factories.string(),
15874
- address: factories['io.flow.common.v0.models.address'](),
15875
- contact: factories['io.flow.common.v0.models.contact'](),
15876
- }); },
15877
15393
  'io.flow.internal.v0.models.shopify_product_bundle': function () { return ({
15878
15394
  id: factories.string(),
15879
15395
  underlying: factories['io.flow.internal.v0.models.shopify_product_bundle_underlying'](),
@@ -15955,85 +15471,17 @@ var factories = {
15955
15471
  shopify_product: factories['io.flow.shopify.external.v0.models.product'](),
15956
15472
  deleted_at: factories.date_time_iso_8601(),
15957
15473
  }); },
15958
- 'io.flow.internal.v0.models.shopify_promo_form': function () { return ({
15959
- name: factories.string(),
15960
- starts_at: factories.date_time_iso_8601(),
15961
- ends_at: factories.date_time_iso_8601(),
15962
- status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
15963
- rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
15964
- stackable_limit: factories.long(),
15965
- behaviors: arrayOf(function () { return factories['io.flow.internal.v0.enums.shopify_promotion_behavior'](); }),
15966
- }); },
15967
- 'io.flow.internal.v0.models.shopify_promotion': function () { return ({
15474
+ 'io.flow.internal.v0.models.shopify_report_file_deleted': function () { return ({
15475
+ discriminator: 'shopify_report_file_deleted',
15476
+ event_id: factories.string(),
15477
+ timestamp: factories.date_time_iso_8601(),
15968
15478
  id: factories.string(),
15969
- name: factories.string(),
15970
- starts_at: factories.date_time_iso_8601(),
15971
- ends_at: factories.date_time_iso_8601(),
15972
- status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
15973
- rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
15974
- stackable_limit: factories.long(),
15975
- behaviors: arrayOf(function () { return factories['io.flow.internal.v0.enums.shopify_promotion_behavior'](); }),
15976
- }); },
15977
- 'io.flow.internal.v0.models.shopify_promotion_attribute_value': function () { return ({
15978
- name: factories.string(),
15979
- discount: factories['io.flow.common.v0.models.money'](),
15980
- }); },
15981
- 'io.flow.internal.v0.models.shopify_promotion_fixed_amount': function () { return ({
15982
- discriminator: 'shopify_promotion_fixed_amount',
15983
- amount: factories.decimal(),
15984
- currency: factories.string(),
15985
- }); },
15986
- 'io.flow.internal.v0.models.shopify_promotion_form': function () { return ({
15987
- code: factories.string(),
15988
- }); },
15989
- 'io.flow.internal.v0.models.shopify_promotion_item_entitlement': function () { return ({
15990
- discriminator: 'shopify_promotion_item_entitlement',
15991
- q: factories.string(),
15992
- allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
15993
- }); },
15994
- 'io.flow.internal.v0.models.shopify_promotion_item_prerequisite': function () { return ({
15995
- discriminator: 'shopify_promotion_item_prerequisite',
15996
- q: factories.string(),
15997
- at_least: factories.long(),
15998
- at_most: factories.long(),
15999
- exclude_from_offer: factories.boolean(),
16000
- }); },
16001
- 'io.flow.internal.v0.models.shopify_promotion_max_amount': function () { return ({
16002
- discriminator: 'shopify_promotion_max_amount',
16003
- amount: factories.decimal(),
16004
- currency: factories.string(),
16005
- }); },
16006
- 'io.flow.internal.v0.models.shopify_promotion_max_limit': function () { return ({
16007
- discriminator: 'shopify_promotion_max_limit',
16008
- limit: factories.long(),
16009
- }); },
16010
- 'io.flow.internal.v0.models.shopify_promotion_offer': function () { return ({
16011
- discount: factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount'](),
16012
- entitlement: factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement'](),
16013
- max: arrayOf(function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_max'](); }),
16014
- }); },
16015
- 'io.flow.internal.v0.models.shopify_promotion_order_entitlement': function () { return ({
16016
- discriminator: 'shopify_promotion_order_entitlement',
16017
- components: arrayOf(function () { return factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component'](); }),
16018
- allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
16019
15479
  }); },
16020
- 'io.flow.internal.v0.models.shopify_promotion_order_prerequisite': function () { return ({
16021
- discriminator: 'shopify_promotion_order_prerequisite',
16022
- q: factories.string(),
16023
- }); },
16024
- 'io.flow.internal.v0.models.shopify_promotion_percent': function () { return ({
16025
- discriminator: 'shopify_promotion_percent',
16026
- percent: factories.long(),
16027
- }); },
16028
- 'io.flow.internal.v0.models.shopify_promotion_rule': function () { return ({
16029
- prerequisites: arrayOf(function () { return factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite'](); }),
16030
- offers: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_promotion_offer'](); }),
16031
- }); },
16032
- 'io.flow.internal.v0.models.shopify_shop_deleted': function () { return ({
16033
- discriminator: 'shopify_shop_deleted',
15480
+ 'io.flow.internal.v0.models.shopify_report_file_upserted': function () { return ({
15481
+ discriminator: 'shopify_report_file_upserted',
16034
15482
  event_id: factories.string(),
16035
15483
  timestamp: factories.date_time_iso_8601(),
16036
- id: factories.string(),
15484
+ shopify_report_file: factories['io.flow.internal.v0.models.report_file'](),
16037
15485
  }); },
16038
15486
  'io.flow.internal.v0.models.shopify_shop_statistics': function () { return ({
16039
15487
  id: factories.string(),
@@ -16044,12 +15492,6 @@ var factories = {
16044
15492
  catalog_products_count: factories.long(),
16045
15493
  initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
16046
15494
  }); },
16047
- 'io.flow.internal.v0.models.shopify_shop_upserted': function () { return ({
16048
- discriminator: 'shopify_shop_upserted',
16049
- event_id: factories.string(),
16050
- timestamp: factories.date_time_iso_8601(),
16051
- shop: factories['io.flow.internal.v0.models.shop'](),
16052
- }); },
16053
15495
  'io.flow.internal.v0.models.shopify_store_detail': function () { return ({
16054
15496
  shopify_domain: factories.string(),
16055
15497
  shop_id: factories.string(),
@@ -16058,19 +15500,12 @@ var factories = {
16058
15500
  id: factories.string(),
16059
15501
  request: factories.object(),
16060
15502
  }); },
16061
- 'io.flow.internal.v0.models.shopify_webhook': function () { return ({
16062
- id: factories.string(),
16063
- shop_id: factories.string(),
16064
- address: factories.string(),
16065
- topic: factories['io.flow.shopify.external.v0.enums.topic'](),
16066
- }); },
16067
- 'io.flow.internal.v0.models.shopify_webhook_event': function () { return ({
16068
- placeholder: factories.string(),
16069
- }); },
16070
- 'io.flow.internal.v0.models.shopify_webhook_form': function () { return ({
16071
- myshopify_domain: factories.string(),
16072
- address: factories.string(),
16073
- topic: factories['io.flow.shopify.external.v0.enums.topic'](),
15503
+ 'io.flow.internal.v0.models.shopper_breakdown': function () { return ({
15504
+ product: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
15505
+ tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
15506
+ duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
15507
+ discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
15508
+ total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
16074
15509
  }); },
16075
15510
  'io.flow.internal.v0.models.shopper_fees': function () { return ({
16076
15511
  fuel: factories.decimal(),
@@ -16243,14 +15678,6 @@ var factories = {
16243
15678
  discriminator: 'statement_creation_metadata',
16244
15679
  period: factories['io.flow.common.v0.models.datetime_range'](),
16245
15680
  }); },
16246
- 'io.flow.internal.v0.models.store_connection': function () { return ({
16247
- organization: factories['io.flow.common.v0.models.organization_reference'](),
16248
- id: factories.string(),
16249
- domain: factories.string(),
16250
- }); },
16251
- 'io.flow.internal.v0.models.store_connection_form': function () { return ({
16252
- organization: factories.string(),
16253
- }); },
16254
15681
  'io.flow.internal.v0.models.string_feature_default_value': function () { return ({
16255
15682
  discriminator: 'string',
16256
15683
  value: factories.string(),
@@ -17254,25 +16681,6 @@ var factories = {
17254
16681
  timestamp: factories.date_time_iso_8601(),
17255
16682
  user: factories['io.flow.common.v0.models.user'](),
17256
16683
  }); },
17257
- 'io.flow.internal.v0.models.v1_checkout': function () { return ({
17258
- id: factories.string(),
17259
- organization: factories['io.flow.common.v0.models.organization_summary'](),
17260
- builder: factories['io.flow.experience.v0.models.order_builder'](),
17261
- platform: factories['io.flow.internal.v0.models.checkout_platform_data'](),
17262
- content: factories['io.flow.internal.v0.models.checkout_content'](),
17263
- destinations: arrayOf(function () { return factories['io.flow.reference.v0.models.country'](); }),
17264
- optins: arrayOf(function () { return factories['io.flow.internal.v0.models.optin_prompt'](); }),
17265
- addresses: arrayOf(function () { return factories['io.flow.experience.v0.models.address_configuration'](); }),
17266
- features: factories['io.flow.internal.v0.models.feature_value_result'](),
17267
- configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
17268
- cart: factories['io.flow.shopify.v0.models.shopify_cart'](),
17269
- customer: factories['io.flow.customer.v0.models.customer'](),
17270
- address_book: factories['io.flow.customer.v0.models.customer_address_book'](),
17271
- gift_card_program: factories['io.flow.internal.v0.models.gift_card_program'](),
17272
- loyalty_program: factories['io.flow.internal.v0.models.loyalty_program'](),
17273
- payment: factories['io.flow.internal.v0.models.checkout_payment'](),
17274
- customer_bundle: factories['io.flow.customer.v0.models.customer_bundle'](),
17275
- }); },
17276
16684
  'io.flow.internal.v0.models.validated_address': function () { return ({
17277
16685
  company_name: factories.string(),
17278
16686
  person_name: factories.string(),
@@ -17319,11 +16727,6 @@ var factories = {
17319
16727
  direction: factories['io.flow.label.v0.enums.direction'](),
17320
16728
  package_dimensions_source: factories['io.flow.label.v0.enums.package_dimensions_source'](),
17321
16729
  }); },
17322
- 'io.flow.internal.v0.models.validation_character_length': function () { return ({
17323
- discriminator: 'validation_character_length',
17324
- min: factories.long(),
17325
- max: factories.long(),
17326
- }); },
17327
16730
  'io.flow.internal.v0.models.vies_result': function () { return ({
17328
16731
  country: factories.string(),
17329
16732
  number: factories.string(),
@@ -17491,15 +16894,6 @@ var factories = {
17491
16894
  ]);
17492
16895
  return f();
17493
16896
  },
17494
- 'io.flow.internal.v0.unions.content_item': function () {
17495
- var f = faker.helpers.arrayElement([
17496
- function () { return factories['io.flow.internal.v0.models.dict'](); },
17497
- function () { return factories['io.flow.internal.v0.models.href'](); },
17498
- function () { return factories['io.flow.internal.v0.models.content_label'](); },
17499
- function () { return factories['io.flow.internal.v0.models.load'](); },
17500
- ]);
17501
- return f();
17502
- },
17503
16897
  'io.flow.internal.v0.unions.decline_reason': function () {
17504
16898
  var f = faker.helpers.arrayElement([
17505
16899
  function () { return factories['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'](); },
@@ -17612,12 +17006,8 @@ var factories = {
17612
17006
  function () { return factories['io.flow.internal.v0.models.channel_order_acceptance_upserted'](); },
17613
17007
  function () { return factories['io.flow.internal.v0.models.channel_order_acceptance_deleted'](); },
17614
17008
  function () { return factories['io.flow.internal.v0.models.channel_order_acceptance_failed'](); },
17615
- function () { return factories['io.flow.internal.v0.models.checkout_configuration_upserted'](); },
17616
- function () { return factories['io.flow.internal.v0.models.checkout_configuration_deleted'](); },
17617
17009
  function () { return factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted'](); },
17618
17010
  function () { return factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted'](); },
17619
- function () { return factories['io.flow.internal.v0.models.localized_content_upserted'](); },
17620
- function () { return factories['io.flow.internal.v0.models.localization_upserted'](); },
17621
17011
  function () { return factories['io.flow.internal.v0.models.internal_channel_rate_deleted'](); },
17622
17012
  function () { return factories['io.flow.internal.v0.models.internal_channel_rate_upserted'](); },
17623
17013
  function () { return factories['io.flow.internal.v0.models.rate_deleted'](); },
@@ -17718,8 +17108,6 @@ var factories = {
17718
17108
  function () { return factories['io.flow.internal.v0.models.item_harmonization_upserted'](); },
17719
17109
  function () { return factories['io.flow.internal.v0.models.item_harmonization_deleted'](); },
17720
17110
  function () { return factories['io.flow.internal.v0.models.harmonization_classification_statistics_published'](); },
17721
- function () { return factories['io.flow.internal.v0.models.issuer_upserted'](); },
17722
- function () { return factories['io.flow.internal.v0.models.issuer_deleted'](); },
17723
17111
  function () { return factories['io.flow.internal.v0.models.item_form_import_request'](); },
17724
17112
  function () { return factories['io.flow.internal.v0.models.label_request_error_upserted'](); },
17725
17113
  function () { return factories['io.flow.internal.v0.models.label_request_error_deleted'](); },
@@ -17817,10 +17205,8 @@ var factories = {
17817
17205
  function () { return factories['io.flow.internal.v0.models.restriction_rule_effect_deleted'](); },
17818
17206
  function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](); },
17819
17207
  function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'](); },
17820
- function () { return factories['io.flow.internal.v0.models.shopify_shop_upserted'](); },
17821
- function () { return factories['io.flow.internal.v0.models.shopify_shop_deleted'](); },
17822
- function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](); },
17823
- function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted'](); },
17208
+ function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted'](); },
17209
+ function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted'](); },
17824
17210
  function () { return factories['io.flow.internal.v0.models.shopify_markets_order_upserted'](); },
17825
17211
  function () { return factories['io.flow.internal.v0.models.shopify_markets_order_deleted'](); },
17826
17212
  function () { return factories['io.flow.internal.v0.models.shopify_markets_shop_upserted'](); },
@@ -17866,6 +17252,8 @@ var factories = {
17866
17252
  function () { return factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](); },
17867
17253
  function () { return factories['io.flow.internal.v0.models.shopify_dispute_upserted'](); },
17868
17254
  function () { return factories['io.flow.internal.v0.models.shopify_dispute_deleted'](); },
17255
+ function () { return factories['io.flow.internal.v0.models.shopify_report_file_upserted'](); },
17256
+ function () { return factories['io.flow.internal.v0.models.shopify_report_file_deleted'](); },
17869
17257
  function () { return factories['io.flow.internal.v0.models.stripe_authorization_deleted'](); },
17870
17258
  function () { return factories['io.flow.internal.v0.models.stripe_authorization_upserted'](); },
17871
17259
  function () { return factories['io.flow.internal.v0.models.stripe_reversal_deleted'](); },
@@ -18048,19 +17436,6 @@ var factories = {
18048
17436
  ]);
18049
17437
  return f();
18050
17438
  },
18051
- 'io.flow.internal.v0.unions.localizable_content': function () {
18052
- var f = faker.helpers.arrayElement([
18053
- function () { return factories['io.flow.internal.v0.models.localizable_content_reference'](); },
18054
- function () { return factories['io.flow.internal.v0.models.localization'](); },
18055
- ]);
18056
- return f();
18057
- },
18058
- 'io.flow.internal.v0.unions.optin_prompt_display': function () {
18059
- var f = faker.helpers.arrayElement([
18060
- function () { return factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](); },
18061
- ]);
18062
- return f();
18063
- },
18064
17439
  'io.flow.internal.v0.unions.order_action_form': function () {
18065
17440
  var f = faker.helpers.arrayElement([
18066
17441
  function () { return factories['io.flow.internal.v0.models.whole_order_action_form'](); },
@@ -18194,34 +17569,6 @@ var factories = {
18194
17569
  ]);
18195
17570
  return f();
18196
17571
  },
18197
- 'io.flow.internal.v0.unions.shopify_promotion_offer_discount': function () {
18198
- var f = faker.helpers.arrayElement([
18199
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount'](); },
18200
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_percent'](); },
18201
- ]);
18202
- return f();
18203
- },
18204
- 'io.flow.internal.v0.unions.shopify_promotion_offer_entitlement': function () {
18205
- var f = faker.helpers.arrayElement([
18206
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement'](); },
18207
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement'](); },
18208
- ]);
18209
- return f();
18210
- },
18211
- 'io.flow.internal.v0.unions.shopify_promotion_offer_max': function () {
18212
- var f = faker.helpers.arrayElement([
18213
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_limit'](); },
18214
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_amount'](); },
18215
- ]);
18216
- return f();
18217
- },
18218
- 'io.flow.internal.v0.unions.shopify_promotion_prerequisite': function () {
18219
- var f = faker.helpers.arrayElement([
18220
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite'](); },
18221
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite'](); },
18222
- ]);
18223
- return f();
18224
- },
18225
17572
  'io.flow.internal.v0.unions.simplified_classification_taxonomy': function () {
18226
17573
  var f = faker.helpers.arrayElement([
18227
17574
  function () { return factories['io.flow.internal.v0.models.simplified_taxonomy_category'](); },
@@ -18319,12 +17666,6 @@ var factories = {
18319
17666
  ]);
18320
17667
  return f();
18321
17668
  },
18322
- 'io.flow.internal.v0.unions.validation_rule': function () {
18323
- var f = faker.helpers.arrayElement([
18324
- function () { return factories['io.flow.internal.v0.models.validation_character_length'](); },
18325
- ]);
18326
- return f();
18327
- },
18328
17669
  'io.flow.inventory.v0.enums.aggregate': function () { return faker.helpers.arrayElement(['maximum', 'minimum']); },
18329
17670
  'io.flow.inventory.v0.enums.inventory_status': function () { return faker.helpers.arrayElement(['has_inventory', 'no_inventory']); },
18330
17671
  'io.flow.inventory.v0.enums.update_type': function () { return faker.helpers.arrayElement(['change', 'set']); },
@@ -18996,61 +18337,6 @@ var factories = {
18996
18337
  ]);
18997
18338
  return f();
18998
18339
  },
18999
- 'io.flow.order.management.event.v0.models.fulfillment_item_allocation_details': function () { return ({
19000
- item_number: factories.string(),
19001
- line_number: factories.long(),
19002
- levies: factories['io.flow.common.v0.models.price_with_base'](),
19003
- total: factories['io.flow.common.v0.models.price_with_base'](),
19004
- }); },
19005
- 'io.flow.order.management.event.v0.models.order_placed': function () { return ({
19006
- discriminator: 'order_placed',
19007
- event_id: factories.string(),
19008
- timestamp: factories.date_time_iso_8601(),
19009
- organization: factories.string(),
19010
- order_number: factories.string(),
19011
- order: factories['io.flow.experience.v0.models.order'](),
19012
- allocation: factories['io.flow.experience.v0.models.allocation_v2'](),
19013
- }); },
19014
- 'io.flow.order.management.event.v0.models.order_placed_v2': function () { return ({
19015
- discriminator: 'order_placed_v2',
19016
- event_id: factories.string(),
19017
- timestamp: factories.date_time_iso_8601(),
19018
- organization: factories.string(),
19019
- order_placed: factories['io.flow.order.management.v0.models.order_placed_details'](),
19020
- }); },
19021
- 'io.flow.order.management.event.v0.models.ready_to_fulfill': function () { return ({
19022
- discriminator: 'ready_to_fulfill',
19023
- event_id: factories.string(),
19024
- timestamp: factories.date_time_iso_8601(),
19025
- organization: factories.string(),
19026
- order_number: factories.string(),
19027
- order: factories['io.flow.experience.v0.models.order'](),
19028
- fulfillments: arrayOf(function () { return factories['io.flow.order.management.v0.models.fulfillment'](); }),
19029
- fulfillment_item_allocation_details: arrayOf(function () { return factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](); }),
19030
- }); },
19031
- 'io.flow.order.management.event.v0.models.ready_to_fulfill_details': function () { return ({
19032
- id: factories.string(),
19033
- order_number: factories.string(),
19034
- order: factories['io.flow.experience.v0.models.order'](),
19035
- fulfillments: arrayOf(function () { return factories['io.flow.order.management.v0.models.fulfillment'](); }),
19036
- fulfillment_item_allocation_details: arrayOf(function () { return factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](); }),
19037
- }); },
19038
- 'io.flow.order.management.event.v0.models.ready_to_fulfill_v2': function () { return ({
19039
- discriminator: 'ready_to_fulfill_v2',
19040
- event_id: factories.string(),
19041
- timestamp: factories.date_time_iso_8601(),
19042
- organization: factories.string(),
19043
- ready_to_fulfill: factories['io.flow.order.management.event.v0.models.ready_to_fulfill_details'](),
19044
- }); },
19045
- 'io.flow.order.management.event.v0.unions.order_management_event': function () {
19046
- var f = faker.helpers.arrayElement([
19047
- function () { return factories['io.flow.order.management.event.v0.models.order_placed'](); },
19048
- function () { return factories['io.flow.order.management.event.v0.models.order_placed_v2'](); },
19049
- function () { return factories['io.flow.order.management.event.v0.models.ready_to_fulfill'](); },
19050
- function () { return factories['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'](); },
19051
- ]);
19052
- return f();
19053
- },
19054
18340
  'io.flow.order.management.v0.enums.cancel_reason': function () { return faker.helpers.arrayElement(['out_of_stock', 'consumer_requested', 'flow_cancel']); },
19055
18341
  'io.flow.order.management.v0.enums.fulfillment_item_quantity_status': function () { return faker.helpers.arrayElement(['new', 'shipped', 'cancelled']); },
19056
18342
  'io.flow.order.management.v0.enums.order_change_source': function () { return faker.helpers.arrayElement(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']); },
@@ -21657,6 +20943,7 @@ var factories = {
21657
20943
  taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
21658
20944
  taxonomy_data: arrayOf(function () { return factories['io.flow.product.v0.models.product_taxonomy_data'](); }),
21659
20945
  item_numbers: arrayOf(function () { return factories.string(); }),
20946
+ highest_value_item_number: factories.string(),
21660
20947
  updated_at: factories.date_time_iso_8601(),
21661
20948
  deleted_at: factories.date_time_iso_8601(),
21662
20949
  }); },
@@ -22475,16 +21762,12 @@ var factories = {
22475
21762
  shop_id: factories.string(),
22476
21763
  product_id: factories.string(),
22477
21764
  name: factories.string(),
22478
- price: factories['io.flow.sellability.v0.models.product_sellability_price'](),
21765
+ price: factories['io.flow.common.v0.models.money'](),
22479
21766
  description: factories.string(),
22480
21767
  taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
22481
21768
  status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
22482
21769
  dry_run: factories.boolean(),
22483
21770
  }); },
22484
- 'io.flow.sellability.v0.models.product_sellability_price': function () { return ({
22485
- currency: factories.string(),
22486
- amount: factories.decimal(),
22487
- }); },
22488
21771
  'io.flow.sellability.v0.models.sellability_error': function () { return ({
22489
21772
  discriminator: 'sellability_error',
22490
21773
  code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
@@ -22501,90 +21784,6 @@ var factories = {
22501
21784
  ]);
22502
21785
  return f();
22503
21786
  },
22504
- 'io.flow.session.v0.models.cart_reference': function () { return ({
22505
- id: factories.string(),
22506
- }); },
22507
- 'io.flow.session.v0.models.local_session': function () { return ({
22508
- country: factories['io.flow.reference.v0.models.country'](),
22509
- currency: factories['io.flow.reference.v0.models.currency'](),
22510
- language: factories['io.flow.reference.v0.models.language'](),
22511
- locale: factories['io.flow.reference.v0.models.locale'](),
22512
- experience: factories['io.flow.experience.v0.models.experience_geo'](),
22513
- }); },
22514
- 'io.flow.session.v0.models.organization_session': function () { return ({
22515
- discriminator: 'organization_session',
22516
- id: factories.string(),
22517
- organization: factories.string(),
22518
- visitor: factories['io.flow.session.v0.models.session_visitor'](),
22519
- visit: factories['io.flow.session.v0.models.session_visit'](),
22520
- environment: factories['io.flow.common.v0.enums.environment'](),
22521
- attributes: objectOf(function () { return factories.string(); }),
22522
- ip: factories.string(),
22523
- local: factories['io.flow.session.v0.models.local_session'](),
22524
- geo: factories['io.flow.session.v0.models.session_geo'](),
22525
- experience: factories['io.flow.experience.v0.models.experience_geo'](),
22526
- format: factories['io.flow.session.v0.models.session_format'](),
22527
- }); },
22528
- 'io.flow.session.v0.models.organization_session_authorization': function () { return ({
22529
- discriminator: 'organization_session_authorization',
22530
- organization: factories['io.flow.common.v0.models.organization_reference'](),
22531
- environment: factories['io.flow.common.v0.enums.environment'](),
22532
- }); },
22533
- 'io.flow.session.v0.models.session_authorization_form': function () { return ({
22534
- session: factories.string(),
22535
- }); },
22536
- 'io.flow.session.v0.models.session_currency_format': function () { return ({
22537
- symbol: factories['io.flow.common.v0.enums.currency_symbol_format'](),
22538
- label_formatters: arrayOf(function () { return factories['io.flow.common.v0.enums.currency_label_formatter'](); }),
22539
- }); },
22540
- 'io.flow.session.v0.models.session_expiration_config': function () { return ({
22541
- unit: factories['io.flow.common.v0.enums.unit_of_time'](),
22542
- value: factories.long(),
22543
- }); },
22544
- 'io.flow.session.v0.models.session_form': function () { return ({
22545
- ip: factories.string(),
22546
- experience: factories.string(),
22547
- country: factories.string(),
22548
- currency: factories.string(),
22549
- language: factories.string(),
22550
- locale: factories.string(),
22551
- attributes: objectOf(function () { return factories.string(); }),
22552
- }); },
22553
- 'io.flow.session.v0.models.session_format': function () { return ({
22554
- currency: factories['io.flow.session.v0.models.session_currency_format'](),
22555
- }); },
22556
- 'io.flow.session.v0.models.session_geo': function () { return ({
22557
- country: factories['io.flow.reference.v0.models.country'](),
22558
- currency: factories['io.flow.reference.v0.models.currency'](),
22559
- language: factories['io.flow.reference.v0.models.language'](),
22560
- locale: factories['io.flow.reference.v0.models.locale'](),
22561
- }); },
22562
- 'io.flow.session.v0.models.session_put_form': function () { return ({
22563
- ip: factories.string(),
22564
- experience: factories.string(),
22565
- country: factories.string(),
22566
- currency: factories.string(),
22567
- language: factories.string(),
22568
- locale: factories.string(),
22569
- attributes: objectOf(function () { return factories.string(); }),
22570
- }); },
22571
- 'io.flow.session.v0.models.session_visit': function () { return ({
22572
- id: factories.string(),
22573
- expires_at: factories.date_time_iso_8601(),
22574
- }); },
22575
- 'io.flow.session.v0.models.session_visitor': function () { return ({
22576
- id: factories.string(),
22577
- }); },
22578
- 'io.flow.session.v0.unions.session': function () {
22579
- var f = faker.helpers.arrayElement([function () { return factories['io.flow.session.v0.models.organization_session'](); }]);
22580
- return f();
22581
- },
22582
- 'io.flow.session.v0.unions.session_authorization': function () {
22583
- var f = faker.helpers.arrayElement([
22584
- function () { return factories['io.flow.session.v0.models.organization_session_authorization'](); },
22585
- ]);
22586
- return f();
22587
- },
22588
21787
  'io.flow.shopify.external.v0.enums.cancel_reason': function () { return faker.helpers.arrayElement(['customer', 'fraud', 'inventory', 'declined', 'other']); },
22589
21788
  'io.flow.shopify.external.v0.enums.discount_status': function () { return faker.helpers.arrayElement(['enabled', 'disabled', 'depleted']); },
22590
21789
  'io.flow.shopify.external.v0.enums.discount_type': function () { return faker.helpers.arrayElement(['fixed_amount', 'percentage', 'shipping']); },
@@ -23847,7 +23046,7 @@ var factories = {
23847
23046
  'sync_product_catalog',
23848
23047
  'shopify_webhook',
23849
23048
  ]); },
23850
- 'io.flow.shopify.markets.internal.v0.enums.product_status': function () { return faker.helpers.arrayElement(['active', 'archived', 'draft']); },
23049
+ 'io.flow.shopify.markets.internal.v0.enums.product_status': function () { return faker.helpers.arrayElement(['active', 'archived', 'draft', 'unlisted']); },
23851
23050
  'io.flow.shopify.markets.internal.v0.enums.shopify_markets_dangerous_goods': function () { return faker.helpers.arrayElement([
23852
23051
  'aerosols',
23853
23052
  'air_bag_inflators_or_seat_belt_pretensioners',
@@ -23962,6 +23161,15 @@ var factories = {
23962
23161
  origin: factories.string(),
23963
23162
  destination: factories.string(),
23964
23163
  }); },
23164
+ 'io.flow.shopify.markets.internal.v0.models.shopify_hs10_code': function () { return ({
23165
+ country_code: factories.string(),
23166
+ code: factories.string(),
23167
+ }); },
23168
+ 'io.flow.shopify.markets.internal.v0.models.shopify_hs10_codes': function () { return ({
23169
+ id: factories.string(),
23170
+ item_number: factories.string(),
23171
+ codes: arrayOf(function () { return factories['io.flow.shopify.markets.internal.v0.models.shopify_hs10_code'](); }),
23172
+ }); },
23965
23173
  'io.flow.shopify.markets.internal.v0.models.shopify_markets_best_selling_product': function () { return ({
23966
23174
  id: factories.string(),
23967
23175
  }); },
@@ -24951,243 +24159,6 @@ var factories = {
24951
24159
  ]);
24952
24160
  return f();
24953
24161
  },
24954
- 'io.flow.shopify.v0.enums.shopify_grant': function () { return faker.helpers.arrayElement(['customer', 'discount', 'gift_card', 'metafield', 'order']); },
24955
- 'io.flow.shopify.v0.enums.shopify_localization_method': function () { return faker.helpers.arrayElement(['api', 'ssr']); },
24956
- 'io.flow.shopify.v0.enums.shopify_sync_check': function () { return faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']); },
24957
- 'io.flow.shopify.v0.models.flow_center_reference': function () { return ({
24958
- key: factories.string(),
24959
- }); },
24960
- 'io.flow.shopify.v0.models.geo_form': function () { return ({
24961
- country: factories.string(),
24962
- currency: factories.string(),
24963
- language: factories.string(),
24964
- locale: factories.string(),
24965
- experience: factories.string(),
24966
- }); },
24967
- 'io.flow.shopify.v0.models.shopify_cart': function () { return ({
24968
- id: factories.string(),
24969
- items: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_cart_item'](); }),
24970
- item_count: factories.long(),
24971
- total_price: factories.long(),
24972
- local: factories['io.flow.shopify.v0.models.shopify_local_cart_metadata'](),
24973
- attributes: factories.object(),
24974
- note: factories.string(),
24975
- requires_shipping: factories.boolean(),
24976
- total_weight: factories.long(),
24977
- }); },
24978
- 'io.flow.shopify.v0.models.shopify_cart_add_multiple_form': function () { return ({
24979
- discriminator: 'shopify_cart_add_multiple_form',
24980
- items: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](); }),
24981
- attributes: objectOf(function () { return factories.string(); }),
24982
- }); },
24983
- 'io.flow.shopify.v0.models.shopify_cart_add_single_form': function () { return ({
24984
- discriminator: 'shopify_cart_add_single_form',
24985
- id: factories.long(),
24986
- quantity: factories.long(),
24987
- properties: objectOf(function () { return factories.string(); }),
24988
- }); },
24989
- 'io.flow.shopify.v0.models.shopify_cart_change_form': function () { return ({
24990
- quantity: factories.long(),
24991
- line: factories.long(),
24992
- id: factories.long(),
24993
- properties: objectOf(function () { return factories.string(); }),
24994
- }); },
24995
- 'io.flow.shopify.v0.models.shopify_cart_conversion': function () { return ({
24996
- flow: factories['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'](),
24997
- shopify: factories['io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart'](),
24998
- }); },
24999
- 'io.flow.shopify.v0.models.shopify_cart_conversion_flow_order': function () { return ({
25000
- order: factories['io.flow.experience.v0.models.order'](),
25001
- errors: arrayOf(function () { return factories['io.flow.experience.v0.models.order_error'](); }),
25002
- }); },
25003
- 'io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart': function () { return ({
25004
- cart: factories['io.flow.shopify.external.v0.models.shopify_external_cart'](),
25005
- }); },
25006
- 'io.flow.shopify.v0.models.shopify_cart_item': function () { return ({
25007
- id: factories.string(),
25008
- handle: factories.string(),
25009
- line_price: factories.double(),
25010
- price: factories.long(),
25011
- product_id: factories.long(),
25012
- product_title: factories.string(),
25013
- quantity: factories.long(),
25014
- title: factories.string(),
25015
- url: factories.string(),
25016
- variant_id: factories.long(),
25017
- local: factories['io.flow.shopify.v0.models.shopify_local_cart_item_metadata'](),
25018
- gift_card: factories.boolean(),
25019
- image: factories.string(),
25020
- product_description: factories.string(),
25021
- product_type: factories.string(),
25022
- properties: objectOf(function () { return factories.string(); }),
25023
- requires_shipping: factories.boolean(),
25024
- sku: factories.string(),
25025
- variant_title: factories.string(),
25026
- variant_options: arrayOf(function () { return factories.string(); }),
25027
- vendor: factories.string(),
25028
- }); },
25029
- 'io.flow.shopify.v0.models.shopify_customer_metafield_value': function () { return ({
25030
- flow_consumer_id: factories.string(),
25031
- }); },
25032
- 'io.flow.shopify.v0.models.shopify_item_event_bucket': function () { return ({
25033
- discriminator: 'shopify_item_event_bucket',
25034
- range: factories['io.flow.common.v0.models.datetime_range'](),
25035
- count: factories.long(),
25036
- data: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_item_event_data'](); }),
25037
- }); },
25038
- 'io.flow.shopify.v0.models.shopify_item_event_data': function () { return ({
25039
- created_at: factories.date_time_iso_8601(),
25040
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
25041
- item: factories['io.flow.common.v0.models.catalog_item_summary'](),
25042
- }); },
25043
- 'io.flow.shopify.v0.models.shopify_line': function () { return ({
25044
- variant_id: factories.long(),
25045
- quantity: factories.long(),
25046
- price: factories['io.flow.shopify.v0.models.shopify_price'](),
25047
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
25048
- price_source: factories['io.flow.common.v0.unions.price_source'](),
25049
- }); },
25050
- 'io.flow.shopify.v0.models.shopify_local_cart_item_metadata': function () { return ({
25051
- line_price: factories['io.flow.common.v0.models.price_with_base'](),
25052
- price: factories['io.flow.common.v0.models.price_with_base'](),
25053
- }); },
25054
- 'io.flow.shopify.v0.models.shopify_local_cart_metadata': function () { return ({
25055
- total_price: factories['io.flow.common.v0.models.price_with_base'](),
25056
- promotions: factories['io.flow.experience.v0.models.promotions'](),
25057
- rules: factories['io.flow.experience.v0.models.order_rules_summary'](),
25058
- subtotal: factories['io.flow.common.v0.models.price_with_base'](),
25059
- vat: factories['io.flow.common.v0.models.price_with_base'](),
25060
- duty: factories['io.flow.common.v0.models.price_with_base'](),
25061
- discount: factories['io.flow.common.v0.models.price_with_base'](),
25062
- }); },
25063
- 'io.flow.shopify.v0.models.shopify_local_price_metadata': function () { return ({
25064
- price: factories['io.flow.common.v0.models.price_with_base'](),
25065
- }); },
25066
- 'io.flow.shopify.v0.models.shopify_localization_setting': function () { return ({
25067
- id: factories.string(),
25068
- method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
25069
- datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
25070
- }); },
25071
- 'io.flow.shopify.v0.models.shopify_localization_setting_form': function () { return ({
25072
- method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
25073
- datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
25074
- }); },
25075
- 'io.flow.shopify.v0.models.shopify_localized_order': function () { return ({
25076
- id: factories.long(),
25077
- lines: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_line'](); }),
25078
- prices: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_price'](); }),
25079
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
25080
- allocation_details: arrayOf(function () { return factories['io.flow.experience.v0.unions.allocation_detail'](); }),
25081
- merchant_of_record: factories['io.flow.common.v0.enums.order_merchant_of_record'](),
25082
- merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
25083
- incoterm: factories['io.flow.common.v0.enums.incoterm'](),
25084
- flow_order_id: factories.string(),
25085
- tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
25086
- geo: factories['io.flow.experience.v0.models.order_geo'](),
25087
- }); },
25088
- 'io.flow.shopify.v0.models.shopify_localized_variant': function () { return ({
25089
- id: factories.long(),
25090
- handle: factories.string(),
25091
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
25092
- prices: factories['io.flow.shopify.v0.models.shopify_localized_variant_prices'](),
25093
- status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
25094
- inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
25095
- }); },
25096
- 'io.flow.shopify.v0.models.shopify_localized_variant_prices': function () { return ({
25097
- item: factories['io.flow.shopify.v0.models.shopify_price'](),
25098
- compare_at: factories['io.flow.shopify.v0.models.shopify_price'](),
25099
- vat: factories['io.flow.shopify.v0.models.shopify_price'](),
25100
- duty: factories['io.flow.shopify.v0.models.shopify_price'](),
25101
- }); },
25102
- 'io.flow.shopify.v0.models.shopify_location_flow_center_mapping': function () { return ({
25103
- id: factories.string(),
25104
- shopify_location: factories['io.flow.shopify.v0.models.shopify_location_reference'](),
25105
- flow_center: factories['io.flow.shopify.v0.models.flow_center_reference'](),
25106
- }); },
25107
- 'io.flow.shopify.v0.models.shopify_location_flow_center_mapping_form': function () { return ({
25108
- shopify_location_id: factories.long(),
25109
- flow_center_key: factories.string(),
25110
- }); },
25111
- 'io.flow.shopify.v0.models.shopify_location_reference': function () { return ({
25112
- id: factories.string(),
25113
- }); },
25114
- 'io.flow.shopify.v0.models.shopify_order_attributes_form': function () { return ({
25115
- attributes: objectOf(function () { return factories.string(); }),
25116
- }); },
25117
- 'io.flow.shopify.v0.models.shopify_order_delivery_metafield': function () { return ({
25118
- key: factories.string(),
25119
- items: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_order_delivery_metafield_item'](); }),
25120
- service: factories['io.flow.fulfillment.v0.models.service_summary'](),
25121
- window: factories['io.flow.fulfillment.v0.models.delivery_window'](),
25122
- liability: factories['io.flow.fulfillment.v0.enums.ratecard_owner'](),
25123
- cost: factories['io.flow.common.v0.models.money_with_optional_base'](),
25124
- prices: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_price'](); }),
25125
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
25126
- merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
25127
- }); },
25128
- 'io.flow.shopify.v0.models.shopify_order_delivery_metafield_item': function () { return ({
25129
- number: factories.string(),
25130
- quantity: factories.long(),
25131
- }); },
25132
- 'io.flow.shopify.v0.models.shopify_order_price_attributes_metafield': function () { return ({
25133
- item_number: factories.string(),
25134
- price_attributes: objectOf(function () { return factories['io.flow.common.v0.models.price_with_base'](); }),
25135
- }); },
25136
- 'io.flow.shopify.v0.models.shopify_order_romanization_metafield': function () { return ({
25137
- destination: factories['io.flow.experience.v0.models.order_address'](),
25138
- billing: factories['io.flow.common.v0.models.billing_address'](),
25139
- }); },
25140
- 'io.flow.shopify.v0.models.shopify_price': function () { return ({
25141
- name: factories.string(),
25142
- amount: factories.double(),
25143
- cents: factories.double(),
25144
- currency: factories.string(),
25145
- label: factories.string(),
25146
- includes: factories['io.flow.common.v0.models.included_levies'](),
25147
- local: factories['io.flow.shopify.v0.models.shopify_local_price_metadata'](),
25148
- }); },
25149
- 'io.flow.shopify.v0.models.shopify_private_app': function () { return ({
25150
- id: factories.string(),
25151
- api_key: factories.string(),
25152
- password: factories.string(),
25153
- }); },
25154
- 'io.flow.shopify.v0.models.shopify_private_app_form': function () { return ({
25155
- api_key: factories.string(),
25156
- password: factories.string(),
25157
- }); },
25158
- 'io.flow.shopify.v0.models.shopify_sync_status': function () { return ({
25159
- sync_check: factories['io.flow.shopify.v0.enums.shopify_sync_check'](),
25160
- range: factories['io.flow.common.v0.models.datetime_range'](),
25161
- interval_seconds: factories.long(),
25162
- total: factories.long(),
25163
- buckets: arrayOf(function () { return factories['io.flow.shopify.v0.unions.shopify_event_bucket'](); }),
25164
- }); },
25165
- 'io.flow.shopify.v0.models.shopify_variant_flow_metafield': function () { return ({
25166
- prices_item: factories.string(),
25167
- prices_currency: factories.string(),
25168
- prices_includes: factories.string(),
25169
- prices_vat: factories.string(),
25170
- prices_vat_name: factories.string(),
25171
- prices_duty: factories.string(),
25172
- prices_compare_at: factories.string(),
25173
- prices_status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
25174
- inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
25175
- }); },
25176
- 'io.flow.shopify.v0.models.shopify_variant_inventory_metafield': function () { return ({
25177
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
25178
- status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
25179
- }); },
25180
- 'io.flow.shopify.v0.unions.shopify_cart_add_form': function () {
25181
- var f = faker.helpers.arrayElement([
25182
- function () { return factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](); },
25183
- function () { return factories['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'](); },
25184
- ]);
25185
- return f();
25186
- },
25187
- 'io.flow.shopify.v0.unions.shopify_event_bucket': function () {
25188
- var f = faker.helpers.arrayElement([function () { return factories['io.flow.shopify.v0.models.shopify_item_event_bucket'](); }]);
25189
- return f();
25190
- },
25191
24162
  'io.flow.stripe.v0.enums.account_type': function () { return faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']); },
25192
24163
  'io.flow.stripe.v0.enums.apple_pay_type': function () { return faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']); },
25193
24164
  'io.flow.stripe.v0.enums.balance_transaction_type': function () { return faker.helpers.arrayElement([
@@ -27271,10 +26242,6 @@ export var makeAccountUpsertedV2 = function () { return factories['io.flow.inter
27271
26242
  export var makeAccountingPendingOrderMetadata = function () { return factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](); };
27272
26243
  export var makeActionQuantity = function () { return factories['io.flow.internal.v0.models.action_quantity'](); };
27273
26244
  export var makeAdditionalImportTax = function () { return factories['io.flow.internal.v0.models.additional_import_tax'](); };
27274
- export var makeAddressConfigurationProvinceSetting = function () { return factories['io.flow.internal.v0.models.address_configuration_province_setting'](); };
27275
- export var makeAddressConfigurationSetting = function () { return factories['io.flow.internal.v0.models.address_configuration_setting'](); };
27276
- export var makeAddressConfigurationSettingForm = function () { return factories['io.flow.internal.v0.models.address_configuration_setting_form'](); };
27277
- export var makeAddressConfigurationSettingProvinceCode = function () { return factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](); };
27278
26245
  export var makeAdjustmentAmount = function () { return factories['io.flow.internal.v0.unions.adjustment_amount'](); };
27279
26246
  export var makeAdjustmentAmountFixed = function () { return factories['io.flow.internal.v0.models.adjustment_amount_fixed'](); };
27280
26247
  export var makeAdjustmentAmountPercentage = function () { return factories['io.flow.internal.v0.models.adjustment_amount_percentage'](); };
@@ -27348,7 +26315,6 @@ export var makeAnshItemForm = function () { return factories['io.flow.internal.v
27348
26315
  export var makeAnshItemType = function () { return factories['io.flow.internal.v0.enums.ansh_item_type'](); };
27349
26316
  export var makeAnyDangerousGoods = function () { return factories['io.flow.internal.v0.enums.any_dangerous_goods'](); };
27350
26317
  export var makeApiCallReferenceId = function () { return factories['io.flow.internal.v0.enums.api_call_reference_id'](); };
27351
- export var makeApmContent = function () { return factories['io.flow.internal.v0.models.apm_content'](); };
27352
26318
  export var makeApplePayAuthorizationPayload = function () { return factories['io.flow.internal.v0.models.apple_pay_authorization_payload'](); };
27353
26319
  export var makeApplicablePreferentialRate = function () { return factories['io.flow.internal.v0.enums.applicable_preferential_rate'](); };
27354
26320
  export var makeApplyAtValueForm = function () { return factories['io.flow.internal.v0.models.apply_at_value_form'](); };
@@ -27373,6 +26339,8 @@ export var makeBankAccountReference = function () { return factories['io.flow.in
27373
26339
  export var makeBankAccountStatus = function () { return factories['io.flow.internal.v0.enums.bank_account_status'](); };
27374
26340
  export var makeBankPayment = function () { return factories['io.flow.internal.v0.models.bank_payment'](); };
27375
26341
  export var makeBankPaymentDeletedV2 = function () { return factories['io.flow.internal.v0.models.bank_payment_deleted_v2'](); };
26342
+ export var makeBankPaymentDetail = function () { return factories['io.flow.internal.v0.models.bank_payment_detail'](); };
26343
+ export var makeBankPaymentDetailAttachment = function () { return factories['io.flow.internal.v0.models.bank_payment_detail_attachment'](); };
27376
26344
  export var makeBankPaymentForm = function () { return factories['io.flow.internal.v0.models.bank_payment_form'](); };
27377
26345
  export var makeBankPaymentOrder = function () { return factories['io.flow.internal.v0.models.bank_payment_order'](); };
27378
26346
  export var makeBankPaymentOrderDeleted = function () { return factories['io.flow.internal.v0.models.bank_payment_order_deleted'](); };
@@ -27555,7 +26523,6 @@ export var makeChargebackPaymentStatus = function () { return factories['io.flow
27555
26523
  export var makeChargebackProcessStatus = function () { return factories['io.flow.internal.v0.enums.chargeback_process_status'](); };
27556
26524
  export var makeChargebackUpserted = function () { return factories['io.flow.internal.v0.models.chargeback_upserted'](); };
27557
26525
  export var makeChargebackVersion = function () { return factories['io.flow.internal.v0.models.chargeback_version'](); };
27558
- export var makeCheckbox = function () { return factories['io.flow.internal.v0.models.checkbox'](); };
27559
26526
  export var makeCheckoutAnalytics = function () { return factories['io.flow.internal.v0.models.checkout_analytics'](); };
27560
26527
  export var makeCheckoutAsset = function () { return factories['io.flow.internal.v0.models.checkout_asset'](); };
27561
26528
  export var makeCheckoutAssetType = function () { return factories['io.flow.internal.v0.enums.checkout_asset_type'](); };
@@ -27565,22 +26532,9 @@ export var makeCheckoutBehaviorCustomerInfoEmail = function () { return factorie
27565
26532
  export var makeCheckoutBehaviorShippingAddress = function () { return factories['io.flow.internal.v0.models.checkout_behavior_shipping_address'](); };
27566
26533
  export var makeCheckoutBehaviorShippingMethod = function () { return factories['io.flow.internal.v0.models.checkout_behavior_shipping_method'](); };
27567
26534
  export var makeCheckoutConfiguration = function () { return factories['io.flow.internal.v0.models.checkout_configuration'](); };
27568
- export var makeCheckoutConfigurationDeleted = function () { return factories['io.flow.internal.v0.models.checkout_configuration_deleted'](); };
27569
26535
  export var makeCheckoutConfigurationForm = function () { return factories['io.flow.internal.v0.models.checkout_configuration_form'](); };
27570
26536
  export var makeCheckoutConfigurationReference = function () { return factories['io.flow.internal.v0.models.checkout_configuration_reference'](); };
27571
- export var makeCheckoutConfigurationUpserted = function () { return factories['io.flow.internal.v0.models.checkout_configuration_upserted'](); };
27572
- export var makeCheckoutContent = function () { return factories['io.flow.internal.v0.models.checkout_content'](); };
27573
- export var makeCheckoutContentDetails = function () { return factories['io.flow.internal.v0.models.checkout_content_details'](); };
27574
- export var makeCheckoutContentSummary = function () { return factories['io.flow.internal.v0.models.checkout_content_summary'](); };
27575
- export var makeCheckoutError = function () { return factories['io.flow.internal.v0.models.checkout_error'](); };
27576
- export var makeCheckoutErrorCode = function () { return factories['io.flow.internal.v0.enums.checkout_error_code'](); };
27577
- export var makeCheckoutMarketingContent = function () { return factories['io.flow.internal.v0.models.checkout_marketing_content'](); };
27578
- export var makeCheckoutPayment = function () { return factories['io.flow.internal.v0.models.checkout_payment'](); };
27579
- export var makeCheckoutPaymentContent = function () { return factories['io.flow.internal.v0.models.checkout_payment_content'](); };
27580
- export var makeCheckoutPlatformData = function () { return factories['io.flow.internal.v0.models.checkout_platform_data'](); };
27581
26537
  export var makeCheckoutPromptBehavior = function () { return factories['io.flow.internal.v0.enums.checkout_prompt_behavior'](); };
27582
- export var makeCheckoutRedirect = function () { return factories['io.flow.internal.v0.models.checkout_redirect'](); };
27583
- export var makeCheckoutRedirectMethod = function () { return factories['io.flow.internal.v0.enums.checkout_redirect_method'](); };
27584
26538
  export var makeCheckoutSettings = function () { return factories['io.flow.internal.v0.models.checkout_settings'](); };
27585
26539
  export var makeCheckoutShippingMethodPromptBehavior = function () { return factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'](); };
27586
26540
  export var makeCheckoutUrl = function () { return factories['io.flow.internal.v0.models.checkout_url'](); };
@@ -27645,24 +26599,6 @@ export var makeConnectReportTransferTransferType = function () { return factorie
27645
26599
  export var makeConsoleLabelRequestForm = function () { return factories['io.flow.internal.v0.models.console_label_request_form'](); };
27646
26600
  export var makeConsoleLabelValidationForm = function () { return factories['io.flow.internal.v0.unions.console_label_validation_form'](); };
27647
26601
  export var makeConsoleMarkUnresolvableForm = function () { return factories['io.flow.internal.v0.models.console_mark_unresolvable_form'](); };
27648
- export var makeConsumerOptinActivity = function () { return factories['io.flow.internal.v0.models.consumer_optin_activity'](); };
27649
- export var makeContentElementType = function () { return factories['io.flow.internal.v0.enums.content_element_type'](); };
27650
- export var makeContentItem = function () { return factories['io.flow.internal.v0.unions.content_item'](); };
27651
- export var makeContentLabel = function () { return factories['io.flow.internal.v0.models.content_label'](); };
27652
- export var makeContentSchema = function () { return factories['io.flow.internal.v0.models.content_schema'](); };
27653
- export var makeContentSchemaElement = function () { return factories['io.flow.internal.v0.models.content_schema_element'](); };
27654
- export var makeContentSchemaForm = function () { return factories['io.flow.internal.v0.models.content_schema_form'](); };
27655
- export var makeContentSchemaSummary = function () { return factories['io.flow.internal.v0.models.content_schema_summary'](); };
27656
- export var makeContentStatus = function () { return factories['io.flow.internal.v0.enums.content_status'](); };
27657
- export var makeContentType = function () { return factories['io.flow.internal.v0.enums.content_type'](); };
27658
- export var makeContentTypeCast = function () { return factories['io.flow.internal.v0.enums.content_type_cast'](); };
27659
- export var makeCountryPickerCountry = function () { return factories['io.flow.internal.v0.models.country_picker_country'](); };
27660
- export var makeCountryPickerCountryData = function () { return factories['io.flow.internal.v0.models.country_picker_country_data'](); };
27661
- export var makeCountryPickerCurrency = function () { return factories['io.flow.internal.v0.models.country_picker_currency'](); };
27662
- export var makeCountryPickerData = function () { return factories['io.flow.internal.v0.models.country_picker_data'](); };
27663
- export var makeCountryPickerDeliveryWindow = function () { return factories['io.flow.internal.v0.models.country_picker_delivery_window'](); };
27664
- export var makeCountryPickerExperienceData = function () { return factories['io.flow.internal.v0.models.country_picker_experience_data'](); };
27665
- export var makeCountryPickerPaymentMethod = function () { return factories['io.flow.internal.v0.models.country_picker_payment_method'](); };
27666
26602
  export var makeCourthouseProductSummary = function () { return factories['io.flow.internal.v0.models.courthouse_product_summary'](); };
27667
26603
  export var makeCrossdockTrackingStatus = function () { return factories['io.flow.internal.v0.enums.crossdock_tracking_status'](); };
27668
26604
  export var makeCryptoAccount = function () { return factories['io.flow.internal.v0.models.crypto_account'](); };
@@ -27685,6 +26621,7 @@ export var makeCustomsProductLabels = function () { return factories['io.flow.in
27685
26621
  export var makeDailyValue = function () { return factories['io.flow.internal.v0.models.daily_value'](); };
27686
26622
  export var makeDailyValueDeleted = function () { return factories['io.flow.internal.v0.models.daily_value_deleted'](); };
27687
26623
  export var makeDailyValueUpserted = function () { return factories['io.flow.internal.v0.models.daily_value_upserted'](); };
26624
+ export var makeDatabase = function () { return factories['io.flow.internal.v0.models.database'](); };
27688
26625
  export var makeDebugAccountingTransaction = function () { return factories['io.flow.internal.v0.models.debug_accounting_transaction'](); };
27689
26626
  export var makeDebugAccountingTransactionType = function () { return factories['io.flow.internal.v0.enums.debug_accounting_transaction_type'](); };
27690
26627
  export var makeDebugAdjustment = function () { return factories['io.flow.internal.v0.models.debug_adjustment'](); };
@@ -27724,7 +26661,6 @@ export var makeDeminimisAdjustmentType = function () { return factories['io.flow
27724
26661
  export var makeDestinationError = function () { return factories['io.flow.internal.v0.models.destination_error'](); };
27725
26662
  export var makeDhl = function () { return factories['io.flow.internal.v0.models.dhl'](); };
27726
26663
  export var makeDhlEcommerce = function () { return factories['io.flow.internal.v0.models.dhl_ecommerce'](); };
27727
- export var makeDict = function () { return factories['io.flow.internal.v0.models.dict'](); };
27728
26664
  export var makeDimensionEstimateOpsInput = function () { return factories['io.flow.internal.v0.models.dimension_estimate_ops_input'](); };
27729
26665
  export var makeDiscount = function () { return factories['io.flow.internal.v0.models.discount'](); };
27730
26666
  export var makeDiscountCode = function () { return factories['io.flow.internal.v0.models.discount_code'](); };
@@ -27872,9 +26808,6 @@ export var makeFinanceBankAccount = function () { return factories['io.flow.inte
27872
26808
  export var makeFinanceBankAccountOwner = function () { return factories['io.flow.internal.v0.models.finance_bank_account_owner'](); };
27873
26809
  export var makeFinanceBankPayment = function () { return factories['io.flow.internal.v0.models.finance_bank_payment'](); };
27874
26810
  export var makeFinancialMerchantCategory = function () { return factories['io.flow.internal.v0.models.financial_merchant_category'](); };
27875
- export var makeFinancialReportingResponsibleParty = function () { return factories['io.flow.internal.v0.enums.financial_reporting_responsible_party'](); };
27876
- export var makeFinancialReportingStatement = function () { return factories['io.flow.internal.v0.models.financial_reporting_statement'](); };
27877
- export var makeFinancialReportingStatementForm = function () { return factories['io.flow.internal.v0.models.financial_reporting_statement_form'](); };
27878
26811
  export var makeFiservAccount = function () { return factories['io.flow.internal.v0.models.fiserv_account'](); };
27879
26812
  export var makeFiservAccountModificationForm = function () { return factories['io.flow.internal.v0.models.fiserv_account_modification_form'](); };
27880
26813
  export var makeFiservAccountPutForm = function () { return factories['io.flow.internal.v0.models.fiserv_account_put_form'](); };
@@ -27886,7 +26819,6 @@ export var makeFiservMerchantModificationForm = function () { return factories['
27886
26819
  export var makeFiservMerchantPutForm = function () { return factories['io.flow.internal.v0.models.fiserv_merchant_put_form'](); };
27887
26820
  export var makeFlexeWebhook = function () { return factories['io.flow.internal.v0.models.flexe_webhook'](); };
27888
26821
  export var makeFlowAccount = function () { return factories['io.flow.internal.v0.models.flow_account'](); };
27889
- export var makeFlowApp = function () { return factories['io.flow.internal.v0.enums.flow_app'](); };
27890
26822
  export var makeFlowBillingStatement = function () { return factories['io.flow.internal.v0.models.flow_billing_statement'](); };
27891
26823
  export var makeFlowChannelOrganization = function () { return factories['io.flow.internal.v0.models.flow_channel_organization'](); };
27892
26824
  export var makeFlowLabProject = function () { return factories['io.flow.internal.v0.models.flow_lab_project'](); };
@@ -27895,7 +26827,6 @@ export var makeFlowLabProjectPutForm = function () { return factories['io.flow.i
27895
26827
  export var makeFlowLabelSetting = function () { return factories['io.flow.internal.v0.models.flow_label_setting'](); };
27896
26828
  export var makeFlowLabelSettingForm = function () { return factories['io.flow.internal.v0.models.flow_label_setting_form'](); };
27897
26829
  export var makeFlowShopValidationError = function () { return factories['io.flow.internal.v0.models.flow_shop_validation_error'](); };
27898
- export var makeFormat = function () { return factories['io.flow.internal.v0.enums.format'](); };
27899
26830
  export var makeFraudAuthorizationSummary = function () { return factories['io.flow.internal.v0.models.fraud_authorization_summary'](); };
27900
26831
  export var makeFraudPendingReview = function () { return factories['io.flow.internal.v0.models.fraud_pending_review'](); };
27901
26832
  export var makeFraudPendingReviewAuthorization = function () { return factories['io.flow.internal.v0.models.fraud_pending_review_authorization'](); };
@@ -27931,12 +26862,6 @@ export var makeFraudSummary = function () { return factories['io.flow.internal.v
27931
26862
  export var makeFtpFileDeleted = function () { return factories['io.flow.internal.v0.models.ftp_file_deleted'](); };
27932
26863
  export var makeFtpFileToProcessUploaded = function () { return factories['io.flow.internal.v0.models.ftp_file_to_process_uploaded'](); };
27933
26864
  export var makeFtpFileUpserted = function () { return factories['io.flow.internal.v0.models.ftp_file_upserted'](); };
27934
- export var makeFtpIntent = function () { return factories['io.flow.internal.v0.enums.ftp_intent'](); };
27935
- export var makeFtpProtocol = function () { return factories['io.flow.internal.v0.enums.ftp_protocol'](); };
27936
- export var makeFtpSetting = function () { return factories['io.flow.internal.v0.models.ftp_setting'](); };
27937
- export var makeFtpSettingForm = function () { return factories['io.flow.internal.v0.models.ftp_setting_form'](); };
27938
- export var makeFtpSettingVersion = function () { return factories['io.flow.internal.v0.models.ftp_setting_version'](); };
27939
- export var makeFtpSettingsPaths = function () { return factories['io.flow.internal.v0.models.ftp_settings_paths'](); };
27940
26865
  export var makeFuelSurchargeServiceFeeAmountByWeightPutForm = function () { return factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'](); };
27941
26866
  export var makeFuelSurchargeServiceFeePercentPutForm = function () { return factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'](); };
27942
26867
  export var makeFuelSurchargeServiceFeePutForm = function () { return factories['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'](); };
@@ -27972,6 +26897,7 @@ export var makeFxRevenueRecognitionRate = function () { return factories['io.flo
27972
26897
  export var makeFxRevenueRecognitionSource = function () { return factories['io.flow.internal.v0.models.fx_revenue_recognition_source'](); };
27973
26898
  export var makeGeIngestionFileStatus = function () { return factories['io.flow.internal.v0.enums.ge_ingestion_file_status'](); };
27974
26899
  export var makeGeRevenueShareTransaction = function () { return factories['io.flow.internal.v0.models.ge_revenue_share_transaction'](); };
26900
+ export var makeGeRevenueShareTransactionType = function () { return factories['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'](); };
27975
26901
  export var makeGenerateLoad = function () { return factories['io.flow.internal.v0.unions.generate_load'](); };
27976
26902
  export var makeGenerateLoadMultipleOrgs = function () { return factories['io.flow.internal.v0.models.generate_load_multiple_orgs'](); };
27977
26903
  export var makeGenerateLoadSingleOrg = function () { return factories['io.flow.internal.v0.models.generate_load_single_org'](); };
@@ -28003,7 +26929,9 @@ export var makeHarmonizationThresholdForm = function () { return factories['io.f
28003
26929
  export var makeHarmonizationUnclassifiedStatistics = function () { return factories['io.flow.internal.v0.models.harmonization_unclassified_statistics'](); };
28004
26930
  export var makeHarmonizeFullyRequestV2 = function () { return factories['io.flow.internal.v0.models.harmonize_fully_request_v2'](); };
28005
26931
  export var makeHarmonizedItemsHs6Export = function () { return factories['io.flow.internal.v0.models.harmonized_items_hs6_export'](); };
28006
- export var makeHref = function () { return factories['io.flow.internal.v0.models.href'](); };
26932
+ export var makeHoseinItem = function () { return factories['io.flow.internal.v0.models.hosein_item'](); };
26933
+ export var makeHoseinItemForm = function () { return factories['io.flow.internal.v0.models.hosein_item_form'](); };
26934
+ export var makeHoseinItemType = function () { return factories['io.flow.internal.v0.enums.hosein_item_type'](); };
28007
26935
  export var makeHs6 = function () { return factories['io.flow.internal.v0.models.hs6'](); };
28008
26936
  export var makeHs6Metadata = function () { return factories['io.flow.internal.v0.models.hs6_metadata'](); };
28009
26937
  export var makeHttpMethod = function () { return factories['io.flow.internal.v0.enums.http_method'](); };
@@ -28011,7 +26939,6 @@ export var makeImportCompleted = function () { return factories['io.flow.interna
28011
26939
  export var makeImportFailed = function () { return factories['io.flow.internal.v0.models.import_failed'](); };
28012
26940
  export var makeIndexTaskType = function () { return factories['io.flow.internal.v0.unions.index_task_type'](); };
28013
26941
  export var makeInlineAuthorizationParameters = function () { return factories['io.flow.internal.v0.unions.inline_authorization_parameters'](); };
28014
- export var makeInstallForm = function () { return factories['io.flow.internal.v0.models.install_form'](); };
28015
26942
  export var makeInternalAdyenAuthorizationDetails = function () { return factories['io.flow.internal.v0.models.internal_adyen_authorization_details'](); };
28016
26943
  export var makeInternalAfterpayAuthorizationDetails = function () { return factories['io.flow.internal.v0.models.internal_afterpay_authorization_details'](); };
28017
26944
  export var makeInternalAuthorization = function () { return factories['io.flow.internal.v0.models.internal_authorization'](); };
@@ -28046,9 +26973,6 @@ export var makeInvoiceInfoForm = function () { return factories['io.flow.interna
28046
26973
  export var makeInvoiceLine = function () { return factories['io.flow.internal.v0.models.invoice_line'](); };
28047
26974
  export var makeInvoiceLineItem = function () { return factories['io.flow.internal.v0.models.invoice_line_item'](); };
28048
26975
  export var makeInvoiceTransaction = function () { return factories['io.flow.internal.v0.models.invoice_transaction'](); };
28049
- export var makeIssuer = function () { return factories['io.flow.internal.v0.models.issuer'](); };
28050
- export var makeIssuerDeleted = function () { return factories['io.flow.internal.v0.models.issuer_deleted'](); };
28051
- export var makeIssuerUpserted = function () { return factories['io.flow.internal.v0.models.issuer_upserted'](); };
28052
26976
  export var makeItemClassification = function () { return factories['io.flow.internal.v0.models.item_classification'](); };
28053
26977
  export var makeItemClassificationAction = function () { return factories['io.flow.internal.v0.enums.item_classification_action'](); };
28054
26978
  export var makeItemClassificationForm = function () { return factories['io.flow.internal.v0.models.item_classification_form'](); };
@@ -28081,6 +27005,9 @@ export var makeItemSummary = function () { return factories['io.flow.internal.v0
28081
27005
  export var makeItemType = function () { return factories['io.flow.internal.v0.enums.item_type'](); };
28082
27006
  export var makeItemValuesForm = function () { return factories['io.flow.internal.v0.models.item_values_form'](); };
28083
27007
  export var makeJeanDemoItem = function () { return factories['io.flow.internal.v0.models.jean_demo_item'](); };
27008
+ export var makeJournal = function () { return factories['io.flow.internal.v0.models.journal'](); };
27009
+ export var makeJournalFailure = function () { return factories['io.flow.internal.v0.models.journal_failure'](); };
27010
+ export var makeJournalOperation = function () { return factories['io.flow.internal.v0.enums.journal_operation'](); };
28084
27011
  export var makeKey = function () { return factories['io.flow.internal.v0.models.key'](); };
28085
27012
  export var makeKeyReference = function () { return factories['io.flow.internal.v0.models.key_reference'](); };
28086
27013
  export var makeKeywordType = function () { return factories['io.flow.internal.v0.enums.keyword_type'](); };
@@ -28128,7 +27055,6 @@ export var makeLabelTransaction = function () { return factories['io.flow.intern
28128
27055
  export var makeLabelTransactionDeleted = function () { return factories['io.flow.internal.v0.models.label_transaction_deleted'](); };
28129
27056
  export var makeLabelTransactionType = function () { return factories['io.flow.internal.v0.enums.label_transaction_type'](); };
28130
27057
  export var makeLabelTransactionUpserted = function () { return factories['io.flow.internal.v0.models.label_transaction_upserted'](); };
28131
- export var makeLabeledContent = function () { return factories['io.flow.internal.v0.models.labeled_content'](); };
28132
27058
  export var makeLabelsPrediction = function () { return factories['io.flow.internal.v0.models.labels_prediction'](); };
28133
27059
  export var makeLandedCostItem = function () { return factories['io.flow.internal.v0.models.landed_cost_item'](); };
28134
27060
  export var makeLandmark = function () { return factories['io.flow.internal.v0.models.landmark'](); };
@@ -28145,21 +27071,9 @@ export var makeLiabilityRemittancePlanUpserted = function () { return factories[
28145
27071
  export var makeLiabilityType = function () { return factories['io.flow.internal.v0.enums.liability_type'](); };
28146
27072
  export var makeLineActionForm = function () { return factories['io.flow.internal.v0.models.line_action_form'](); };
28147
27073
  export var makeLineActionQuantities = function () { return factories['io.flow.internal.v0.models.line_action_quantities'](); };
28148
- export var makeLoad = function () { return factories['io.flow.internal.v0.models.load'](); };
28149
- export var makeLocalizableContent = function () { return factories['io.flow.internal.v0.unions.localizable_content'](); };
28150
- export var makeLocalizableContentReference = function () { return factories['io.flow.internal.v0.models.localizable_content_reference'](); };
28151
- export var makeLocalization = function () { return factories['io.flow.internal.v0.models.localization'](); };
28152
- export var makeLocalizationForm = function () { return factories['io.flow.internal.v0.models.localization_form'](); };
28153
- export var makeLocalizationRef = function () { return factories['io.flow.internal.v0.models.localization_ref'](); };
28154
- export var makeLocalizationUpserted = function () { return factories['io.flow.internal.v0.models.localization_upserted'](); };
28155
- export var makeLocalizedContent = function () { return factories['io.flow.internal.v0.models.localized_content'](); };
28156
- export var makeLocalizedContentElement = function () { return factories['io.flow.internal.v0.models.localized_content_element'](); };
28157
- export var makeLocalizedContentForm = function () { return factories['io.flow.internal.v0.models.localized_content_form'](); };
28158
- export var makeLocalizedContentUpserted = function () { return factories['io.flow.internal.v0.models.localized_content_upserted'](); };
28159
27074
  export var makeLocalizedItemPricesExportRequest = function () { return factories['io.flow.internal.v0.models.localized_item_prices_export_request'](); };
28160
27075
  export var makeLocalizedItemsExportSettings = function () { return factories['io.flow.internal.v0.models.localized_items_export_settings'](); };
28161
27076
  export var makeLocalizedPriceBookItemData = function () { return factories['io.flow.internal.v0.models.localized_price_book_item_data'](); };
28162
- export var makeLocation = function () { return factories['io.flow.internal.v0.models.location'](); };
28163
27077
  export var makeLogisticsCapabilities = function () { return factories['io.flow.internal.v0.models.logistics_capabilities'](); };
28164
27078
  export var makeLogisticsCapabilitiesDeleted = function () { return factories['io.flow.internal.v0.models.logistics_capabilities_deleted'](); };
28165
27079
  export var makeLogisticsCapabilitiesForm = function () { return factories['io.flow.internal.v0.models.logistics_capabilities_form'](); };
@@ -28168,13 +27082,11 @@ export var makeLogisticsCapability = function () { return factories['io.flow.int
28168
27082
  export var makeLogisticsPayoutRequest = function () { return factories['io.flow.internal.v0.models.logistics_payout_request'](); };
28169
27083
  export var makeLogisticsPayoutRequestForm = function () { return factories['io.flow.internal.v0.models.logistics_payout_request_form'](); };
28170
27084
  export var makeLogisticsPayoutResolutionMethod = function () { return factories['io.flow.internal.v0.enums.logistics_payout_resolution_method'](); };
28171
- export var makeLogo = function () { return factories['io.flow.internal.v0.models.logo'](); };
28172
27085
  export var makeLostChargeback = function () { return factories['io.flow.internal.v0.models.lost_chargeback'](); };
28173
27086
  export var makeLoyaltyProgram = function () { return factories['io.flow.internal.v0.models.loyalty_program'](); };
28174
27087
  export var makeLoyaltyProgramMessage = function () { return factories['io.flow.internal.v0.models.loyalty_program_message'](); };
28175
27088
  export var makeLoyaltyProgramReward = function () { return factories['io.flow.internal.v0.models.loyalty_program_reward'](); };
28176
27089
  export var makeLoyaltyProgramRewards = function () { return factories['io.flow.internal.v0.models.loyalty_program_rewards'](); };
28177
- export var makeMagentoInstallForm = function () { return factories['io.flow.internal.v0.models.magento_install_form'](); };
28178
27090
  export var makeMainTransaction = function () { return factories['io.flow.internal.v0.models.main_transaction'](); };
28179
27091
  export var makeMainTransactionDeleted = function () { return factories['io.flow.internal.v0.models.main_transaction_deleted'](); };
28180
27092
  export var makeMainTransactionDeletedV2 = function () { return factories['io.flow.internal.v0.models.main_transaction_deleted_v2'](); };
@@ -28246,14 +27158,6 @@ export var makeOnboardingStateForm = function () { return factories['io.flow.int
28246
27158
  export var makeOnboardingStateSource = function () { return factories['io.flow.internal.v0.enums.onboarding_state_source'](); };
28247
27159
  export var makeOneTimeTokenRedemptionForm = function () { return factories['io.flow.internal.v0.models.one_time_token_redemption_form'](); };
28248
27160
  export var makeOnlineAuthorizationCompleted = function () { return factories['io.flow.internal.v0.models.online_authorization_completed'](); };
28249
- export var makeOptinAttribute = function () { return factories['io.flow.internal.v0.models.optin_attribute'](); };
28250
- export var makeOptinAttributeForm = function () { return factories['io.flow.internal.v0.models.optin_attribute_form'](); };
28251
- export var makeOptinPrompt = function () { return factories['io.flow.internal.v0.models.optin_prompt'](); };
28252
- export var makeOptinPromptCheckoutDisplay = function () { return factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](); };
28253
- export var makeOptinPromptCopy = function () { return factories['io.flow.internal.v0.models.optin_prompt_copy'](); };
28254
- export var makeOptinPromptCopyForm = function () { return factories['io.flow.internal.v0.models.optin_prompt_copy_form'](); };
28255
- export var makeOptinPromptDisplay = function () { return factories['io.flow.internal.v0.unions.optin_prompt_display'](); };
28256
- export var makeOptinPromptForm = function () { return factories['io.flow.internal.v0.models.optin_prompt_form'](); };
28257
27161
  export var makeOrderAction = function () { return factories['io.flow.internal.v0.enums.order_action'](); };
28258
27162
  export var makeOrderActionForm = function () { return factories['io.flow.internal.v0.unions.order_action_form'](); };
28259
27163
  export var makeOrderActionability = function () { return factories['io.flow.internal.v0.models.order_actionability'](); };
@@ -28292,7 +27196,6 @@ export var makeOrderRevenueRegionDataPoint = function () { return factories['io.
28292
27196
  export var makeOrderRevenueTimelineChart = function () { return factories['io.flow.internal.v0.models.order_revenue_timeline_chart'](); };
28293
27197
  export var makeOrderRevenueTimelineDataPoint = function () { return factories['io.flow.internal.v0.models.order_revenue_timeline_data_point'](); };
28294
27198
  export var makeOrderServiceChangeCsvForm = function () { return factories['io.flow.internal.v0.models.order_service_change_csv_form'](); };
28295
- export var makeOrderSubmissionForm = function () { return factories['io.flow.internal.v0.models.order_submission_form'](); };
28296
27199
  export var makeOrderSummary = function () { return factories['io.flow.internal.v0.models.order_summary'](); };
28297
27200
  export var makeOrderTaxAndDutyInclusivitySetting = function () { return factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'](); };
28298
27201
  export var makeOrderTaxAndDutyInclusivitySettingDeleted = function () { return factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](); };
@@ -28412,6 +27315,7 @@ export var makePartnerTrackingSubscriptionUpserted = function () { return factor
28412
27315
  export var makePassphrase = function () { return factories['io.flow.internal.v0.models.passphrase'](); };
28413
27316
  export var makePassphraseForm = function () { return factories['io.flow.internal.v0.models.passphrase_form'](); };
28414
27317
  export var makePassphraseSummary = function () { return factories['io.flow.internal.v0.models.passphrase_summary'](); };
27318
+ export var makePaymentIs = function () { return factories['io.flow.internal.v0.models.payment_is'](); };
28415
27319
  export var makePaymentMethodDetail = function () { return factories['io.flow.internal.v0.models.payment_method_detail'](); };
28416
27320
  export var makePaymentMethodOption = function () { return factories['io.flow.internal.v0.models.payment_method_option'](); };
28417
27321
  export var makePaymentOrganizationSettings = function () { return factories['io.flow.internal.v0.models.payment_organization_settings'](); };
@@ -28455,6 +27359,7 @@ export var makePaypalRefundUpserted = function () { return factories['io.flow.in
28455
27359
  export var makePendingBankPayment = function () { return factories['io.flow.internal.v0.models.pending_bank_payment'](); };
28456
27360
  export var makePendingBankPaymentDetail = function () { return factories['io.flow.internal.v0.models.pending_bank_payment_detail'](); };
28457
27361
  export var makePendingOrder = function () { return factories['io.flow.internal.v0.models.pending_order'](); };
27362
+ export var makePendingRecordType = function () { return factories['io.flow.internal.v0.enums.pending_record_type'](); };
28458
27363
  export var makePhraseClassified = function () { return factories['io.flow.internal.v0.models.phrase_classified'](); };
28459
27364
  export var makePhrasePropagated = function () { return factories['io.flow.internal.v0.models.phrase_propagated'](); };
28460
27365
  export var makePlatformFee = function () { return factories['io.flow.internal.v0.unions.platform_fee'](); };
@@ -28512,13 +27417,11 @@ export var makeProductRestrictionStateInserted = function () { return factories[
28512
27417
  export var makeProductRestrictionStateUpdated = function () { return factories['io.flow.internal.v0.models.product_restriction_state_updated'](); };
28513
27418
  export var makeProductReviewHistory = function () { return factories['io.flow.internal.v0.models.product_review_history'](); };
28514
27419
  export var makeProductSellabilityInternal = function () { return factories['io.flow.internal.v0.models.product_sellability_internal'](); };
27420
+ export var makeProductSellabilityInternalForm = function () { return factories['io.flow.internal.v0.models.product_sellability_internal_form'](); };
27421
+ export var makeProductSellabilityInternalResult = function () { return factories['io.flow.internal.v0.models.product_sellability_internal_result'](); };
28515
27422
  export var makeProductSellabilityResult = function () { return factories['io.flow.internal.v0.models.product_sellability_result'](); };
28516
27423
  export var makeProductStatus = function () { return factories['io.flow.internal.v0.enums.product_status'](); };
28517
27424
  export var makeProductTransaction = function () { return factories['io.flow.internal.v0.models.product_transaction'](); };
28518
- export var makePromptAction = function () { return factories['io.flow.internal.v0.enums.prompt_action'](); };
28519
- export var makePromptCheckoutDisplayPosition = function () { return factories['io.flow.internal.v0.enums.prompt_checkout_display_position'](); };
28520
- export var makePromptOptions = function () { return factories['io.flow.internal.v0.enums.prompt_options'](); };
28521
- export var makePromptTarget = function () { return factories['io.flow.internal.v0.enums.prompt_target'](); };
28522
27425
  export var makeProofOfPosting = function () { return factories['io.flow.internal.v0.unions.proof_of_posting'](); };
28523
27426
  export var makeProofOfPostingExternallyFulfilled = function () { return factories['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'](); };
28524
27427
  export var makeProofOfPostingFulfilled = function () { return factories['io.flow.internal.v0.models.proof_of_posting_fulfilled'](); };
@@ -28586,9 +27489,6 @@ export var makeRatecardStandardConfigurationUpserted = function () { return fact
28586
27489
  export var makeRatecardStandardSettings = function () { return factories['io.flow.internal.v0.models.ratecard_standard_settings'](); };
28587
27490
  export var makeRatesChanged = function () { return factories['io.flow.internal.v0.models.rates_changed'](); };
28588
27491
  export var makeRatesNamesSummary = function () { return factories['io.flow.internal.v0.models.rates_names_summary'](); };
28589
- export var makeReboundConfiguration = function () { return factories['io.flow.internal.v0.models.rebound_configuration'](); };
28590
- export var makeReboundConfigurationForm = function () { return factories['io.flow.internal.v0.models.rebound_configuration_form'](); };
28591
- export var makeReboundConfigurationStatus = function () { return factories['io.flow.internal.v0.enums.rebound_configuration_status'](); };
28592
27492
  export var makeRecordReference = function () { return factories['io.flow.internal.v0.models.record_reference'](); };
28593
27493
  export var makeRedirect = function () { return factories['io.flow.internal.v0.models.redirect'](); };
28594
27494
  export var makeRedirectActionCompleted = function () { return factories['io.flow.internal.v0.models.redirect_action_completed'](); };
@@ -28655,6 +27555,7 @@ export var makeRequeueRequestForm = function () { return factories['io.flow.inte
28655
27555
  export var makeRescreenRestrictionsProducts = function () { return factories['io.flow.internal.v0.models.rescreen_restrictions_products'](); };
28656
27556
  export var makeResponsibleParty = function () { return factories['io.flow.internal.v0.enums.responsible_party'](); };
28657
27557
  export var makeRestrictionAction = function () { return factories['io.flow.internal.v0.enums.restriction_action'](); };
27558
+ export var makeRestrictionBlanketOrganizationExemption = function () { return factories['io.flow.internal.v0.models.restriction_blanket_organization_exemption'](); };
28658
27559
  export var makeRestrictionCategory = function () { return factories['io.flow.internal.v0.models.restriction_category'](); };
28659
27560
  export var makeRestrictionDecision = function () { return factories['io.flow.internal.v0.enums.restriction_decision'](); };
28660
27561
  export var makeRestrictionFilter = function () { return factories['io.flow.internal.v0.models.restriction_filter'](); };
@@ -28678,6 +27579,7 @@ export var makeRestrictionProductDecisionForm = function () { return factories['
28678
27579
  export var makeRestrictionProductRequestForm = function () { return factories['io.flow.internal.v0.models.restriction_product_request_form'](); };
28679
27580
  export var makeRestrictionProductSummary = function () { return factories['io.flow.internal.v0.models.restriction_product_summary'](); };
28680
27581
  export var makeRestrictionRule = function () { return factories['io.flow.internal.v0.models.restriction_rule'](); };
27582
+ export var makeRestrictionRuleCommunityExemption = function () { return factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](); };
28681
27583
  export var makeRestrictionRuleDecisionForm = function () { return factories['io.flow.internal.v0.models.restriction_rule_decision_form'](); };
28682
27584
  export var makeRestrictionRuleDeleted = function () { return factories['io.flow.internal.v0.models.restriction_rule_deleted'](); };
28683
27585
  export var makeRestrictionRuleEffect = function () { return factories['io.flow.internal.v0.models.restriction_rule_effect'](); };
@@ -28722,8 +27624,12 @@ export var makeRoutingAccount = function () { return factories['io.flow.internal
28722
27624
  export var makeRoutingEntity = function () { return factories['io.flow.internal.v0.unions.routing_entity'](); };
28723
27625
  export var makeRoutingMerchant = function () { return factories['io.flow.internal.v0.models.routing_merchant'](); };
28724
27626
  export var makeRoutingProcessor = function () { return factories['io.flow.internal.v0.models.routing_processor'](); };
27627
+ export var makeSalesPaymentRecord = function () { return factories['io.flow.internal.v0.models.sales_payment_record'](); };
28725
27628
  export var makeSandboxSetup = function () { return factories['io.flow.internal.v0.models.sandbox_setup'](); };
28726
27629
  export var makeSandboxSetupForm = function () { return factories['io.flow.internal.v0.models.sandbox_setup_form'](); };
27630
+ export var makeSarveshItem = function () { return factories['io.flow.internal.v0.models.sarvesh_item'](); };
27631
+ export var makeSarveshItemForm = function () { return factories['io.flow.internal.v0.models.sarvesh_item_form'](); };
27632
+ export var makeSarveshItemType = function () { return factories['io.flow.internal.v0.enums.sarvesh_item_type'](); };
28727
27633
  export var makeScheduledPayment = function () { return factories['io.flow.internal.v0.models.scheduled_payment'](); };
28728
27634
  export var makeScreen = function () { return factories['io.flow.internal.v0.models.screen'](); };
28729
27635
  export var makeScreenForm = function () { return factories['io.flow.internal.v0.models.screen_form'](); };
@@ -28744,30 +27650,16 @@ export var makeShipmentCostSummary = function () { return factories['io.flow.int
28744
27650
  export var makeShippingLane = function () { return factories['io.flow.internal.v0.models.shipping_lane'](); };
28745
27651
  export var makeShippingMethodReference = function () { return factories['io.flow.internal.v0.models.shipping_method_reference'](); };
28746
27652
  export var makeShippingPricing = function () { return factories['io.flow.internal.v0.models.shipping_pricing'](); };
28747
- export var makeShop = function () { return factories['io.flow.internal.v0.models.shop'](); };
28748
- export var makeShopForm = function () { return factories['io.flow.internal.v0.models.shop_form'](); };
28749
- export var makeShopVersion = function () { return factories['io.flow.internal.v0.models.shop_version'](); };
28750
27653
  export var makeShopifyCatalogPublication = function () { return factories['io.flow.internal.v0.models.shopify_catalog_publication'](); };
28751
27654
  export var makeShopifyChannelOrganizationToken = function () { return factories['io.flow.internal.v0.models.shopify_channel_organization_token'](); };
28752
27655
  export var makeShopifyChannelOrganizationTokens = function () { return factories['io.flow.internal.v0.models.shopify_channel_organization_tokens'](); };
28753
- export var makeShopifyCheckInventoryError = function () { return factories['io.flow.internal.v0.models.shopify_check_inventory_error'](); };
28754
- export var makeShopifyCheckInventoryErrorCode = function () { return factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code'](); };
28755
- export var makeShopifyCodeForm = function () { return factories['io.flow.internal.v0.models.shopify_code_form'](); };
28756
27656
  export var makeShopifyDispute = function () { return factories['io.flow.internal.v0.models.shopify_dispute'](); };
28757
27657
  export var makeShopifyDisputeDeleted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_deleted'](); };
28758
27658
  export var makeShopifyDisputeUpserted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_upserted'](); };
28759
- export var makeShopifyExperienceShortId = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id'](); };
28760
- export var makeShopifyExperienceShortIdDeleted = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted'](); };
28761
- export var makeShopifyExperienceShortIdUpserted = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](); };
28762
- export var makeShopifyGiftCardBalance = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_balance'](); };
28763
- export var makeShopifyGiftCardBalanceForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_balance_form'](); };
28764
- export var makeShopifyGiftCardPaymentForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_payment_form'](); };
28765
- export var makeShopifyGiftCardRedemption = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_redemption'](); };
28766
- export var makeShopifyGiftCardRedemptionForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_redemption_form'](); };
28767
- export var makeShopifyGiftCardReversal = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_reversal'](); };
28768
- export var makeShopifyGiftCardReversalForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_reversal_form'](); };
28769
- export var makeShopifyGrantStatus = function () { return factories['io.flow.internal.v0.enums.shopify_grant_status'](); };
28770
- export var makeShopifyGrantsCheck = function () { return factories['io.flow.internal.v0.models.shopify_grants_check'](); };
27659
+ export var makeShopifyHs10Code = function () { return factories['io.flow.internal.v0.models.shopify_hs10_code'](); };
27660
+ export var makeShopifyHs10Codes = function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes'](); };
27661
+ export var makeShopifyHs10CodesDeleted = function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted'](); };
27662
+ export var makeShopifyHs10CodesUpserted = function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted'](); };
28771
27663
  export var makeShopifyIncotermConfiguration = function () { return factories['io.flow.internal.v0.enums.shopify_incoterm_configuration'](); };
28772
27664
  export var makeShopifyIncotermIncludes = function () { return factories['io.flow.internal.v0.models.shopify_incoterm_includes'](); };
28773
27665
  export var makeShopifyIncotermSummaryErrorData = function () { return factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data'](); };
@@ -28829,30 +27721,20 @@ export var makeShopifyMonitoringOrderMonitorType = function () { return factorie
28829
27721
  export var makeShopifyMonitoringTrackingField = function () { return factories['io.flow.internal.v0.enums.shopify_monitoring_tracking_field'](); };
28830
27722
  export var makeShopifyMonitoringTrackingNumber = function () { return factories['io.flow.internal.v0.models.shopify_monitoring_tracking_number'](); };
28831
27723
  export var makeShopifyMonitoringTrackingUrl = function () { return factories['io.flow.internal.v0.models.shopify_monitoring_tracking_url'](); };
28832
- export var makeShopifyOrderAuthorization = function () { return factories['io.flow.internal.v0.models.shopify_order_authorization'](); };
28833
27724
  export var makeShopifyOrderCancelForm = function () { return factories['io.flow.internal.v0.models.shopify_order_cancel_form'](); };
28834
27725
  export var makeShopifyOrderCancelResponse = function () { return factories['io.flow.internal.v0.models.shopify_order_cancel_response'](); };
28835
- export var makeShopifyOrderContent = function () { return factories['io.flow.internal.v0.models.shopify_order_content'](); };
28836
27726
  export var makeShopifyOrderDestinationForm = function () { return factories['io.flow.internal.v0.models.shopify_order_destination_form'](); };
28837
- export var makeShopifyOrderDetail = function () { return factories['io.flow.internal.v0.models.shopify_order_detail'](); };
28838
- export var makeShopifyOrderDiscountContent = function () { return factories['io.flow.internal.v0.models.shopify_order_discount_content'](); };
28839
27727
  export var makeShopifyOrderFulfillmentsSnapshot = function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'](); };
28840
27728
  export var makeShopifyOrderFulfillmentsSnapshotDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'](); };
28841
27729
  export var makeShopifyOrderFulfillmentsSnapshotUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](); };
28842
- export var makeShopifyOrderInventoryCheck = function () { return factories['io.flow.internal.v0.models.shopify_order_inventory_check'](); };
28843
- export var makeShopifyOrderLineAttribute = function () { return factories['io.flow.internal.v0.models.shopify_order_line_attribute'](); };
28844
- export var makeShopifyOrderLineContent = function () { return factories['io.flow.internal.v0.models.shopify_order_line_content'](); };
28845
27730
  export var makeShopifyOrderRiskAssessment = function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment'](); };
28846
27731
  export var makeShopifyOrderRiskAssessmentDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'](); };
28847
27732
  export var makeShopifyOrderRiskAssessmentUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'](); };
28848
27733
  export var makeShopifyOrderTransaction = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction'](); };
28849
27734
  export var makeShopifyOrderTransactionDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_deleted'](); };
28850
27735
  export var makeShopifyOrderTransactionUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_upserted'](); };
28851
- export var makeShopifyOrganizationSettings = function () { return factories['io.flow.internal.v0.models.shopify_organization_settings'](); };
28852
- export var makeShopifyOrganizationSettingsForm = function () { return factories['io.flow.internal.v0.models.shopify_organization_settings_form'](); };
28853
27736
  export var makeShopifyPartnerWebhook = function () { return factories['io.flow.internal.v0.models.shopify_partner_webhook'](); };
28854
27737
  export var makeShopifyPartnerWebhookRaw = function () { return factories['io.flow.internal.v0.models.shopify_partner_webhook_raw'](); };
28855
- export var makeShopifyPaymentSummary = function () { return factories['io.flow.internal.v0.models.shopify_payment_summary'](); };
28856
27738
  export var makeShopifyPlanType = function () { return factories['io.flow.internal.v0.enums.shopify_plan_type'](); };
28857
27739
  export var makeShopifyProductBundle = function () { return factories['io.flow.internal.v0.models.shopify_product_bundle'](); };
28858
27740
  export var makeShopifyProductBundleDeleted = function () { return factories['io.flow.internal.v0.models.shopify_product_bundle_deleted'](); };
@@ -28868,37 +27750,13 @@ export var makeShopifyProductUpdateDeleted = function () { return factories['io.
28868
27750
  export var makeShopifyProductUpdateUpserted = function () { return factories['io.flow.internal.v0.models.shopify_product_update_upserted'](); };
28869
27751
  export var makeShopifyProductUpdateWebhookEvent = function () { return factories['io.flow.internal.v0.models.shopify_product_update_webhook_event'](); };
28870
27752
  export var makeShopifyProductWrapper = function () { return factories['io.flow.internal.v0.models.shopify_product_wrapper'](); };
28871
- export var makeShopifyPromoForm = function () { return factories['io.flow.internal.v0.models.shopify_promo_form'](); };
28872
- export var makeShopifyPromotion = function () { return factories['io.flow.internal.v0.models.shopify_promotion'](); };
28873
- export var makeShopifyPromotionAttributeValue = function () { return factories['io.flow.internal.v0.models.shopify_promotion_attribute_value'](); };
28874
- export var makeShopifyPromotionBehavior = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_behavior'](); };
28875
- export var makeShopifyPromotionFixedAmount = function () { return factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount'](); };
28876
- export var makeShopifyPromotionForm = function () { return factories['io.flow.internal.v0.models.shopify_promotion_form'](); };
28877
- export var makeShopifyPromotionItemEntitlement = function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement'](); };
28878
- export var makeShopifyPromotionItemPrerequisite = function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite'](); };
28879
- export var makeShopifyPromotionMaxAmount = function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_amount'](); };
28880
- export var makeShopifyPromotionMaxLimit = function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_limit'](); };
28881
- export var makeShopifyPromotionOffer = function () { return factories['io.flow.internal.v0.models.shopify_promotion_offer'](); };
28882
- export var makeShopifyPromotionOfferAllocationMethod = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](); };
28883
- export var makeShopifyPromotionOfferDiscount = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount'](); };
28884
- export var makeShopifyPromotionOfferEntitlement = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement'](); };
28885
- export var makeShopifyPromotionOfferMax = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_max'](); };
28886
- export var makeShopifyPromotionOrderEntitlement = function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement'](); };
28887
- export var makeShopifyPromotionOrderEntitlementComponent = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component'](); };
28888
- export var makeShopifyPromotionOrderPrerequisite = function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite'](); };
28889
- export var makeShopifyPromotionPercent = function () { return factories['io.flow.internal.v0.models.shopify_promotion_percent'](); };
28890
- export var makeShopifyPromotionPrerequisite = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite'](); };
28891
- export var makeShopifyPromotionRule = function () { return factories['io.flow.internal.v0.models.shopify_promotion_rule'](); };
28892
- export var makeShopifyPromotionStatus = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_status'](); };
27753
+ export var makeShopifyReportFileDeleted = function () { return factories['io.flow.internal.v0.models.shopify_report_file_deleted'](); };
27754
+ export var makeShopifyReportFileUpserted = function () { return factories['io.flow.internal.v0.models.shopify_report_file_upserted'](); };
28893
27755
  export var makeShopifyService = function () { return factories['io.flow.internal.v0.enums.shopify_service'](); };
28894
- export var makeShopifyShopDeleted = function () { return factories['io.flow.internal.v0.models.shopify_shop_deleted'](); };
28895
27756
  export var makeShopifyShopStatistics = function () { return factories['io.flow.internal.v0.models.shopify_shop_statistics'](); };
28896
- export var makeShopifyShopUpserted = function () { return factories['io.flow.internal.v0.models.shopify_shop_upserted'](); };
28897
27757
  export var makeShopifyStoreDetail = function () { return factories['io.flow.internal.v0.models.shopify_store_detail'](); };
28898
27758
  export var makeShopifyStripeEvent = function () { return factories['io.flow.internal.v0.models.shopify_stripe_event'](); };
28899
- export var makeShopifyWebhook = function () { return factories['io.flow.internal.v0.models.shopify_webhook'](); };
28900
- export var makeShopifyWebhookEvent = function () { return factories['io.flow.internal.v0.models.shopify_webhook_event'](); };
28901
- export var makeShopifyWebhookForm = function () { return factories['io.flow.internal.v0.models.shopify_webhook_form'](); };
27759
+ export var makeShopperBreakdown = function () { return factories['io.flow.internal.v0.models.shopper_breakdown'](); };
28902
27760
  export var makeShopperFees = function () { return factories['io.flow.internal.v0.models.shopper_fees'](); };
28903
27761
  export var makeShopperFreight = function () { return factories['io.flow.internal.v0.models.shopper_freight'](); };
28904
27762
  export var makeShopperLine = function () { return factories['io.flow.internal.v0.models.shopper_line'](); };
@@ -28931,11 +27789,8 @@ export var makeStandaloneAttachment = function () { return factories['io.flow.in
28931
27789
  export var makeStandaloneAttachmentDeleted = function () { return factories['io.flow.internal.v0.models.standalone_attachment_deleted'](); };
28932
27790
  export var makeStandaloneAttachmentUpserted = function () { return factories['io.flow.internal.v0.models.standalone_attachment_upserted'](); };
28933
27791
  export var makeStatementCreationMetadata = function () { return factories['io.flow.internal.v0.models.statement_creation_metadata'](); };
28934
- export var makeStatementStatus = function () { return factories['io.flow.internal.v0.enums.statement_status'](); };
28935
27792
  export var makeStatementTransferTransactionLocation = function () { return factories['io.flow.internal.v0.enums.statement_transfer_transaction_location'](); };
28936
27793
  export var makeStatisticType = function () { return factories['io.flow.internal.v0.enums.statistic_type'](); };
28937
- export var makeStoreConnection = function () { return factories['io.flow.internal.v0.models.store_connection'](); };
28938
- export var makeStoreConnectionForm = function () { return factories['io.flow.internal.v0.models.store_connection_form'](); };
28939
27794
  export var makeStringFeatureDefaultValue = function () { return factories['io.flow.internal.v0.models.string_feature_default_value'](); };
28940
27795
  export var makeStringFeatureRule = function () { return factories['io.flow.internal.v0.models.string_feature_rule'](); };
28941
27796
  export var makeStringFeatureRuleForm = function () { return factories['io.flow.internal.v0.models.string_feature_rule_form'](); };
@@ -29010,6 +27865,7 @@ export var makeTaxTransactionDeleted = function () { return factories['io.flow.i
29010
27865
  export var makeTaxTransactionType = function () { return factories['io.flow.internal.v0.enums.tax_transaction_type'](); };
29011
27866
  export var makeTaxTransactionUpserted = function () { return factories['io.flow.internal.v0.models.tax_transaction_upserted'](); };
29012
27867
  export var makeTaxonomyCategory = function () { return factories['io.flow.internal.v0.models.taxonomy_category'](); };
27868
+ export var makeTaxonomyCategoryClassificationAlignment = function () { return factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'](); };
29013
27869
  export var makeTaxonomyCategoryHs6Ref = function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref'](); };
29014
27870
  export var makeTaxonomyCategoryHs6RefDeleted = function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'](); };
29015
27871
  export var makeTaxonomyCategoryHs6RefUpserted = function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](); };
@@ -29104,11 +27960,8 @@ export var makeUserStatusForm = function () { return factories['io.flow.internal
29104
27960
  export var makeUserStatusRule = function () { return factories['io.flow.internal.v0.models.user_status_rule'](); };
29105
27961
  export var makeUserStatusRuleForm = function () { return factories['io.flow.internal.v0.models.user_status_rule_form'](); };
29106
27962
  export var makeUserUpsertedV2 = function () { return factories['io.flow.internal.v0.models.user_upserted_v2'](); };
29107
- export var makeV1Checkout = function () { return factories['io.flow.internal.v0.models.v1_checkout'](); };
29108
27963
  export var makeValidatedAddress = function () { return factories['io.flow.internal.v0.models.validated_address'](); };
29109
27964
  export var makeValidatedShippingData = function () { return factories['io.flow.internal.v0.models.validated_shipping_data'](); };
29110
- export var makeValidationCharacterLength = function () { return factories['io.flow.internal.v0.models.validation_character_length'](); };
29111
- export var makeValidationRule = function () { return factories['io.flow.internal.v0.unions.validation_rule'](); };
29112
27965
  export var makeViesResult = function () { return factories['io.flow.internal.v0.models.vies_result'](); };
29113
27966
  export var makeVirtualCardTransaction = function () { return factories['io.flow.internal.v0.models.virtual_card_transaction'](); };
29114
27967
  export var makeWasteElectricalAndElectronicEquipmentComplianceData = function () { return factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'](); };