@flowio/api-internal-factories 0.0.130 → 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',
@@ -6490,6 +6389,7 @@ var factories = {
6490
6389
  ]); },
6491
6390
  'io.flow.internal.v0.enums.item_quantity_action': function () { return faker.helpers.arrayElement(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']); },
6492
6391
  'io.flow.internal.v0.enums.item_type': function () { return faker.helpers.arrayElement(['standard', 'multi_product']); },
6392
+ 'io.flow.internal.v0.enums.journal_operation': function () { return faker.helpers.arrayElement(['insert', 'update', 'delete']); },
6493
6393
  'io.flow.internal.v0.enums.keyword_type': function () { return faker.helpers.arrayElement(['positive', 'negative']); },
6494
6394
  'io.flow.internal.v0.enums.label_billing_strategy': function () { return faker.helpers.arrayElement(['quote', 'carrier']); },
6495
6395
  'io.flow.internal.v0.enums.label_cancellation_error_code': function () { return faker.helpers.arrayElement(['already_used', 'carrier_unsupported']); },
@@ -6666,11 +6566,7 @@ var factories = {
6666
6566
  'crypto',
6667
6567
  ]); },
6668
6568
  'io.flow.internal.v0.enums.processor_entity_status': function () { return faker.helpers.arrayElement(['active', 'draft', 'archived']); },
6669
- 'io.flow.internal.v0.enums.product_status': function () { return faker.helpers.arrayElement(['active', 'archived', 'draft']); },
6670
- 'io.flow.internal.v0.enums.prompt_action': function () { return faker.helpers.arrayElement(['prompt_displayed', 'consent_granted', 'consent_denied']); },
6671
- 'io.flow.internal.v0.enums.prompt_checkout_display_position': function () { return faker.helpers.arrayElement(['email', 'submission']); },
6672
- 'io.flow.internal.v0.enums.prompt_options': function () { return faker.helpers.arrayElement(['notice_only', 'require_consent', 'consent_by_default']); },
6673
- 'io.flow.internal.v0.enums.prompt_target': function () { return faker.helpers.arrayElement(['browse', 'checkout']); },
6569
+ 'io.flow.internal.v0.enums.product_status': function () { return faker.helpers.arrayElement(['active', 'archived', 'draft', 'unlisted']); },
6674
6570
  'io.flow.internal.v0.enums.rate_level_key': function () { return faker.helpers.arrayElement([
6675
6571
  'shopify_small_usa',
6676
6572
  'shopify_medium_usa',
@@ -6678,7 +6574,6 @@ var factories = {
6678
6574
  'shopify_small_sdc_usa',
6679
6575
  ]); },
6680
6576
  'io.flow.internal.v0.enums.rate_source': function () { return faker.helpers.arrayElement(['calculated', 'market']); },
6681
- 'io.flow.internal.v0.enums.rebound_configuration_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
6682
6577
  'io.flow.internal.v0.enums.redirect_reason': function () { return faker.helpers.arrayElement(['three_d_secure']); },
6683
6578
  'io.flow.internal.v0.enums.rejection_reason': function () { return faker.helpers.arrayElement([
6684
6579
  'merchant_policy',
@@ -6707,6 +6602,7 @@ var factories = {
6707
6602
  'reconcile_not_recorded',
6708
6603
  'products_record',
6709
6604
  'disputes',
6605
+ 'sales_payments_record',
6710
6606
  ]); },
6711
6607
  'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': function () { return faker.helpers.arrayElement(['all', 'mixed', 'none']); },
6712
6608
  'io.flow.internal.v0.enums.reporting_scheme': function () { return faker.helpers.arrayElement([
@@ -6720,6 +6616,7 @@ var factories = {
6720
6616
  'io.flow.internal.v0.enums.restriction_decision': function () { return faker.helpers.arrayElement(['accept', 'escalate', 'reject', 'review']); },
6721
6617
  'io.flow.internal.v0.enums.restriction_organization_channel': function () { return faker.helpers.arrayElement(['shopify', 'enterprise', 'shopify-sandbox', 'enterprise-sandbox']); },
6722
6618
  'io.flow.internal.v0.enums.restriction_organization_source': function () { return faker.helpers.arrayElement(['shopify', 'enterprise']); },
6619
+ 'io.flow.internal.v0.enums.restriction_rule_community_exemption': function () { return faker.helpers.arrayElement(['domestic_exemption', 'intra_eu_exemption']); },
6723
6620
  'io.flow.internal.v0.enums.restriction_rule_exception_action': function () { return faker.helpers.arrayElement(['allow', 'deny']); },
6724
6621
  'io.flow.internal.v0.enums.restriction_state_review_status': function () { return faker.helpers.arrayElement(['reviewed', 'in_review']); },
6725
6622
  'io.flow.internal.v0.enums.restriction_status': function () { return faker.helpers.arrayElement(['pending', 'in_review', 'escalated', 'accepted', 'restricted']); },
@@ -6727,8 +6624,7 @@ var factories = {
6727
6624
  'io.flow.internal.v0.enums.risk_check': function () { return faker.helpers.arrayElement(['three_d_secure']); },
6728
6625
  'io.flow.internal.v0.enums.risk_evaluation': function () { return faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']); },
6729
6626
  'io.flow.internal.v0.enums.rohan_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
6730
- 'io.flow.internal.v0.enums.shopify_check_inventory_error_code': function () { return faker.helpers.arrayElement(['inventory_out_of_stock']); },
6731
- 'io.flow.internal.v0.enums.shopify_grant_status': function () { return faker.helpers.arrayElement(['pass', 'fail']); },
6627
+ 'io.flow.internal.v0.enums.sarvesh_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
6732
6628
  'io.flow.internal.v0.enums.shopify_incoterm_configuration': function () { return faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']); },
6733
6629
  'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': function () { return faker.helpers.arrayElement([
6734
6630
  'aerosols',
@@ -6784,23 +6680,11 @@ var factories = {
6784
6680
  'io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status': function () { return faker.helpers.arrayElement(['in_review', 'reviewed']); },
6785
6681
  'io.flow.internal.v0.enums.shopify_monitoring_tracking_field': function () { return faker.helpers.arrayElement(['tracking_number', 'carrier_service', 'tracking_url']); },
6786
6682
  'io.flow.internal.v0.enums.shopify_plan_type': function () { return faker.helpers.arrayElement(['standard', 'shopify_plus']); },
6787
- 'io.flow.internal.v0.enums.shopify_promotion_behavior': function () { return faker.helpers.arrayElement(['disable_discount_codes']); },
6788
- 'io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method': function () { return faker.helpers.arrayElement(['each', 'across']); },
6789
- 'io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component': function () { return faker.helpers.arrayElement(['subtotal', 'shipping', 'vat', 'duty']); },
6790
- 'io.flow.internal.v0.enums.shopify_promotion_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
6791
6683
  'io.flow.internal.v0.enums.shopify_service': function () { return faker.helpers.arrayElement(['payment', 'duty_tax_calculator', 'sellability']); },
6792
6684
  'io.flow.internal.v0.enums.simple_rounding_strategy': function () { return faker.helpers.arrayElement(['no_rounding', 'currency_precision']); },
6793
6685
  'io.flow.internal.v0.enums.snooze_next_action_with': function () { return faker.helpers.arrayElement(['customer_service', 'engineering']); },
6794
6686
  'io.flow.internal.v0.enums.snooze_source_type': function () { return faker.helpers.arrayElement(['task', 'invariant']); },
6795
6687
  'io.flow.internal.v0.enums.source_type_filter': function () { return faker.helpers.arrayElement(['organization', 'channel']); },
6796
- 'io.flow.internal.v0.enums.statement_status': function () { return faker.helpers.arrayElement([
6797
- 'created',
6798
- 'no_transactions',
6799
- 'transactions_assigned',
6800
- 'statement_generated',
6801
- 'statement_regenerated',
6802
- 'failed',
6803
- ]); },
6804
6688
  'io.flow.internal.v0.enums.statement_transfer_transaction_location': function () { return faker.helpers.arrayElement(['transactions_file', 'summary']); },
6805
6689
  'io.flow.internal.v0.enums.statistic_type': function () { return faker.helpers.arrayElement([
6806
6690
  'time-to-classify',
@@ -6829,6 +6713,13 @@ var factories = {
6829
6713
  'io.flow.internal.v0.enums.tax_calculation_error_code': function () { return faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']); },
6830
6714
  'io.flow.internal.v0.enums.tax_party': function () { return faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']); },
6831
6715
  'io.flow.internal.v0.enums.tax_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'tax', 'refund']); },
6716
+ 'io.flow.internal.v0.enums.taxonomy_category_classification_alignment': function () { return faker.helpers.arrayElement([
6717
+ 'aligned',
6718
+ 'not_aligned',
6719
+ 'product_missing_category',
6720
+ 'config_missing_category',
6721
+ 'product_not_found',
6722
+ ]); },
6832
6723
  'io.flow.internal.v0.enums.tracking_integration_type': function () { return faker.helpers.arrayElement(['api', 'bulk', 'aftership']); },
6833
6724
  'io.flow.internal.v0.enums.tracking_label_dimensions_source': function () { return faker.helpers.arrayElement(['aftership', 'carrier_api']); },
6834
6725
  'io.flow.internal.v0.enums.tracking_processing_failure_classification': function () { return faker.helpers.arrayElement([
@@ -7064,16 +6955,6 @@ var factories = {
7064
6955
  additional_import_tax_value: factories['io.flow.common.v0.models.money'](),
7065
6956
  rate: factories.decimal(),
7066
6957
  }); },
7067
- 'io.flow.internal.v0.models.address_configuration_province_setting': function () { return ({
7068
- code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
7069
- }); },
7070
- 'io.flow.internal.v0.models.address_configuration_setting': function () { return ({
7071
- id: factories.string(),
7072
- province: factories['io.flow.internal.v0.models.address_configuration_province_setting'](),
7073
- }); },
7074
- 'io.flow.internal.v0.models.address_configuration_setting_form': function () { return ({
7075
- province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
7076
- }); },
7077
6958
  'io.flow.internal.v0.models.adjustment_amount_fixed': function () { return ({
7078
6959
  discriminator: 'fixed',
7079
6960
  amount: factories['io.flow.common.v0.models.money'](),
@@ -7521,9 +7402,6 @@ var factories = {
7521
7402
  type: factories['io.flow.internal.v0.enums.ansh_item_type'](),
7522
7403
  added_on: factories.date_iso_8601(),
7523
7404
  }); },
7524
- 'io.flow.internal.v0.models.apm_content': function () { return ({
7525
- processor_description: factories['io.flow.internal.v0.unions.content_item'](),
7526
- }); },
7527
7405
  'io.flow.internal.v0.models.apple_pay_authorization_payload': function () { return ({
7528
7406
  discriminator: 'apple_pay_authorization_payload',
7529
7407
  apple_pay_token: factories.string(),
@@ -7632,6 +7510,22 @@ var factories = {
7632
7510
  timestamp: factories.date_time_iso_8601(),
7633
7511
  id: factories.string(),
7634
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
+ }); },
7635
7529
  'io.flow.internal.v0.models.bank_payment_form': function () { return ({
7636
7530
  account_id: factories.string(),
7637
7531
  reference: factories.string(),
@@ -8663,13 +8557,6 @@ var factories = {
8663
8557
  type: factories['io.flow.common.v0.enums.change_type'](),
8664
8558
  chargeback: factories['io.flow.internal.v0.models.chargeback'](),
8665
8559
  }); },
8666
- 'io.flow.internal.v0.models.checkbox': function () { return ({
8667
- name: factories.string(),
8668
- value: factories.string(),
8669
- label: factories.string(),
8670
- checked_by_default: factories.boolean(),
8671
- required: factories.boolean(),
8672
- }); },
8673
8560
  'io.flow.internal.v0.models.checkout_analytics': function () { return ({
8674
8561
  trackers: arrayOf(function () { return factories['io.flow.internal.v0.unions.tracker'](); }),
8675
8562
  use_base_currency: factories.boolean(),
@@ -8702,13 +8589,6 @@ var factories = {
8702
8589
  analytics: factories['io.flow.internal.v0.models.checkout_analytics'](),
8703
8590
  domain: factories.string(),
8704
8591
  }); },
8705
- 'io.flow.internal.v0.models.checkout_configuration_deleted': function () { return ({
8706
- discriminator: 'checkout_configuration_deleted',
8707
- event_id: factories.string(),
8708
- timestamp: factories.date_time_iso_8601(),
8709
- organization: factories.string(),
8710
- checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
8711
- }); },
8712
8592
  'io.flow.internal.v0.models.checkout_configuration_form': function () { return ({
8713
8593
  behavior: factories['io.flow.internal.v0.models.checkout_behavior'](),
8714
8594
  settings: factories['io.flow.internal.v0.models.checkout_settings'](),
@@ -8718,60 +8598,6 @@ var factories = {
8718
8598
  'io.flow.internal.v0.models.checkout_configuration_reference': function () { return ({
8719
8599
  id: factories.string(),
8720
8600
  }); },
8721
- 'io.flow.internal.v0.models.checkout_configuration_upserted': function () { return ({
8722
- discriminator: 'checkout_configuration_upserted',
8723
- event_id: factories.string(),
8724
- timestamp: factories.date_time_iso_8601(),
8725
- organization: factories.string(),
8726
- checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
8727
- }); },
8728
- 'io.flow.internal.v0.models.checkout_content': function () { return ({
8729
- global: factories['io.flow.internal.v0.models.checkout_content_summary'](),
8730
- items: arrayOf(function () { return factories['io.flow.experience.v0.models.checkout_item_content'](); }),
8731
- }); },
8732
- 'io.flow.internal.v0.models.checkout_content_details': function () { return ({
8733
- contact_us: factories['io.flow.internal.v0.unions.content_item'](),
8734
- logo: factories['io.flow.internal.v0.models.logo'](),
8735
- privacy_policy: factories['io.flow.internal.v0.unions.content_item'](),
8736
- terms: factories['io.flow.internal.v0.unions.content_item'](),
8737
- order_summary_message: factories['io.flow.internal.v0.models.content_label'](),
8738
- }); },
8739
- 'io.flow.internal.v0.models.checkout_content_summary': function () { return ({
8740
- customer_service: factories['io.flow.internal.v0.models.labeled_content'](),
8741
- checkout: factories['io.flow.internal.v0.models.checkout_content_details'](),
8742
- payments: factories['io.flow.internal.v0.models.checkout_payment_content'](),
8743
- marketing: factories['io.flow.internal.v0.models.checkout_marketing_content'](),
8744
- footer: arrayOf(function () { return factories['io.flow.internal.v0.unions.content_item'](); }),
8745
- }); },
8746
- 'io.flow.internal.v0.models.checkout_error': function () { return ({
8747
- code: factories['io.flow.internal.v0.enums.checkout_error_code'](),
8748
- messages: arrayOf(function () { return factories.string(); }),
8749
- organization: factories['io.flow.common.v0.models.organization_reference'](),
8750
- redirect: factories['io.flow.internal.v0.models.checkout_redirect'](),
8751
- }); },
8752
- 'io.flow.internal.v0.models.checkout_marketing_content': function () { return ({
8753
- optins: arrayOf(function () { return factories['io.flow.internal.v0.models.checkbox'](); }),
8754
- }); },
8755
- 'io.flow.internal.v0.models.checkout_payment': function () { return ({
8756
- authorizations: arrayOf(function () { return factories['io.flow.payment.v0.unions.authorization'](); }),
8757
- sources: arrayOf(function () { return factories['io.flow.payment.v0.unions.payment_source'](); }),
8758
- public_key: factories['io.flow.payment.v0.models.public_key'](),
8759
- method_types: arrayOf(function () { return factories['io.flow.reference.v0.enums.payment_method_type'](); }),
8760
- method_rules: arrayOf(function () { return factories['io.flow.experience.v0.models.payment_method_rule'](); }),
8761
- authorization_parameters: arrayOf(function () { return factories['io.flow.internal.v0.models.authorization_parameters'](); }),
8762
- }); },
8763
- 'io.flow.internal.v0.models.checkout_payment_content': function () { return ({
8764
- 'default': factories['io.flow.internal.v0.models.apm_content'](),
8765
- paypal: factories['io.flow.internal.v0.models.apm_content'](),
8766
- }); },
8767
- 'io.flow.internal.v0.models.checkout_platform_data': function () { return ({
8768
- order_number: factories.string(),
8769
- }); },
8770
- 'io.flow.internal.v0.models.checkout_redirect': function () { return ({
8771
- method: factories['io.flow.internal.v0.enums.checkout_redirect_method'](),
8772
- url: factories.string(),
8773
- body: factories.string(),
8774
- }); },
8775
8601
  'io.flow.internal.v0.models.checkout_settings': function () { return ({
8776
8602
  session_persistence_timeout: factories['io.flow.common.v0.models.duration'](),
8777
8603
  session_persistence_attribute_keys: arrayOf(function () { return factories.string(); }),
@@ -9062,74 +8888,6 @@ var factories = {
9062
8888
  service: factories.string(),
9063
8889
  note: factories.string(),
9064
8890
  }); },
9065
- 'io.flow.internal.v0.models.consumer_optin_activity': function () { return ({
9066
- optin_attribute_key: factories.string(),
9067
- optin_region: factories.string(),
9068
- consent_granted: factories.boolean(),
9069
- last_seen_at: factories.date_time_iso_8601(),
9070
- last_acted_at: factories.date_time_iso_8601(),
9071
- }); },
9072
- 'io.flow.internal.v0.models.content_label': function () { return ({
9073
- discriminator: 'content_label',
9074
- key: factories.string(),
9075
- format: factories['io.flow.internal.v0.enums.format'](),
9076
- value: factories.string(),
9077
- }); },
9078
- 'io.flow.internal.v0.models.content_schema': function () { return ({
9079
- key: factories.string(),
9080
- description: factories.string(),
9081
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.content_schema_element'](); }),
9082
- allow_multiple: factories.boolean(),
9083
- }); },
9084
- 'io.flow.internal.v0.models.content_schema_element': function () { return ({
9085
- type: factories['io.flow.internal.v0.enums.content_element_type'](),
9086
- description: factories.string(),
9087
- example: factories.string(),
9088
- required: factories.boolean(),
9089
- validation: arrayOf(function () { return factories['io.flow.internal.v0.unions.validation_rule'](); }),
9090
- }); },
9091
- 'io.flow.internal.v0.models.content_schema_form': function () { return ({
9092
- description: factories.string(),
9093
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.content_schema_element'](); }),
9094
- allow_multiple: factories.boolean(),
9095
- }); },
9096
- 'io.flow.internal.v0.models.content_schema_summary': function () { return ({
9097
- key: factories.string(),
9098
- description: factories.string(),
9099
- }); },
9100
- 'io.flow.internal.v0.models.country_picker_country': function () { return ({
9101
- iso_3166_2: factories.string(),
9102
- iso_3166_3: factories.string(),
9103
- name: factories.string(),
9104
- default_currency: factories.string(),
9105
- }); },
9106
- 'io.flow.internal.v0.models.country_picker_country_data': function () { return ({
9107
- country: factories.string(),
9108
- delivery_window: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_delivery_window'](); }),
9109
- }); },
9110
- 'io.flow.internal.v0.models.country_picker_currency': function () { return ({
9111
- iso_4217_3: factories.string(),
9112
- name: factories.string(),
9113
- }); },
9114
- 'io.flow.internal.v0.models.country_picker_data': function () { return ({
9115
- countries: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_country'](); }),
9116
- currencies: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_currency'](); }),
9117
- experience_data: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_experience_data'](); }),
9118
- country_data: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_country_data'](); }),
9119
- }); },
9120
- 'io.flow.internal.v0.models.country_picker_delivery_window': function () { return ({
9121
- name: factories.string(),
9122
- from: factories.date_time_iso_8601(),
9123
- to: factories.date_time_iso_8601(),
9124
- timezone: factories.string(),
9125
- }); },
9126
- 'io.flow.internal.v0.models.country_picker_experience_data': function () { return ({
9127
- experience_key: factories.string(),
9128
- payment_methods: arrayOf(function () { return factories['io.flow.internal.v0.models.country_picker_payment_method'](); }),
9129
- }); },
9130
- 'io.flow.internal.v0.models.country_picker_payment_method': function () { return ({
9131
- id: factories.string(),
9132
- }); },
9133
8891
  'io.flow.internal.v0.models.courthouse_product_summary': function () { return ({
9134
8892
  organization: factories['io.flow.common.v0.models.organization_summary'](),
9135
8893
  product_id: factories.string(),
@@ -9188,6 +8946,8 @@ var factories = {
9188
8946
  discount: factories['io.flow.internal.v0.models.other_record_discount'](),
9189
8947
  net: factories.decimal(),
9190
8948
  identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
8949
+ revenue_share_percentage: factories.decimal(),
8950
+ revenue_share_plan: factories.string(),
9191
8951
  created_at: factories.date_time_iso_8601(),
9192
8952
  updated_at: factories.date_time_iso_8601(),
9193
8953
  posted_at: factories.date_time_iso_8601(),
@@ -9291,6 +9051,9 @@ var factories = {
9291
9051
  timestamp: factories.date_time_iso_8601(),
9292
9052
  daily_value: factories['io.flow.internal.v0.models.daily_value'](),
9293
9053
  }); },
9054
+ 'io.flow.internal.v0.models.database': function () { return ({
9055
+ name: factories.string(),
9056
+ }); },
9294
9057
  'io.flow.internal.v0.models.debug_accounting_transaction': function () { return ({
9295
9058
  type: factories['io.flow.internal.v0.enums.debug_accounting_transaction_type'](),
9296
9059
  type_id: factories.string(),
@@ -9486,11 +9249,6 @@ var factories = {
9486
9249
  pickup_account_number: factories.string(),
9487
9250
  pickup_name: factories.string(),
9488
9251
  }); },
9489
- 'io.flow.internal.v0.models.dict': function () { return ({
9490
- discriminator: 'dict',
9491
- label: factories['io.flow.internal.v0.models.content_label'](),
9492
- description: factories['io.flow.internal.v0.models.content_label'](),
9493
- }); },
9494
9252
  'io.flow.internal.v0.models.dimension_estimate_ops_input': function () { return ({
9495
9253
  organization_id: factories.string(),
9496
9254
  length_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
@@ -10267,28 +10025,6 @@ var factories = {
10267
10025
  category_group: factories.string(),
10268
10026
  description: factories.string(),
10269
10027
  }); },
10270
- 'io.flow.internal.v0.models.financial_reporting_statement': function () { return ({
10271
- id: factories.string(),
10272
- statement_number: factories.string(),
10273
- status: factories['io.flow.internal.v0.enums.statement_status'](),
10274
- transactions_start_date: factories.date_time_iso_8601(),
10275
- transactions_end_date: factories.date_time_iso_8601(),
10276
- processing_start_at: factories.date_time_iso_8601(),
10277
- processing_end_at: factories.date_time_iso_8601(),
10278
- organization_id: factories.string(),
10279
- flow_entity_country_code: factories.string(),
10280
- captures_url: factories.string(),
10281
- missing_captures_url: factories.string(),
10282
- refunds_url: factories.string(),
10283
- missing_refunds_url: factories.string(),
10284
- adjustments_url: factories.string(),
10285
- }); },
10286
- 'io.flow.internal.v0.models.financial_reporting_statement_form': function () { return ({
10287
- transactions_start_date: factories.date_time_iso_8601(),
10288
- transactions_end_date: factories.date_time_iso_8601(),
10289
- organization_id: factories.string(),
10290
- flow_entity_country_code: factories.string(),
10291
- }); },
10292
10028
  'io.flow.internal.v0.models.fiserv_account': function () { return ({
10293
10029
  discriminator: 'fiserv_account',
10294
10030
  id: factories.string(),
@@ -10660,33 +10396,6 @@ var factories = {
10660
10396
  organization: factories.string(),
10661
10397
  ftp_file: factories['io.flow.ftp.v0.models.ftp_file'](),
10662
10398
  }); },
10663
- 'io.flow.internal.v0.models.ftp_setting': function () { return ({
10664
- id: factories.string(),
10665
- protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
10666
- paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
10667
- username: factories.string(),
10668
- password: factories.string(),
10669
- host: factories.string(),
10670
- intents: arrayOf(function () { return factories['io.flow.internal.v0.enums.ftp_intent'](); }),
10671
- }); },
10672
- 'io.flow.internal.v0.models.ftp_setting_form': function () { return ({
10673
- protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
10674
- paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
10675
- username: factories.string(),
10676
- password: factories.string(),
10677
- host: factories.string(),
10678
- intents: arrayOf(function () { return factories['io.flow.internal.v0.enums.ftp_intent'](); }),
10679
- }); },
10680
- 'io.flow.internal.v0.models.ftp_setting_version': function () { return ({
10681
- id: factories.string(),
10682
- timestamp: factories.date_time_iso_8601(),
10683
- type: factories['io.flow.common.v0.enums.change_type'](),
10684
- ftp_setting: factories['io.flow.internal.v0.models.ftp_setting'](),
10685
- }); },
10686
- 'io.flow.internal.v0.models.ftp_settings_paths': function () { return ({
10687
- inbound: factories.string(),
10688
- outbound: factories.string(),
10689
- }); },
10690
10399
  'io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form': function () { return ({
10691
10400
  discriminator: 'fuel_surcharge_service_fee_amount_by_weight_put_form',
10692
10401
  amount: factories['io.flow.common.v0.models.money'](),
@@ -11054,11 +10763,6 @@ var factories = {
11054
10763
  type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
11055
10764
  added_on: factories.date_time_iso_8601(),
11056
10765
  }); },
11057
- 'io.flow.internal.v0.models.href': function () { return ({
11058
- discriminator: 'href',
11059
- label: factories['io.flow.internal.v0.models.content_label'](),
11060
- url: factories.string(),
11061
- }); },
11062
10766
  'io.flow.internal.v0.models.hs6': function () { return ({
11063
10767
  code: factories.string(),
11064
10768
  description: factories.string(),
@@ -11082,9 +10786,6 @@ var factories = {
11082
10786
  import_id: factories.string(),
11083
10787
  error: factories.string(),
11084
10788
  }); },
11085
- 'io.flow.internal.v0.models.install_form': function () { return ({
11086
- token: factories.string(),
11087
- }); },
11088
10789
  'io.flow.internal.v0.models.internal_adyen_authorization_details': function () { return ({
11089
10790
  discriminator: 'internal_adyen_authorization_details',
11090
10791
  adyen_authentication_data: factories['io.flow.internal.v0.models.adyen_authentication_data_reference'](),
@@ -11322,29 +11023,6 @@ var factories = {
11322
11023
  statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
11323
11024
  created_at: factories.date_time_iso_8601(),
11324
11025
  }); },
11325
- 'io.flow.internal.v0.models.issuer': function () { return ({
11326
- id: factories.string(),
11327
- iin: factories.string(),
11328
- name: factories.string(),
11329
- country: factories.string(),
11330
- brand: factories.string(),
11331
- type: factories.string(),
11332
- category: factories.string(),
11333
- website: factories.string(),
11334
- phone: factories.string(),
11335
- }); },
11336
- 'io.flow.internal.v0.models.issuer_deleted': function () { return ({
11337
- discriminator: 'issuer_deleted',
11338
- event_id: factories.string(),
11339
- timestamp: factories.date_time_iso_8601(),
11340
- issuer: factories['io.flow.internal.v0.models.issuer'](),
11341
- }); },
11342
- 'io.flow.internal.v0.models.issuer_upserted': function () { return ({
11343
- discriminator: 'issuer_upserted',
11344
- event_id: factories.string(),
11345
- timestamp: factories.date_time_iso_8601(),
11346
- issuer: factories['io.flow.internal.v0.models.issuer'](),
11347
- }); },
11348
11026
  'io.flow.internal.v0.models.item_classification': function () { return ({
11349
11027
  id: factories.string(),
11350
11028
  organization: factories.string(),
@@ -11439,6 +11117,7 @@ var factories = {
11439
11117
  tariffs: objectOf(function () { return factories['io.flow.internal.v0.models.tariff_code_duty'](); }),
11440
11118
  decision_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
11441
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'](),
11442
11121
  created_at: factories.date_time_iso_8601(),
11443
11122
  updated_at: factories.date_time_iso_8601(),
11444
11123
  updated_by_user_id: factories.string(),
@@ -11544,6 +11223,19 @@ var factories = {
11544
11223
  id: factories.string(),
11545
11224
  name: factories.string(),
11546
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
+ }); },
11547
11239
  'io.flow.internal.v0.models.key': function () { return ({
11548
11240
  id: factories.string(),
11549
11241
  created_at: factories.date_time_iso_8601(),
@@ -11818,10 +11510,6 @@ var factories = {
11818
11510
  timestamp: factories.date_time_iso_8601(),
11819
11511
  label_transaction: factories['io.flow.internal.v0.models.label_transaction'](),
11820
11512
  }); },
11821
- 'io.flow.internal.v0.models.labeled_content': function () { return ({
11822
- label: factories['io.flow.internal.v0.models.content_label'](),
11823
- contents: arrayOf(function () { return factories['io.flow.internal.v0.unions.content_item'](); }),
11824
- }); },
11825
11513
  'io.flow.internal.v0.models.labels_prediction': function () { return ({
11826
11514
  main_material: factories.string(),
11827
11515
  gender: factories.string(),
@@ -11933,65 +11621,6 @@ var factories = {
11933
11621
  line_number: factories.long(),
11934
11622
  action_quantity: arrayOf(function () { return factories['io.flow.internal.v0.models.action_quantity'](); }),
11935
11623
  }); },
11936
- 'io.flow.internal.v0.models.load': function () { return ({
11937
- discriminator: 'load',
11938
- label: factories['io.flow.internal.v0.models.content_label'](),
11939
- location: factories['io.flow.internal.v0.models.location'](),
11940
- }); },
11941
- 'io.flow.internal.v0.models.localizable_content_reference': function () { return ({
11942
- discriminator: 'localizable_content_reference',
11943
- content_id: factories.string(),
11944
- }); },
11945
- 'io.flow.internal.v0.models.localization': function () { return ({
11946
- discriminator: 'localization',
11947
- id: factories.string(),
11948
- content_id: factories.string(),
11949
- locale: factories.string(),
11950
- status: factories['io.flow.internal.v0.enums.content_status'](),
11951
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.localized_content_element'](); }),
11952
- }); },
11953
- 'io.flow.internal.v0.models.localization_form': function () { return ({
11954
- locale: factories.string(),
11955
- status: factories['io.flow.internal.v0.enums.content_status'](),
11956
- elements: objectOf(function () { return factories['io.flow.internal.v0.models.localized_content_element'](); }),
11957
- }); },
11958
- 'io.flow.internal.v0.models.localization_ref': function () { return ({
11959
- id: factories.string(),
11960
- locale: factories.string(),
11961
- status: factories['io.flow.internal.v0.enums.content_status'](),
11962
- }); },
11963
- 'io.flow.internal.v0.models.localization_upserted': function () { return ({
11964
- discriminator: 'localization_upserted',
11965
- event_id: factories.string(),
11966
- timestamp: factories.date_time_iso_8601(),
11967
- localization_id: factories.string(),
11968
- locale: factories.string(),
11969
- status: factories['io.flow.internal.v0.enums.content_status'](),
11970
- }); },
11971
- 'io.flow.internal.v0.models.localized_content': function () { return ({
11972
- id: factories.string(),
11973
- schema_key: factories.string(),
11974
- status: factories['io.flow.internal.v0.enums.content_status'](),
11975
- source: factories['io.flow.internal.v0.models.localization'](),
11976
- localizations: arrayOf(function () { return factories['io.flow.internal.v0.models.localization_ref'](); }),
11977
- }); },
11978
- 'io.flow.internal.v0.models.localized_content_element': function () { return ({
11979
- value: factories.string(),
11980
- type: factories['io.flow.internal.v0.enums.content_element_type'](),
11981
- }); },
11982
- 'io.flow.internal.v0.models.localized_content_form': function () { return ({
11983
- schema_key: factories.string(),
11984
- status: factories['io.flow.internal.v0.enums.content_status'](),
11985
- source: factories['io.flow.internal.v0.models.localization_form'](),
11986
- }); },
11987
- 'io.flow.internal.v0.models.localized_content_upserted': function () { return ({
11988
- discriminator: 'localized_content_upserted',
11989
- event_id: factories.string(),
11990
- timestamp: factories.date_time_iso_8601(),
11991
- content_id: factories.string(),
11992
- schema_key: factories.string(),
11993
- source_localization_id: factories.string(),
11994
- }); },
11995
11624
  'io.flow.internal.v0.models.localized_item_prices_export_request': function () { return ({
11996
11625
  discriminator: 'localized_item_prices_export_request',
11997
11626
  event_id: factories.string(),
@@ -12016,10 +11645,6 @@ var factories = {
12016
11645
  price_start_date: factories.date_time_iso_8601(),
12017
11646
  price_end_date: factories.date_time_iso_8601(),
12018
11647
  }); },
12019
- 'io.flow.internal.v0.models.location': function () { return ({
12020
- type: factories['io.flow.internal.v0.enums.content_type'](),
12021
- url: factories.string(),
12022
- }); },
12023
11648
  'io.flow.internal.v0.models.logistics_capabilities': function () { return ({
12024
11649
  id: factories.string(),
12025
11650
  capabilities: arrayOf(function () { return factories['io.flow.internal.v0.enums.logistics_capability'](); }),
@@ -12059,9 +11684,6 @@ var factories = {
12059
11684
  carrier_tracking_number: factories.string(),
12060
11685
  external_reference_number: factories.string(),
12061
11686
  }); },
12062
- 'io.flow.internal.v0.models.logo': function () { return ({
12063
- url: factories.string(),
12064
- }); },
12065
11687
  'io.flow.internal.v0.models.lost_chargeback': function () { return ({
12066
11688
  id: factories.string(),
12067
11689
  order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
@@ -12082,9 +11704,6 @@ var factories = {
12082
11704
  'io.flow.internal.v0.models.loyalty_program_rewards': function () { return ({
12083
11705
  applied: arrayOf(function () { return factories['io.flow.internal.v0.models.loyalty_program_reward'](); }),
12084
11706
  }); },
12085
- 'io.flow.internal.v0.models.magento_install_form': function () { return ({
12086
- token: factories.string(),
12087
- }); },
12088
11707
  'io.flow.internal.v0.models.main_transaction': function () { return ({
12089
11708
  id: factories.string(),
12090
11709
  account: factories['io.flow.billing.v0.models.account_reference'](),
@@ -12453,52 +12072,6 @@ var factories = {
12453
12072
  key: factories.string(),
12454
12073
  expires_at: factories.date_time_iso_8601(),
12455
12074
  }); },
12456
- 'io.flow.internal.v0.models.optin_attribute': function () { return ({
12457
- name: factories.string(),
12458
- optin_attribute_key: factories.string(),
12459
- target: factories['io.flow.internal.v0.enums.prompt_target'](),
12460
- status: factories['io.flow.internal.v0.enums.content_status'](),
12461
- created_at: factories.date_time_iso_8601(),
12462
- updated_at: factories.date_time_iso_8601(),
12463
- }); },
12464
- 'io.flow.internal.v0.models.optin_attribute_form': function () { return ({
12465
- name: factories.string(),
12466
- optin_attribute_key: factories.string(),
12467
- target: factories['io.flow.internal.v0.enums.prompt_target'](),
12468
- status: factories['io.flow.internal.v0.enums.content_status'](),
12469
- }); },
12470
- 'io.flow.internal.v0.models.optin_prompt': function () { return ({
12471
- id: factories.string(),
12472
- optin_attribute: factories['io.flow.internal.v0.models.optin_attribute'](),
12473
- region: factories.string(),
12474
- options: arrayOf(function () { return factories['io.flow.internal.v0.enums.prompt_options'](); }),
12475
- content: factories['io.flow.internal.v0.unions.localizable_content'](),
12476
- position: factories.long(),
12477
- enforce_on: factories.date_time_iso_8601(),
12478
- display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
12479
- }); },
12480
- 'io.flow.internal.v0.models.optin_prompt_checkout_display': function () { return ({
12481
- discriminator: 'optin_prompt_checkout_display',
12482
- display_position: factories['io.flow.internal.v0.enums.prompt_checkout_display_position'](),
12483
- }); },
12484
- 'io.flow.internal.v0.models.optin_prompt_copy': function () { return ({
12485
- from: factories.string(),
12486
- to: factories.string(),
12487
- number_prompts: factories.long(),
12488
- }); },
12489
- 'io.flow.internal.v0.models.optin_prompt_copy_form': function () { return ({
12490
- from: factories.string(),
12491
- to: factories.string(),
12492
- }); },
12493
- 'io.flow.internal.v0.models.optin_prompt_form': function () { return ({
12494
- optin_attribute_key: factories.string(),
12495
- region: factories.string(),
12496
- options: arrayOf(function () { return factories['io.flow.internal.v0.enums.prompt_options'](); }),
12497
- content: factories['io.flow.internal.v0.models.localization_form'](),
12498
- position: factories.integer(),
12499
- enforce_on: factories.date_time_iso_8601(),
12500
- display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
12501
- }); },
12502
12075
  'io.flow.internal.v0.models.order_actionability': function () { return ({
12503
12076
  action: arrayOf(function () { return factories['io.flow.internal.v0.enums.order_action'](); }),
12504
12077
  lines: arrayOf(function () { return factories['io.flow.internal.v0.models.line_action_quantities'](); }),
@@ -12675,9 +12248,6 @@ var factories = {
12675
12248
  from_service_id: factories.string(),
12676
12249
  to_service_id: factories.string(),
12677
12250
  }); },
12678
- 'io.flow.internal.v0.models.order_submission_form': function () { return ({
12679
- authorization: factories['io.flow.payment.v0.unions.authorization_form'](),
12680
- }); },
12681
12251
  'io.flow.internal.v0.models.order_summary': function () { return ({
12682
12252
  id: factories.string(),
12683
12253
  organization: factories['io.flow.common.v0.models.organization_reference'](),
@@ -13150,6 +12720,8 @@ var factories = {
13150
12720
  discount: factories['io.flow.internal.v0.models.other_record_discount'](),
13151
12721
  net: factories.decimal(),
13152
12722
  identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
12723
+ revenue_share_percentage: factories.decimal(),
12724
+ revenue_share_plan: factories.string(),
13153
12725
  created_at: factories.date_time_iso_8601(),
13154
12726
  updated_at: factories.date_time_iso_8601(),
13155
12727
  posted_at: factories.date_time_iso_8601(),
@@ -13384,6 +12956,10 @@ var factories = {
13384
12956
  id: factories.string(),
13385
12957
  tribe: factories['io.flow.internal.v0.models.tribe'](),
13386
12958
  }); },
12959
+ 'io.flow.internal.v0.models.payment_is': function () { return ({
12960
+ lvg: factories.boolean(),
12961
+ manual: factories.boolean(),
12962
+ }); },
13387
12963
  'io.flow.internal.v0.models.payment_method_detail': function () { return ({
13388
12964
  method: factories['io.flow.reference.v0.models.payment_method'](),
13389
12965
  method_options: arrayOf(function () { return factories['io.flow.internal.v0.models.payment_method_option'](); }),
@@ -14006,12 +13582,24 @@ var factories = {
14006
13582
  restricted_regions: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellablility_region_result'](); }),
14007
13583
  rule_ids: arrayOf(function () { return factories.string(); }),
14008
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
+ }); },
14009
13596
  'io.flow.internal.v0.models.product_sellability_result': function () { return ({
14010
13597
  shop_id: factories.string(),
14011
13598
  product_number: factories.string(),
14012
13599
  request_id: factories.string(),
14013
13600
  hs6_code: factories.string(),
14014
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'](); }),
14015
13603
  rule_ids: arrayOf(function () { return factories.string(); }),
14016
13604
  }); },
14017
13605
  'io.flow.internal.v0.models.product_transaction': function () { return ({
@@ -14407,19 +13995,6 @@ var factories = {
14407
13995
  destination: factories['io.flow.reference.v0.models.country'](),
14408
13996
  summaries: arrayOf(function () { return factories['io.flow.internal.v0.models.rate_name_summary'](); }),
14409
13997
  }); },
14410
- 'io.flow.internal.v0.models.rebound_configuration': function () { return ({
14411
- id: factories.string(),
14412
- login: factories.string(),
14413
- api_key: factories.string(),
14414
- status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
14415
- orders_since_submitted_at: factories.date_time_iso_8601(),
14416
- }); },
14417
- 'io.flow.internal.v0.models.rebound_configuration_form': function () { return ({
14418
- login: factories.string(),
14419
- api_key: factories.string(),
14420
- status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
14421
- orders_since_submitted_at: factories.date_time_iso_8601(),
14422
- }); },
14423
13998
  'io.flow.internal.v0.models.record_reference': function () { return ({
14424
13999
  id: factories.string(),
14425
14000
  }); },
@@ -14736,6 +14311,14 @@ var factories = {
14736
14311
  'io.flow.internal.v0.models.rescreen_restrictions_products': function () { return ({
14737
14312
  placeholder: factories.boolean(),
14738
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
+ }); },
14739
14322
  'io.flow.internal.v0.models.restriction_category': function () { return ({
14740
14323
  category: factories.string(),
14741
14324
  }); },
@@ -14885,6 +14468,8 @@ var factories = {
14885
14468
  reviews: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_item_review'](); }),
14886
14469
  created_at: factories.date_time_iso_8601(),
14887
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'](); }),
14888
14473
  }); },
14889
14474
  'io.flow.internal.v0.models.restriction_product_decision_form': function () { return ({
14890
14475
  rule_decisions: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_rule_decision_form'](); }),
@@ -14917,6 +14502,8 @@ var factories = {
14917
14502
  auto_review_criteria: arrayOf(function () { return factories['io.flow.internal.v0.models.auto_review_criteria'](); }),
14918
14503
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
14919
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(),
14920
14507
  }); },
14921
14508
  'io.flow.internal.v0.models.restriction_rule_decision_form': function () { return ({
14922
14509
  rule_id: factories.string(),
@@ -14965,6 +14552,8 @@ var factories = {
14965
14552
  auto_review_criteria: arrayOf(function () { return factories['io.flow.internal.v0.models.auto_review_criteria'](); }),
14966
14553
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
14967
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(),
14968
14557
  }); },
14969
14558
  'io.flow.internal.v0.models.restriction_rule_lane_exemption': function () { return ({
14970
14559
  id: factories.string(),
@@ -14979,9 +14568,10 @@ var factories = {
14979
14568
  rule_id: factories.string(),
14980
14569
  description: factories.string(),
14981
14570
  is_rule_exempt: factories.boolean(),
14982
- exempt_countries: arrayOf(function () { return factories.string(); }),
14571
+ exempt_regions: arrayOf(function () { return factories.string(); }),
14983
14572
  ignored_keywords: arrayOf(function () { return factories.string(); }),
14984
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'](); }),
14985
14575
  }); },
14986
14576
  'io.flow.internal.v0.models.restriction_rule_override': function () { return ({
14987
14577
  id: factories.string(),
@@ -15012,8 +14602,14 @@ var factories = {
15012
14602
  num_products_setup_complete_with_pvs: factories.decimal(),
15013
14603
  num_orgs_transacting_with_pvs: factories.decimal(),
15014
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(),
15015
14609
  oldest_pv_product_date_setup_complete: factories.date_iso_8601(),
15016
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(),
15017
14613
  num_orgs_setup_complete_prs: factories.decimal(),
15018
14614
  num_products_setup_complete_prs: factories.decimal(),
15019
14615
  num_orgs_transacting_prs: factories.decimal(),
@@ -15182,20 +14778,47 @@ var factories = {
15182
14778
  discriminator: 'routing_processor',
15183
14779
  processor: factories['io.flow.internal.v0.enums.processor'](),
15184
14780
  }); },
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
+ }); },
15185
14793
  'io.flow.internal.v0.models.sandbox_setup': function () { return ({
15186
14794
  requested_by: factories.string(),
15187
14795
  }); },
15188
14796
  'io.flow.internal.v0.models.sandbox_setup_form': function () { return ({
15189
14797
  requested_by: factories.string(),
15190
14798
  }); },
15191
- 'io.flow.internal.v0.models.scheduled_payment': function () { return ({
15192
- payment: factories['io.flow.internal.v0.models.report_payment'](),
15193
- bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
15194
- account: factories['io.flow.internal.v0.models.report_account'](),
15195
- merchant: factories['io.flow.internal.v0.models.report_merchant'](),
15196
- owner: factories['io.flow.internal.v0.models.report_owner'](),
15197
- description: factories.string(),
15198
- }); },
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
+ }); },
14814
+ 'io.flow.internal.v0.models.scheduled_payment': function () { return ({
14815
+ payment: factories['io.flow.internal.v0.models.report_payment'](),
14816
+ bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
14817
+ account: factories['io.flow.internal.v0.models.report_account'](),
14818
+ merchant: factories['io.flow.internal.v0.models.report_merchant'](),
14819
+ owner: factories['io.flow.internal.v0.models.report_owner'](),
14820
+ description: factories.string(),
14821
+ }); },
15199
14822
  'io.flow.internal.v0.models.screen': function () { return ({
15200
14823
  id: factories.string(),
15201
14824
  q: factories.string(),
@@ -15310,22 +14933,6 @@ var factories = {
15310
14933
  freight_cost: factories.decimal(),
15311
14934
  customer_price: factories.decimal(),
15312
14935
  }); },
15313
- 'io.flow.internal.v0.models.shop': function () { return ({
15314
- id: factories.string(),
15315
- organization: factories['io.flow.common.v0.models.organization_reference'](),
15316
- myshopify_domain: factories.string(),
15317
- domain: factories.string(),
15318
- }); },
15319
- 'io.flow.internal.v0.models.shop_form': function () { return ({
15320
- organization_id: factories.string(),
15321
- token: factories.string(),
15322
- }); },
15323
- 'io.flow.internal.v0.models.shop_version': function () { return ({
15324
- id: factories.string(),
15325
- timestamp: factories.date_time_iso_8601(),
15326
- type: factories['io.flow.common.v0.enums.change_type'](),
15327
- shop: factories['io.flow.internal.v0.models.shop'](),
15328
- }); },
15329
14936
  'io.flow.internal.v0.models.shopify_catalog_publication': function () { return ({
15330
14937
  owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
15331
14938
  }); },
@@ -15336,14 +14943,6 @@ var factories = {
15336
14943
  token: factories['io.flow.internal.v0.models.shopify_channel_organization_token'](),
15337
14944
  service: factories['io.flow.internal.v0.enums.shopify_service'](),
15338
14945
  }); },
15339
- 'io.flow.internal.v0.models.shopify_check_inventory_error': function () { return ({
15340
- code: factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code'](),
15341
- messages: arrayOf(function () { return factories.string(); }),
15342
- numbers: arrayOf(function () { return factories.string(); }),
15343
- }); },
15344
- 'io.flow.internal.v0.models.shopify_code_form': function () { return ({
15345
- code: factories.string(),
15346
- }); },
15347
14946
  'io.flow.internal.v0.models.shopify_dispute': function () { return ({
15348
14947
  id: factories.string(),
15349
14948
  organization_id: factories.string(),
@@ -15371,64 +14970,28 @@ var factories = {
15371
14970
  organization: factories.string(),
15372
14971
  dispute: factories['io.flow.internal.v0.models.shopify_dispute'](),
15373
14972
  }); },
15374
- '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 ({
15375
14978
  id: factories.string(),
15376
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
15377
- short_id: factories.string(),
14979
+ item_number: factories.string(),
14980
+ codes: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_hs10_code'](); }),
15378
14981
  }); },
15379
- 'io.flow.internal.v0.models.shopify_experience_short_id_deleted': function () { return ({
15380
- discriminator: 'shopify_experience_short_id_deleted',
14982
+ 'io.flow.internal.v0.models.shopify_hs10_codes_deleted': function () { return ({
14983
+ discriminator: 'shopify_hs10_codes_deleted',
15381
14984
  event_id: factories.string(),
15382
14985
  timestamp: factories.date_time_iso_8601(),
15383
14986
  organization: factories.string(),
15384
- short_id: factories['io.flow.internal.v0.models.shopify_experience_short_id'](),
14987
+ id: factories.string(),
15385
14988
  }); },
15386
- 'io.flow.internal.v0.models.shopify_experience_short_id_upserted': function () { return ({
15387
- discriminator: 'shopify_experience_short_id_upserted',
14989
+ 'io.flow.internal.v0.models.shopify_hs10_codes_upserted': function () { return ({
14990
+ discriminator: 'shopify_hs10_codes_upserted',
15388
14991
  event_id: factories.string(),
15389
14992
  timestamp: factories.date_time_iso_8601(),
15390
14993
  organization: factories.string(),
15391
- short_id: factories['io.flow.internal.v0.models.shopify_experience_short_id'](),
15392
- }); },
15393
- 'io.flow.internal.v0.models.shopify_gift_card_balance': function () { return ({
15394
- gift_card_id: factories.long(),
15395
- last_characters: factories.string(),
15396
- amount: factories.decimal(),
15397
- currency: factories.string(),
15398
- }); },
15399
- 'io.flow.internal.v0.models.shopify_gift_card_balance_form': function () { return ({
15400
- number: factories.string(),
15401
- }); },
15402
- 'io.flow.internal.v0.models.shopify_gift_card_payment_form': function () { return ({
15403
- code: factories.string(),
15404
- customer_id: factories.long(),
15405
- }); },
15406
- 'io.flow.internal.v0.models.shopify_gift_card_redemption': function () { return ({
15407
- adjustment_id: factories.long(),
15408
- gift_card_id: factories.long(),
15409
- last_characters: factories.string(),
15410
- amount: factories.decimal(),
15411
- currency: factories.string(),
15412
- }); },
15413
- 'io.flow.internal.v0.models.shopify_gift_card_redemption_form': function () { return ({
15414
- number: factories.string(),
15415
- amount: factories.decimal(),
15416
- currency: factories.string(),
15417
- }); },
15418
- 'io.flow.internal.v0.models.shopify_gift_card_reversal': function () { return ({
15419
- adjustment_id: factories.long(),
15420
- gift_card_id: factories.long(),
15421
- last_characters: factories.string(),
15422
- amount: factories.decimal(),
15423
- currency: factories.string(),
15424
- }); },
15425
- 'io.flow.internal.v0.models.shopify_gift_card_reversal_form': function () { return ({
15426
- number: factories.string(),
15427
- amount: factories.decimal(),
15428
- currency: factories.string(),
15429
- }); },
15430
- 'io.flow.internal.v0.models.shopify_grants_check': function () { return ({
15431
- placeholder: factories.string(),
14994
+ shopify_hs10_codes: factories['io.flow.internal.v0.models.shopify_hs10_codes'](),
15432
14995
  }); },
15433
14996
  'io.flow.internal.v0.models.shopify_incoterm_includes': function () { return ({
15434
14997
  duties: factories.boolean(),
@@ -15751,11 +15314,6 @@ var factories = {
15751
15314
  'io.flow.internal.v0.models.shopify_monitoring_tracking_url': function () { return ({
15752
15315
  url: factories.string(),
15753
15316
  }); },
15754
- 'io.flow.internal.v0.models.shopify_order_authorization': function () { return ({
15755
- result: factories['io.flow.payment.v0.models.authorization_result'](),
15756
- detail: factories['io.flow.internal.v0.models.shopify_order_detail'](),
15757
- redirect: factories.string(),
15758
- }); },
15759
15317
  'io.flow.internal.v0.models.shopify_order_cancel_form': function () { return ({
15760
15318
  note: factories.string(),
15761
15319
  }); },
@@ -15764,25 +15322,10 @@ var factories = {
15764
15322
  shopify_order_id: factories.long(),
15765
15323
  message: factories.string(),
15766
15324
  }); },
15767
- 'io.flow.internal.v0.models.shopify_order_content': function () { return ({
15768
- lines: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_order_line_content'](); }),
15769
- discounts: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_order_discount_content'](); }),
15770
- }); },
15771
15325
  'io.flow.internal.v0.models.shopify_order_destination_form': function () { return ({
15772
15326
  destination: factories['io.flow.common.v0.models.address'](),
15773
15327
  order_note: factories.string(),
15774
15328
  }); },
15775
- 'io.flow.internal.v0.models.shopify_order_detail': function () { return ({
15776
- organization: factories['io.flow.common.v0.models.organization_reference'](),
15777
- number: factories.string(),
15778
- order: factories['io.flow.experience.v0.models.order'](),
15779
- payments: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_payment_summary'](); }),
15780
- contents: factories['io.flow.internal.v0.models.shopify_order_content'](),
15781
- }); },
15782
- 'io.flow.internal.v0.models.shopify_order_discount_content': function () { return ({
15783
- description: factories.string(),
15784
- code: factories.string(),
15785
- }); },
15786
15329
  'io.flow.internal.v0.models.shopify_order_fulfillments_snapshot': function () { return ({
15787
15330
  id: factories.string(),
15788
15331
  organization_id: factories.string(),
@@ -15804,26 +15347,6 @@ var factories = {
15804
15347
  timestamp: factories.date_time_iso_8601(),
15805
15348
  shopify_order_fulfillments_snapshot: factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'](),
15806
15349
  }); },
15807
- 'io.flow.internal.v0.models.shopify_order_inventory_check': function () { return ({
15808
- item_number: factories.string(),
15809
- quantity: factories.long(),
15810
- order_number: factories.string(),
15811
- }); },
15812
- 'io.flow.internal.v0.models.shopify_order_line_attribute': function () { return ({
15813
- key: factories.string(),
15814
- name: factories.string(),
15815
- value: factories.string(),
15816
- }); },
15817
- 'io.flow.internal.v0.models.shopify_order_line_content': function () { return ({
15818
- item_number: factories.string(),
15819
- quantity: factories.long(),
15820
- price: factories['io.flow.common.v0.models.price_with_base'](),
15821
- total: factories['io.flow.common.v0.models.price_with_base'](),
15822
- name: factories.string(),
15823
- image_url: factories.string(),
15824
- variant_url: factories.string(),
15825
- attributes: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_order_line_attribute'](); }),
15826
- }); },
15827
15350
  'io.flow.internal.v0.models.shopify_order_risk_assessment': function () { return ({
15828
15351
  id: factories.string(),
15829
15352
  risk_level: factories.string(),
@@ -15861,28 +15384,12 @@ var factories = {
15861
15384
  organization: factories.string(),
15862
15385
  transaction: factories['io.flow.internal.v0.models.shopify_order_transaction'](),
15863
15386
  }); },
15864
- 'io.flow.internal.v0.models.shopify_organization_settings': function () { return ({
15865
- id: factories.string(),
15866
- process_label: factories.boolean(),
15867
- send_order_receipt: factories.boolean(),
15868
- send_inventory_update: factories.boolean(),
15869
- }); },
15870
- 'io.flow.internal.v0.models.shopify_organization_settings_form': function () { return ({
15871
- process_label: factories.boolean(),
15872
- send_order_receipt: factories.boolean(),
15873
- send_inventory_update: factories.boolean(),
15874
- }); },
15875
15387
  'io.flow.internal.v0.models.shopify_partner_webhook': function () { return ({
15876
15388
  placeholder: factories.boolean(),
15877
15389
  }); },
15878
15390
  'io.flow.internal.v0.models.shopify_partner_webhook_raw': function () { return ({
15879
15391
  placeholder: factories.boolean(),
15880
15392
  }); },
15881
- 'io.flow.internal.v0.models.shopify_payment_summary': function () { return ({
15882
- description: factories.string(),
15883
- address: factories['io.flow.common.v0.models.address'](),
15884
- contact: factories['io.flow.common.v0.models.contact'](),
15885
- }); },
15886
15393
  'io.flow.internal.v0.models.shopify_product_bundle': function () { return ({
15887
15394
  id: factories.string(),
15888
15395
  underlying: factories['io.flow.internal.v0.models.shopify_product_bundle_underlying'](),
@@ -15964,85 +15471,17 @@ var factories = {
15964
15471
  shopify_product: factories['io.flow.shopify.external.v0.models.product'](),
15965
15472
  deleted_at: factories.date_time_iso_8601(),
15966
15473
  }); },
15967
- 'io.flow.internal.v0.models.shopify_promo_form': function () { return ({
15968
- name: factories.string(),
15969
- starts_at: factories.date_time_iso_8601(),
15970
- ends_at: factories.date_time_iso_8601(),
15971
- status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
15972
- rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
15973
- stackable_limit: factories.long(),
15974
- behaviors: arrayOf(function () { return factories['io.flow.internal.v0.enums.shopify_promotion_behavior'](); }),
15975
- }); },
15976
- 'io.flow.internal.v0.models.shopify_promotion': function () { return ({
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(),
15977
15478
  id: factories.string(),
15978
- name: factories.string(),
15979
- starts_at: factories.date_time_iso_8601(),
15980
- ends_at: factories.date_time_iso_8601(),
15981
- status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
15982
- rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
15983
- stackable_limit: factories.long(),
15984
- behaviors: arrayOf(function () { return factories['io.flow.internal.v0.enums.shopify_promotion_behavior'](); }),
15985
- }); },
15986
- 'io.flow.internal.v0.models.shopify_promotion_attribute_value': function () { return ({
15987
- name: factories.string(),
15988
- discount: factories['io.flow.common.v0.models.money'](),
15989
- }); },
15990
- 'io.flow.internal.v0.models.shopify_promotion_fixed_amount': function () { return ({
15991
- discriminator: 'shopify_promotion_fixed_amount',
15992
- amount: factories.decimal(),
15993
- currency: factories.string(),
15994
- }); },
15995
- 'io.flow.internal.v0.models.shopify_promotion_form': function () { return ({
15996
- code: factories.string(),
15997
- }); },
15998
- 'io.flow.internal.v0.models.shopify_promotion_item_entitlement': function () { return ({
15999
- discriminator: 'shopify_promotion_item_entitlement',
16000
- q: factories.string(),
16001
- allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
16002
- }); },
16003
- 'io.flow.internal.v0.models.shopify_promotion_item_prerequisite': function () { return ({
16004
- discriminator: 'shopify_promotion_item_prerequisite',
16005
- q: factories.string(),
16006
- at_least: factories.long(),
16007
- at_most: factories.long(),
16008
- exclude_from_offer: factories.boolean(),
16009
- }); },
16010
- 'io.flow.internal.v0.models.shopify_promotion_max_amount': function () { return ({
16011
- discriminator: 'shopify_promotion_max_amount',
16012
- amount: factories.decimal(),
16013
- currency: factories.string(),
16014
- }); },
16015
- 'io.flow.internal.v0.models.shopify_promotion_max_limit': function () { return ({
16016
- discriminator: 'shopify_promotion_max_limit',
16017
- limit: factories.long(),
16018
- }); },
16019
- 'io.flow.internal.v0.models.shopify_promotion_offer': function () { return ({
16020
- discount: factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount'](),
16021
- entitlement: factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement'](),
16022
- max: arrayOf(function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_max'](); }),
16023
- }); },
16024
- 'io.flow.internal.v0.models.shopify_promotion_order_entitlement': function () { return ({
16025
- discriminator: 'shopify_promotion_order_entitlement',
16026
- components: arrayOf(function () { return factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component'](); }),
16027
- allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
16028
- }); },
16029
- 'io.flow.internal.v0.models.shopify_promotion_order_prerequisite': function () { return ({
16030
- discriminator: 'shopify_promotion_order_prerequisite',
16031
- q: factories.string(),
16032
15479
  }); },
16033
- 'io.flow.internal.v0.models.shopify_promotion_percent': function () { return ({
16034
- discriminator: 'shopify_promotion_percent',
16035
- percent: factories.long(),
16036
- }); },
16037
- 'io.flow.internal.v0.models.shopify_promotion_rule': function () { return ({
16038
- prerequisites: arrayOf(function () { return factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite'](); }),
16039
- offers: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_promotion_offer'](); }),
16040
- }); },
16041
- 'io.flow.internal.v0.models.shopify_shop_deleted': function () { return ({
16042
- discriminator: 'shopify_shop_deleted',
15480
+ 'io.flow.internal.v0.models.shopify_report_file_upserted': function () { return ({
15481
+ discriminator: 'shopify_report_file_upserted',
16043
15482
  event_id: factories.string(),
16044
15483
  timestamp: factories.date_time_iso_8601(),
16045
- id: factories.string(),
15484
+ shopify_report_file: factories['io.flow.internal.v0.models.report_file'](),
16046
15485
  }); },
16047
15486
  'io.flow.internal.v0.models.shopify_shop_statistics': function () { return ({
16048
15487
  id: factories.string(),
@@ -16053,12 +15492,6 @@ var factories = {
16053
15492
  catalog_products_count: factories.long(),
16054
15493
  initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
16055
15494
  }); },
16056
- 'io.flow.internal.v0.models.shopify_shop_upserted': function () { return ({
16057
- discriminator: 'shopify_shop_upserted',
16058
- event_id: factories.string(),
16059
- timestamp: factories.date_time_iso_8601(),
16060
- shop: factories['io.flow.internal.v0.models.shop'](),
16061
- }); },
16062
15495
  'io.flow.internal.v0.models.shopify_store_detail': function () { return ({
16063
15496
  shopify_domain: factories.string(),
16064
15497
  shop_id: factories.string(),
@@ -16067,19 +15500,12 @@ var factories = {
16067
15500
  id: factories.string(),
16068
15501
  request: factories.object(),
16069
15502
  }); },
16070
- 'io.flow.internal.v0.models.shopify_webhook': function () { return ({
16071
- id: factories.string(),
16072
- shop_id: factories.string(),
16073
- address: factories.string(),
16074
- topic: factories['io.flow.shopify.external.v0.enums.topic'](),
16075
- }); },
16076
- 'io.flow.internal.v0.models.shopify_webhook_event': function () { return ({
16077
- placeholder: factories.string(),
16078
- }); },
16079
- 'io.flow.internal.v0.models.shopify_webhook_form': function () { return ({
16080
- myshopify_domain: factories.string(),
16081
- address: factories.string(),
16082
- topic: factories['io.flow.shopify.external.v0.enums.topic'](),
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'](),
16083
15509
  }); },
16084
15510
  'io.flow.internal.v0.models.shopper_fees': function () { return ({
16085
15511
  fuel: factories.decimal(),
@@ -16252,14 +15678,6 @@ var factories = {
16252
15678
  discriminator: 'statement_creation_metadata',
16253
15679
  period: factories['io.flow.common.v0.models.datetime_range'](),
16254
15680
  }); },
16255
- 'io.flow.internal.v0.models.store_connection': function () { return ({
16256
- organization: factories['io.flow.common.v0.models.organization_reference'](),
16257
- id: factories.string(),
16258
- domain: factories.string(),
16259
- }); },
16260
- 'io.flow.internal.v0.models.store_connection_form': function () { return ({
16261
- organization: factories.string(),
16262
- }); },
16263
15681
  'io.flow.internal.v0.models.string_feature_default_value': function () { return ({
16264
15682
  discriminator: 'string',
16265
15683
  value: factories.string(),
@@ -17263,25 +16681,6 @@ var factories = {
17263
16681
  timestamp: factories.date_time_iso_8601(),
17264
16682
  user: factories['io.flow.common.v0.models.user'](),
17265
16683
  }); },
17266
- 'io.flow.internal.v0.models.v1_checkout': function () { return ({
17267
- id: factories.string(),
17268
- organization: factories['io.flow.common.v0.models.organization_summary'](),
17269
- builder: factories['io.flow.experience.v0.models.order_builder'](),
17270
- platform: factories['io.flow.internal.v0.models.checkout_platform_data'](),
17271
- content: factories['io.flow.internal.v0.models.checkout_content'](),
17272
- destinations: arrayOf(function () { return factories['io.flow.reference.v0.models.country'](); }),
17273
- optins: arrayOf(function () { return factories['io.flow.internal.v0.models.optin_prompt'](); }),
17274
- addresses: arrayOf(function () { return factories['io.flow.experience.v0.models.address_configuration'](); }),
17275
- features: factories['io.flow.internal.v0.models.feature_value_result'](),
17276
- configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
17277
- cart: factories['io.flow.shopify.v0.models.shopify_cart'](),
17278
- customer: factories['io.flow.customer.v0.models.customer'](),
17279
- address_book: factories['io.flow.customer.v0.models.customer_address_book'](),
17280
- gift_card_program: factories['io.flow.internal.v0.models.gift_card_program'](),
17281
- loyalty_program: factories['io.flow.internal.v0.models.loyalty_program'](),
17282
- payment: factories['io.flow.internal.v0.models.checkout_payment'](),
17283
- customer_bundle: factories['io.flow.customer.v0.models.customer_bundle'](),
17284
- }); },
17285
16684
  'io.flow.internal.v0.models.validated_address': function () { return ({
17286
16685
  company_name: factories.string(),
17287
16686
  person_name: factories.string(),
@@ -17328,11 +16727,6 @@ var factories = {
17328
16727
  direction: factories['io.flow.label.v0.enums.direction'](),
17329
16728
  package_dimensions_source: factories['io.flow.label.v0.enums.package_dimensions_source'](),
17330
16729
  }); },
17331
- 'io.flow.internal.v0.models.validation_character_length': function () { return ({
17332
- discriminator: 'validation_character_length',
17333
- min: factories.long(),
17334
- max: factories.long(),
17335
- }); },
17336
16730
  'io.flow.internal.v0.models.vies_result': function () { return ({
17337
16731
  country: factories.string(),
17338
16732
  number: factories.string(),
@@ -17500,15 +16894,6 @@ var factories = {
17500
16894
  ]);
17501
16895
  return f();
17502
16896
  },
17503
- 'io.flow.internal.v0.unions.content_item': function () {
17504
- var f = faker.helpers.arrayElement([
17505
- function () { return factories['io.flow.internal.v0.models.dict'](); },
17506
- function () { return factories['io.flow.internal.v0.models.href'](); },
17507
- function () { return factories['io.flow.internal.v0.models.content_label'](); },
17508
- function () { return factories['io.flow.internal.v0.models.load'](); },
17509
- ]);
17510
- return f();
17511
- },
17512
16897
  'io.flow.internal.v0.unions.decline_reason': function () {
17513
16898
  var f = faker.helpers.arrayElement([
17514
16899
  function () { return factories['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'](); },
@@ -17621,12 +17006,8 @@ var factories = {
17621
17006
  function () { return factories['io.flow.internal.v0.models.channel_order_acceptance_upserted'](); },
17622
17007
  function () { return factories['io.flow.internal.v0.models.channel_order_acceptance_deleted'](); },
17623
17008
  function () { return factories['io.flow.internal.v0.models.channel_order_acceptance_failed'](); },
17624
- function () { return factories['io.flow.internal.v0.models.checkout_configuration_upserted'](); },
17625
- function () { return factories['io.flow.internal.v0.models.checkout_configuration_deleted'](); },
17626
17009
  function () { return factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted'](); },
17627
17010
  function () { return factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted'](); },
17628
- function () { return factories['io.flow.internal.v0.models.localized_content_upserted'](); },
17629
- function () { return factories['io.flow.internal.v0.models.localization_upserted'](); },
17630
17011
  function () { return factories['io.flow.internal.v0.models.internal_channel_rate_deleted'](); },
17631
17012
  function () { return factories['io.flow.internal.v0.models.internal_channel_rate_upserted'](); },
17632
17013
  function () { return factories['io.flow.internal.v0.models.rate_deleted'](); },
@@ -17727,8 +17108,6 @@ var factories = {
17727
17108
  function () { return factories['io.flow.internal.v0.models.item_harmonization_upserted'](); },
17728
17109
  function () { return factories['io.flow.internal.v0.models.item_harmonization_deleted'](); },
17729
17110
  function () { return factories['io.flow.internal.v0.models.harmonization_classification_statistics_published'](); },
17730
- function () { return factories['io.flow.internal.v0.models.issuer_upserted'](); },
17731
- function () { return factories['io.flow.internal.v0.models.issuer_deleted'](); },
17732
17111
  function () { return factories['io.flow.internal.v0.models.item_form_import_request'](); },
17733
17112
  function () { return factories['io.flow.internal.v0.models.label_request_error_upserted'](); },
17734
17113
  function () { return factories['io.flow.internal.v0.models.label_request_error_deleted'](); },
@@ -17826,10 +17205,8 @@ var factories = {
17826
17205
  function () { return factories['io.flow.internal.v0.models.restriction_rule_effect_deleted'](); },
17827
17206
  function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](); },
17828
17207
  function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'](); },
17829
- function () { return factories['io.flow.internal.v0.models.shopify_shop_upserted'](); },
17830
- function () { return factories['io.flow.internal.v0.models.shopify_shop_deleted'](); },
17831
- function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](); },
17832
- function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted'](); },
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'](); },
17833
17210
  function () { return factories['io.flow.internal.v0.models.shopify_markets_order_upserted'](); },
17834
17211
  function () { return factories['io.flow.internal.v0.models.shopify_markets_order_deleted'](); },
17835
17212
  function () { return factories['io.flow.internal.v0.models.shopify_markets_shop_upserted'](); },
@@ -17875,6 +17252,8 @@ var factories = {
17875
17252
  function () { return factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](); },
17876
17253
  function () { return factories['io.flow.internal.v0.models.shopify_dispute_upserted'](); },
17877
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'](); },
17878
17257
  function () { return factories['io.flow.internal.v0.models.stripe_authorization_deleted'](); },
17879
17258
  function () { return factories['io.flow.internal.v0.models.stripe_authorization_upserted'](); },
17880
17259
  function () { return factories['io.flow.internal.v0.models.stripe_reversal_deleted'](); },
@@ -18057,19 +17436,6 @@ var factories = {
18057
17436
  ]);
18058
17437
  return f();
18059
17438
  },
18060
- 'io.flow.internal.v0.unions.localizable_content': function () {
18061
- var f = faker.helpers.arrayElement([
18062
- function () { return factories['io.flow.internal.v0.models.localizable_content_reference'](); },
18063
- function () { return factories['io.flow.internal.v0.models.localization'](); },
18064
- ]);
18065
- return f();
18066
- },
18067
- 'io.flow.internal.v0.unions.optin_prompt_display': function () {
18068
- var f = faker.helpers.arrayElement([
18069
- function () { return factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](); },
18070
- ]);
18071
- return f();
18072
- },
18073
17439
  'io.flow.internal.v0.unions.order_action_form': function () {
18074
17440
  var f = faker.helpers.arrayElement([
18075
17441
  function () { return factories['io.flow.internal.v0.models.whole_order_action_form'](); },
@@ -18203,34 +17569,6 @@ var factories = {
18203
17569
  ]);
18204
17570
  return f();
18205
17571
  },
18206
- 'io.flow.internal.v0.unions.shopify_promotion_offer_discount': function () {
18207
- var f = faker.helpers.arrayElement([
18208
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount'](); },
18209
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_percent'](); },
18210
- ]);
18211
- return f();
18212
- },
18213
- 'io.flow.internal.v0.unions.shopify_promotion_offer_entitlement': function () {
18214
- var f = faker.helpers.arrayElement([
18215
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement'](); },
18216
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement'](); },
18217
- ]);
18218
- return f();
18219
- },
18220
- 'io.flow.internal.v0.unions.shopify_promotion_offer_max': function () {
18221
- var f = faker.helpers.arrayElement([
18222
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_limit'](); },
18223
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_amount'](); },
18224
- ]);
18225
- return f();
18226
- },
18227
- 'io.flow.internal.v0.unions.shopify_promotion_prerequisite': function () {
18228
- var f = faker.helpers.arrayElement([
18229
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite'](); },
18230
- function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite'](); },
18231
- ]);
18232
- return f();
18233
- },
18234
17572
  'io.flow.internal.v0.unions.simplified_classification_taxonomy': function () {
18235
17573
  var f = faker.helpers.arrayElement([
18236
17574
  function () { return factories['io.flow.internal.v0.models.simplified_taxonomy_category'](); },
@@ -18328,12 +17666,6 @@ var factories = {
18328
17666
  ]);
18329
17667
  return f();
18330
17668
  },
18331
- 'io.flow.internal.v0.unions.validation_rule': function () {
18332
- var f = faker.helpers.arrayElement([
18333
- function () { return factories['io.flow.internal.v0.models.validation_character_length'](); },
18334
- ]);
18335
- return f();
18336
- },
18337
17669
  'io.flow.inventory.v0.enums.aggregate': function () { return faker.helpers.arrayElement(['maximum', 'minimum']); },
18338
17670
  'io.flow.inventory.v0.enums.inventory_status': function () { return faker.helpers.arrayElement(['has_inventory', 'no_inventory']); },
18339
17671
  'io.flow.inventory.v0.enums.update_type': function () { return faker.helpers.arrayElement(['change', 'set']); },
@@ -19005,61 +18337,6 @@ var factories = {
19005
18337
  ]);
19006
18338
  return f();
19007
18339
  },
19008
- 'io.flow.order.management.event.v0.models.fulfillment_item_allocation_details': function () { return ({
19009
- item_number: factories.string(),
19010
- line_number: factories.long(),
19011
- levies: factories['io.flow.common.v0.models.price_with_base'](),
19012
- total: factories['io.flow.common.v0.models.price_with_base'](),
19013
- }); },
19014
- 'io.flow.order.management.event.v0.models.order_placed': function () { return ({
19015
- discriminator: 'order_placed',
19016
- event_id: factories.string(),
19017
- timestamp: factories.date_time_iso_8601(),
19018
- organization: factories.string(),
19019
- order_number: factories.string(),
19020
- order: factories['io.flow.experience.v0.models.order'](),
19021
- allocation: factories['io.flow.experience.v0.models.allocation_v2'](),
19022
- }); },
19023
- 'io.flow.order.management.event.v0.models.order_placed_v2': function () { return ({
19024
- discriminator: 'order_placed_v2',
19025
- event_id: factories.string(),
19026
- timestamp: factories.date_time_iso_8601(),
19027
- organization: factories.string(),
19028
- order_placed: factories['io.flow.order.management.v0.models.order_placed_details'](),
19029
- }); },
19030
- 'io.flow.order.management.event.v0.models.ready_to_fulfill': function () { return ({
19031
- discriminator: 'ready_to_fulfill',
19032
- event_id: factories.string(),
19033
- timestamp: factories.date_time_iso_8601(),
19034
- organization: factories.string(),
19035
- order_number: factories.string(),
19036
- order: factories['io.flow.experience.v0.models.order'](),
19037
- fulfillments: arrayOf(function () { return factories['io.flow.order.management.v0.models.fulfillment'](); }),
19038
- fulfillment_item_allocation_details: arrayOf(function () { return factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](); }),
19039
- }); },
19040
- 'io.flow.order.management.event.v0.models.ready_to_fulfill_details': function () { return ({
19041
- id: factories.string(),
19042
- order_number: factories.string(),
19043
- order: factories['io.flow.experience.v0.models.order'](),
19044
- fulfillments: arrayOf(function () { return factories['io.flow.order.management.v0.models.fulfillment'](); }),
19045
- fulfillment_item_allocation_details: arrayOf(function () { return factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](); }),
19046
- }); },
19047
- 'io.flow.order.management.event.v0.models.ready_to_fulfill_v2': function () { return ({
19048
- discriminator: 'ready_to_fulfill_v2',
19049
- event_id: factories.string(),
19050
- timestamp: factories.date_time_iso_8601(),
19051
- organization: factories.string(),
19052
- ready_to_fulfill: factories['io.flow.order.management.event.v0.models.ready_to_fulfill_details'](),
19053
- }); },
19054
- 'io.flow.order.management.event.v0.unions.order_management_event': function () {
19055
- var f = faker.helpers.arrayElement([
19056
- function () { return factories['io.flow.order.management.event.v0.models.order_placed'](); },
19057
- function () { return factories['io.flow.order.management.event.v0.models.order_placed_v2'](); },
19058
- function () { return factories['io.flow.order.management.event.v0.models.ready_to_fulfill'](); },
19059
- function () { return factories['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'](); },
19060
- ]);
19061
- return f();
19062
- },
19063
18340
  'io.flow.order.management.v0.enums.cancel_reason': function () { return faker.helpers.arrayElement(['out_of_stock', 'consumer_requested', 'flow_cancel']); },
19064
18341
  'io.flow.order.management.v0.enums.fulfillment_item_quantity_status': function () { return faker.helpers.arrayElement(['new', 'shipped', 'cancelled']); },
19065
18342
  'io.flow.order.management.v0.enums.order_change_source': function () { return faker.helpers.arrayElement(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']); },
@@ -21666,6 +20943,7 @@ var factories = {
21666
20943
  taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
21667
20944
  taxonomy_data: arrayOf(function () { return factories['io.flow.product.v0.models.product_taxonomy_data'](); }),
21668
20945
  item_numbers: arrayOf(function () { return factories.string(); }),
20946
+ highest_value_item_number: factories.string(),
21669
20947
  updated_at: factories.date_time_iso_8601(),
21670
20948
  deleted_at: factories.date_time_iso_8601(),
21671
20949
  }); },
@@ -22484,16 +21762,12 @@ var factories = {
22484
21762
  shop_id: factories.string(),
22485
21763
  product_id: factories.string(),
22486
21764
  name: factories.string(),
22487
- price: factories['io.flow.sellability.v0.models.product_sellability_price'](),
21765
+ price: factories['io.flow.common.v0.models.money'](),
22488
21766
  description: factories.string(),
22489
21767
  taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
22490
21768
  status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
22491
21769
  dry_run: factories.boolean(),
22492
21770
  }); },
22493
- 'io.flow.sellability.v0.models.product_sellability_price': function () { return ({
22494
- currency: factories.string(),
22495
- amount: factories.decimal(),
22496
- }); },
22497
21771
  'io.flow.sellability.v0.models.sellability_error': function () { return ({
22498
21772
  discriminator: 'sellability_error',
22499
21773
  code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
@@ -22510,90 +21784,6 @@ var factories = {
22510
21784
  ]);
22511
21785
  return f();
22512
21786
  },
22513
- 'io.flow.session.v0.models.cart_reference': function () { return ({
22514
- id: factories.string(),
22515
- }); },
22516
- 'io.flow.session.v0.models.local_session': function () { return ({
22517
- country: factories['io.flow.reference.v0.models.country'](),
22518
- currency: factories['io.flow.reference.v0.models.currency'](),
22519
- language: factories['io.flow.reference.v0.models.language'](),
22520
- locale: factories['io.flow.reference.v0.models.locale'](),
22521
- experience: factories['io.flow.experience.v0.models.experience_geo'](),
22522
- }); },
22523
- 'io.flow.session.v0.models.organization_session': function () { return ({
22524
- discriminator: 'organization_session',
22525
- id: factories.string(),
22526
- organization: factories.string(),
22527
- visitor: factories['io.flow.session.v0.models.session_visitor'](),
22528
- visit: factories['io.flow.session.v0.models.session_visit'](),
22529
- environment: factories['io.flow.common.v0.enums.environment'](),
22530
- attributes: objectOf(function () { return factories.string(); }),
22531
- ip: factories.string(),
22532
- local: factories['io.flow.session.v0.models.local_session'](),
22533
- geo: factories['io.flow.session.v0.models.session_geo'](),
22534
- experience: factories['io.flow.experience.v0.models.experience_geo'](),
22535
- format: factories['io.flow.session.v0.models.session_format'](),
22536
- }); },
22537
- 'io.flow.session.v0.models.organization_session_authorization': function () { return ({
22538
- discriminator: 'organization_session_authorization',
22539
- organization: factories['io.flow.common.v0.models.organization_reference'](),
22540
- environment: factories['io.flow.common.v0.enums.environment'](),
22541
- }); },
22542
- 'io.flow.session.v0.models.session_authorization_form': function () { return ({
22543
- session: factories.string(),
22544
- }); },
22545
- 'io.flow.session.v0.models.session_currency_format': function () { return ({
22546
- symbol: factories['io.flow.common.v0.enums.currency_symbol_format'](),
22547
- label_formatters: arrayOf(function () { return factories['io.flow.common.v0.enums.currency_label_formatter'](); }),
22548
- }); },
22549
- 'io.flow.session.v0.models.session_expiration_config': function () { return ({
22550
- unit: factories['io.flow.common.v0.enums.unit_of_time'](),
22551
- value: factories.long(),
22552
- }); },
22553
- 'io.flow.session.v0.models.session_form': function () { return ({
22554
- ip: factories.string(),
22555
- experience: factories.string(),
22556
- country: factories.string(),
22557
- currency: factories.string(),
22558
- language: factories.string(),
22559
- locale: factories.string(),
22560
- attributes: objectOf(function () { return factories.string(); }),
22561
- }); },
22562
- 'io.flow.session.v0.models.session_format': function () { return ({
22563
- currency: factories['io.flow.session.v0.models.session_currency_format'](),
22564
- }); },
22565
- 'io.flow.session.v0.models.session_geo': function () { return ({
22566
- country: factories['io.flow.reference.v0.models.country'](),
22567
- currency: factories['io.flow.reference.v0.models.currency'](),
22568
- language: factories['io.flow.reference.v0.models.language'](),
22569
- locale: factories['io.flow.reference.v0.models.locale'](),
22570
- }); },
22571
- 'io.flow.session.v0.models.session_put_form': function () { return ({
22572
- ip: factories.string(),
22573
- experience: factories.string(),
22574
- country: factories.string(),
22575
- currency: factories.string(),
22576
- language: factories.string(),
22577
- locale: factories.string(),
22578
- attributes: objectOf(function () { return factories.string(); }),
22579
- }); },
22580
- 'io.flow.session.v0.models.session_visit': function () { return ({
22581
- id: factories.string(),
22582
- expires_at: factories.date_time_iso_8601(),
22583
- }); },
22584
- 'io.flow.session.v0.models.session_visitor': function () { return ({
22585
- id: factories.string(),
22586
- }); },
22587
- 'io.flow.session.v0.unions.session': function () {
22588
- var f = faker.helpers.arrayElement([function () { return factories['io.flow.session.v0.models.organization_session'](); }]);
22589
- return f();
22590
- },
22591
- 'io.flow.session.v0.unions.session_authorization': function () {
22592
- var f = faker.helpers.arrayElement([
22593
- function () { return factories['io.flow.session.v0.models.organization_session_authorization'](); },
22594
- ]);
22595
- return f();
22596
- },
22597
21787
  'io.flow.shopify.external.v0.enums.cancel_reason': function () { return faker.helpers.arrayElement(['customer', 'fraud', 'inventory', 'declined', 'other']); },
22598
21788
  'io.flow.shopify.external.v0.enums.discount_status': function () { return faker.helpers.arrayElement(['enabled', 'disabled', 'depleted']); },
22599
21789
  'io.flow.shopify.external.v0.enums.discount_type': function () { return faker.helpers.arrayElement(['fixed_amount', 'percentage', 'shipping']); },
@@ -23856,7 +23046,7 @@ var factories = {
23856
23046
  'sync_product_catalog',
23857
23047
  'shopify_webhook',
23858
23048
  ]); },
23859
- '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']); },
23860
23050
  'io.flow.shopify.markets.internal.v0.enums.shopify_markets_dangerous_goods': function () { return faker.helpers.arrayElement([
23861
23051
  'aerosols',
23862
23052
  'air_bag_inflators_or_seat_belt_pretensioners',
@@ -23971,6 +23161,15 @@ var factories = {
23971
23161
  origin: factories.string(),
23972
23162
  destination: factories.string(),
23973
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
+ }); },
23974
23173
  'io.flow.shopify.markets.internal.v0.models.shopify_markets_best_selling_product': function () { return ({
23975
23174
  id: factories.string(),
23976
23175
  }); },
@@ -24960,243 +24159,6 @@ var factories = {
24960
24159
  ]);
24961
24160
  return f();
24962
24161
  },
24963
- 'io.flow.shopify.v0.enums.shopify_grant': function () { return faker.helpers.arrayElement(['customer', 'discount', 'gift_card', 'metafield', 'order']); },
24964
- 'io.flow.shopify.v0.enums.shopify_localization_method': function () { return faker.helpers.arrayElement(['api', 'ssr']); },
24965
- 'io.flow.shopify.v0.enums.shopify_sync_check': function () { return faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']); },
24966
- 'io.flow.shopify.v0.models.flow_center_reference': function () { return ({
24967
- key: factories.string(),
24968
- }); },
24969
- 'io.flow.shopify.v0.models.geo_form': function () { return ({
24970
- country: factories.string(),
24971
- currency: factories.string(),
24972
- language: factories.string(),
24973
- locale: factories.string(),
24974
- experience: factories.string(),
24975
- }); },
24976
- 'io.flow.shopify.v0.models.shopify_cart': function () { return ({
24977
- id: factories.string(),
24978
- items: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_cart_item'](); }),
24979
- item_count: factories.long(),
24980
- total_price: factories.long(),
24981
- local: factories['io.flow.shopify.v0.models.shopify_local_cart_metadata'](),
24982
- attributes: factories.object(),
24983
- note: factories.string(),
24984
- requires_shipping: factories.boolean(),
24985
- total_weight: factories.long(),
24986
- }); },
24987
- 'io.flow.shopify.v0.models.shopify_cart_add_multiple_form': function () { return ({
24988
- discriminator: 'shopify_cart_add_multiple_form',
24989
- items: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](); }),
24990
- attributes: objectOf(function () { return factories.string(); }),
24991
- }); },
24992
- 'io.flow.shopify.v0.models.shopify_cart_add_single_form': function () { return ({
24993
- discriminator: 'shopify_cart_add_single_form',
24994
- id: factories.long(),
24995
- quantity: factories.long(),
24996
- properties: objectOf(function () { return factories.string(); }),
24997
- }); },
24998
- 'io.flow.shopify.v0.models.shopify_cart_change_form': function () { return ({
24999
- quantity: factories.long(),
25000
- line: factories.long(),
25001
- id: factories.long(),
25002
- properties: objectOf(function () { return factories.string(); }),
25003
- }); },
25004
- 'io.flow.shopify.v0.models.shopify_cart_conversion': function () { return ({
25005
- flow: factories['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'](),
25006
- shopify: factories['io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart'](),
25007
- }); },
25008
- 'io.flow.shopify.v0.models.shopify_cart_conversion_flow_order': function () { return ({
25009
- order: factories['io.flow.experience.v0.models.order'](),
25010
- errors: arrayOf(function () { return factories['io.flow.experience.v0.models.order_error'](); }),
25011
- }); },
25012
- 'io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart': function () { return ({
25013
- cart: factories['io.flow.shopify.external.v0.models.shopify_external_cart'](),
25014
- }); },
25015
- 'io.flow.shopify.v0.models.shopify_cart_item': function () { return ({
25016
- id: factories.string(),
25017
- handle: factories.string(),
25018
- line_price: factories.double(),
25019
- price: factories.long(),
25020
- product_id: factories.long(),
25021
- product_title: factories.string(),
25022
- quantity: factories.long(),
25023
- title: factories.string(),
25024
- url: factories.string(),
25025
- variant_id: factories.long(),
25026
- local: factories['io.flow.shopify.v0.models.shopify_local_cart_item_metadata'](),
25027
- gift_card: factories.boolean(),
25028
- image: factories.string(),
25029
- product_description: factories.string(),
25030
- product_type: factories.string(),
25031
- properties: objectOf(function () { return factories.string(); }),
25032
- requires_shipping: factories.boolean(),
25033
- sku: factories.string(),
25034
- variant_title: factories.string(),
25035
- variant_options: arrayOf(function () { return factories.string(); }),
25036
- vendor: factories.string(),
25037
- }); },
25038
- 'io.flow.shopify.v0.models.shopify_customer_metafield_value': function () { return ({
25039
- flow_consumer_id: factories.string(),
25040
- }); },
25041
- 'io.flow.shopify.v0.models.shopify_item_event_bucket': function () { return ({
25042
- discriminator: 'shopify_item_event_bucket',
25043
- range: factories['io.flow.common.v0.models.datetime_range'](),
25044
- count: factories.long(),
25045
- data: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_item_event_data'](); }),
25046
- }); },
25047
- 'io.flow.shopify.v0.models.shopify_item_event_data': function () { return ({
25048
- created_at: factories.date_time_iso_8601(),
25049
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
25050
- item: factories['io.flow.common.v0.models.catalog_item_summary'](),
25051
- }); },
25052
- 'io.flow.shopify.v0.models.shopify_line': function () { return ({
25053
- variant_id: factories.long(),
25054
- quantity: factories.long(),
25055
- price: factories['io.flow.shopify.v0.models.shopify_price'](),
25056
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
25057
- price_source: factories['io.flow.common.v0.unions.price_source'](),
25058
- }); },
25059
- 'io.flow.shopify.v0.models.shopify_local_cart_item_metadata': function () { return ({
25060
- line_price: factories['io.flow.common.v0.models.price_with_base'](),
25061
- price: factories['io.flow.common.v0.models.price_with_base'](),
25062
- }); },
25063
- 'io.flow.shopify.v0.models.shopify_local_cart_metadata': function () { return ({
25064
- total_price: factories['io.flow.common.v0.models.price_with_base'](),
25065
- promotions: factories['io.flow.experience.v0.models.promotions'](),
25066
- rules: factories['io.flow.experience.v0.models.order_rules_summary'](),
25067
- subtotal: factories['io.flow.common.v0.models.price_with_base'](),
25068
- vat: factories['io.flow.common.v0.models.price_with_base'](),
25069
- duty: factories['io.flow.common.v0.models.price_with_base'](),
25070
- discount: factories['io.flow.common.v0.models.price_with_base'](),
25071
- }); },
25072
- 'io.flow.shopify.v0.models.shopify_local_price_metadata': function () { return ({
25073
- price: factories['io.flow.common.v0.models.price_with_base'](),
25074
- }); },
25075
- 'io.flow.shopify.v0.models.shopify_localization_setting': function () { return ({
25076
- id: factories.string(),
25077
- method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
25078
- datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
25079
- }); },
25080
- 'io.flow.shopify.v0.models.shopify_localization_setting_form': function () { return ({
25081
- method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
25082
- datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
25083
- }); },
25084
- 'io.flow.shopify.v0.models.shopify_localized_order': function () { return ({
25085
- id: factories.long(),
25086
- lines: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_line'](); }),
25087
- prices: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_price'](); }),
25088
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
25089
- allocation_details: arrayOf(function () { return factories['io.flow.experience.v0.unions.allocation_detail'](); }),
25090
- merchant_of_record: factories['io.flow.common.v0.enums.order_merchant_of_record'](),
25091
- merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
25092
- incoterm: factories['io.flow.common.v0.enums.incoterm'](),
25093
- flow_order_id: factories.string(),
25094
- tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
25095
- geo: factories['io.flow.experience.v0.models.order_geo'](),
25096
- }); },
25097
- 'io.flow.shopify.v0.models.shopify_localized_variant': function () { return ({
25098
- id: factories.long(),
25099
- handle: factories.string(),
25100
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
25101
- prices: factories['io.flow.shopify.v0.models.shopify_localized_variant_prices'](),
25102
- status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
25103
- inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
25104
- }); },
25105
- 'io.flow.shopify.v0.models.shopify_localized_variant_prices': function () { return ({
25106
- item: factories['io.flow.shopify.v0.models.shopify_price'](),
25107
- compare_at: factories['io.flow.shopify.v0.models.shopify_price'](),
25108
- vat: factories['io.flow.shopify.v0.models.shopify_price'](),
25109
- duty: factories['io.flow.shopify.v0.models.shopify_price'](),
25110
- }); },
25111
- 'io.flow.shopify.v0.models.shopify_location_flow_center_mapping': function () { return ({
25112
- id: factories.string(),
25113
- shopify_location: factories['io.flow.shopify.v0.models.shopify_location_reference'](),
25114
- flow_center: factories['io.flow.shopify.v0.models.flow_center_reference'](),
25115
- }); },
25116
- 'io.flow.shopify.v0.models.shopify_location_flow_center_mapping_form': function () { return ({
25117
- shopify_location_id: factories.long(),
25118
- flow_center_key: factories.string(),
25119
- }); },
25120
- 'io.flow.shopify.v0.models.shopify_location_reference': function () { return ({
25121
- id: factories.string(),
25122
- }); },
25123
- 'io.flow.shopify.v0.models.shopify_order_attributes_form': function () { return ({
25124
- attributes: objectOf(function () { return factories.string(); }),
25125
- }); },
25126
- 'io.flow.shopify.v0.models.shopify_order_delivery_metafield': function () { return ({
25127
- key: factories.string(),
25128
- items: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_order_delivery_metafield_item'](); }),
25129
- service: factories['io.flow.fulfillment.v0.models.service_summary'](),
25130
- window: factories['io.flow.fulfillment.v0.models.delivery_window'](),
25131
- liability: factories['io.flow.fulfillment.v0.enums.ratecard_owner'](),
25132
- cost: factories['io.flow.common.v0.models.money_with_optional_base'](),
25133
- prices: arrayOf(function () { return factories['io.flow.shopify.v0.models.shopify_price'](); }),
25134
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
25135
- merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
25136
- }); },
25137
- 'io.flow.shopify.v0.models.shopify_order_delivery_metafield_item': function () { return ({
25138
- number: factories.string(),
25139
- quantity: factories.long(),
25140
- }); },
25141
- 'io.flow.shopify.v0.models.shopify_order_price_attributes_metafield': function () { return ({
25142
- item_number: factories.string(),
25143
- price_attributes: objectOf(function () { return factories['io.flow.common.v0.models.price_with_base'](); }),
25144
- }); },
25145
- 'io.flow.shopify.v0.models.shopify_order_romanization_metafield': function () { return ({
25146
- destination: factories['io.flow.experience.v0.models.order_address'](),
25147
- billing: factories['io.flow.common.v0.models.billing_address'](),
25148
- }); },
25149
- 'io.flow.shopify.v0.models.shopify_price': function () { return ({
25150
- name: factories.string(),
25151
- amount: factories.double(),
25152
- cents: factories.double(),
25153
- currency: factories.string(),
25154
- label: factories.string(),
25155
- includes: factories['io.flow.common.v0.models.included_levies'](),
25156
- local: factories['io.flow.shopify.v0.models.shopify_local_price_metadata'](),
25157
- }); },
25158
- 'io.flow.shopify.v0.models.shopify_private_app': function () { return ({
25159
- id: factories.string(),
25160
- api_key: factories.string(),
25161
- password: factories.string(),
25162
- }); },
25163
- 'io.flow.shopify.v0.models.shopify_private_app_form': function () { return ({
25164
- api_key: factories.string(),
25165
- password: factories.string(),
25166
- }); },
25167
- 'io.flow.shopify.v0.models.shopify_sync_status': function () { return ({
25168
- sync_check: factories['io.flow.shopify.v0.enums.shopify_sync_check'](),
25169
- range: factories['io.flow.common.v0.models.datetime_range'](),
25170
- interval_seconds: factories.long(),
25171
- total: factories.long(),
25172
- buckets: arrayOf(function () { return factories['io.flow.shopify.v0.unions.shopify_event_bucket'](); }),
25173
- }); },
25174
- 'io.flow.shopify.v0.models.shopify_variant_flow_metafield': function () { return ({
25175
- prices_item: factories.string(),
25176
- prices_currency: factories.string(),
25177
- prices_includes: factories.string(),
25178
- prices_vat: factories.string(),
25179
- prices_vat_name: factories.string(),
25180
- prices_duty: factories.string(),
25181
- prices_compare_at: factories.string(),
25182
- prices_status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
25183
- inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
25184
- }); },
25185
- 'io.flow.shopify.v0.models.shopify_variant_inventory_metafield': function () { return ({
25186
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
25187
- status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
25188
- }); },
25189
- 'io.flow.shopify.v0.unions.shopify_cart_add_form': function () {
25190
- var f = faker.helpers.arrayElement([
25191
- function () { return factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](); },
25192
- function () { return factories['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'](); },
25193
- ]);
25194
- return f();
25195
- },
25196
- 'io.flow.shopify.v0.unions.shopify_event_bucket': function () {
25197
- var f = faker.helpers.arrayElement([function () { return factories['io.flow.shopify.v0.models.shopify_item_event_bucket'](); }]);
25198
- return f();
25199
- },
25200
24162
  'io.flow.stripe.v0.enums.account_type': function () { return faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']); },
25201
24163
  'io.flow.stripe.v0.enums.apple_pay_type': function () { return faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']); },
25202
24164
  'io.flow.stripe.v0.enums.balance_transaction_type': function () { return faker.helpers.arrayElement([
@@ -27280,10 +26242,6 @@ export var makeAccountUpsertedV2 = function () { return factories['io.flow.inter
27280
26242
  export var makeAccountingPendingOrderMetadata = function () { return factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](); };
27281
26243
  export var makeActionQuantity = function () { return factories['io.flow.internal.v0.models.action_quantity'](); };
27282
26244
  export var makeAdditionalImportTax = function () { return factories['io.flow.internal.v0.models.additional_import_tax'](); };
27283
- export var makeAddressConfigurationProvinceSetting = function () { return factories['io.flow.internal.v0.models.address_configuration_province_setting'](); };
27284
- export var makeAddressConfigurationSetting = function () { return factories['io.flow.internal.v0.models.address_configuration_setting'](); };
27285
- export var makeAddressConfigurationSettingForm = function () { return factories['io.flow.internal.v0.models.address_configuration_setting_form'](); };
27286
- export var makeAddressConfigurationSettingProvinceCode = function () { return factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](); };
27287
26245
  export var makeAdjustmentAmount = function () { return factories['io.flow.internal.v0.unions.adjustment_amount'](); };
27288
26246
  export var makeAdjustmentAmountFixed = function () { return factories['io.flow.internal.v0.models.adjustment_amount_fixed'](); };
27289
26247
  export var makeAdjustmentAmountPercentage = function () { return factories['io.flow.internal.v0.models.adjustment_amount_percentage'](); };
@@ -27357,7 +26315,6 @@ export var makeAnshItemForm = function () { return factories['io.flow.internal.v
27357
26315
  export var makeAnshItemType = function () { return factories['io.flow.internal.v0.enums.ansh_item_type'](); };
27358
26316
  export var makeAnyDangerousGoods = function () { return factories['io.flow.internal.v0.enums.any_dangerous_goods'](); };
27359
26317
  export var makeApiCallReferenceId = function () { return factories['io.flow.internal.v0.enums.api_call_reference_id'](); };
27360
- export var makeApmContent = function () { return factories['io.flow.internal.v0.models.apm_content'](); };
27361
26318
  export var makeApplePayAuthorizationPayload = function () { return factories['io.flow.internal.v0.models.apple_pay_authorization_payload'](); };
27362
26319
  export var makeApplicablePreferentialRate = function () { return factories['io.flow.internal.v0.enums.applicable_preferential_rate'](); };
27363
26320
  export var makeApplyAtValueForm = function () { return factories['io.flow.internal.v0.models.apply_at_value_form'](); };
@@ -27382,6 +26339,8 @@ export var makeBankAccountReference = function () { return factories['io.flow.in
27382
26339
  export var makeBankAccountStatus = function () { return factories['io.flow.internal.v0.enums.bank_account_status'](); };
27383
26340
  export var makeBankPayment = function () { return factories['io.flow.internal.v0.models.bank_payment'](); };
27384
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'](); };
27385
26344
  export var makeBankPaymentForm = function () { return factories['io.flow.internal.v0.models.bank_payment_form'](); };
27386
26345
  export var makeBankPaymentOrder = function () { return factories['io.flow.internal.v0.models.bank_payment_order'](); };
27387
26346
  export var makeBankPaymentOrderDeleted = function () { return factories['io.flow.internal.v0.models.bank_payment_order_deleted'](); };
@@ -27564,7 +26523,6 @@ export var makeChargebackPaymentStatus = function () { return factories['io.flow
27564
26523
  export var makeChargebackProcessStatus = function () { return factories['io.flow.internal.v0.enums.chargeback_process_status'](); };
27565
26524
  export var makeChargebackUpserted = function () { return factories['io.flow.internal.v0.models.chargeback_upserted'](); };
27566
26525
  export var makeChargebackVersion = function () { return factories['io.flow.internal.v0.models.chargeback_version'](); };
27567
- export var makeCheckbox = function () { return factories['io.flow.internal.v0.models.checkbox'](); };
27568
26526
  export var makeCheckoutAnalytics = function () { return factories['io.flow.internal.v0.models.checkout_analytics'](); };
27569
26527
  export var makeCheckoutAsset = function () { return factories['io.flow.internal.v0.models.checkout_asset'](); };
27570
26528
  export var makeCheckoutAssetType = function () { return factories['io.flow.internal.v0.enums.checkout_asset_type'](); };
@@ -27574,22 +26532,9 @@ export var makeCheckoutBehaviorCustomerInfoEmail = function () { return factorie
27574
26532
  export var makeCheckoutBehaviorShippingAddress = function () { return factories['io.flow.internal.v0.models.checkout_behavior_shipping_address'](); };
27575
26533
  export var makeCheckoutBehaviorShippingMethod = function () { return factories['io.flow.internal.v0.models.checkout_behavior_shipping_method'](); };
27576
26534
  export var makeCheckoutConfiguration = function () { return factories['io.flow.internal.v0.models.checkout_configuration'](); };
27577
- export var makeCheckoutConfigurationDeleted = function () { return factories['io.flow.internal.v0.models.checkout_configuration_deleted'](); };
27578
26535
  export var makeCheckoutConfigurationForm = function () { return factories['io.flow.internal.v0.models.checkout_configuration_form'](); };
27579
26536
  export var makeCheckoutConfigurationReference = function () { return factories['io.flow.internal.v0.models.checkout_configuration_reference'](); };
27580
- export var makeCheckoutConfigurationUpserted = function () { return factories['io.flow.internal.v0.models.checkout_configuration_upserted'](); };
27581
- export var makeCheckoutContent = function () { return factories['io.flow.internal.v0.models.checkout_content'](); };
27582
- export var makeCheckoutContentDetails = function () { return factories['io.flow.internal.v0.models.checkout_content_details'](); };
27583
- export var makeCheckoutContentSummary = function () { return factories['io.flow.internal.v0.models.checkout_content_summary'](); };
27584
- export var makeCheckoutError = function () { return factories['io.flow.internal.v0.models.checkout_error'](); };
27585
- export var makeCheckoutErrorCode = function () { return factories['io.flow.internal.v0.enums.checkout_error_code'](); };
27586
- export var makeCheckoutMarketingContent = function () { return factories['io.flow.internal.v0.models.checkout_marketing_content'](); };
27587
- export var makeCheckoutPayment = function () { return factories['io.flow.internal.v0.models.checkout_payment'](); };
27588
- export var makeCheckoutPaymentContent = function () { return factories['io.flow.internal.v0.models.checkout_payment_content'](); };
27589
- export var makeCheckoutPlatformData = function () { return factories['io.flow.internal.v0.models.checkout_platform_data'](); };
27590
26537
  export var makeCheckoutPromptBehavior = function () { return factories['io.flow.internal.v0.enums.checkout_prompt_behavior'](); };
27591
- export var makeCheckoutRedirect = function () { return factories['io.flow.internal.v0.models.checkout_redirect'](); };
27592
- export var makeCheckoutRedirectMethod = function () { return factories['io.flow.internal.v0.enums.checkout_redirect_method'](); };
27593
26538
  export var makeCheckoutSettings = function () { return factories['io.flow.internal.v0.models.checkout_settings'](); };
27594
26539
  export var makeCheckoutShippingMethodPromptBehavior = function () { return factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'](); };
27595
26540
  export var makeCheckoutUrl = function () { return factories['io.flow.internal.v0.models.checkout_url'](); };
@@ -27654,24 +26599,6 @@ export var makeConnectReportTransferTransferType = function () { return factorie
27654
26599
  export var makeConsoleLabelRequestForm = function () { return factories['io.flow.internal.v0.models.console_label_request_form'](); };
27655
26600
  export var makeConsoleLabelValidationForm = function () { return factories['io.flow.internal.v0.unions.console_label_validation_form'](); };
27656
26601
  export var makeConsoleMarkUnresolvableForm = function () { return factories['io.flow.internal.v0.models.console_mark_unresolvable_form'](); };
27657
- export var makeConsumerOptinActivity = function () { return factories['io.flow.internal.v0.models.consumer_optin_activity'](); };
27658
- export var makeContentElementType = function () { return factories['io.flow.internal.v0.enums.content_element_type'](); };
27659
- export var makeContentItem = function () { return factories['io.flow.internal.v0.unions.content_item'](); };
27660
- export var makeContentLabel = function () { return factories['io.flow.internal.v0.models.content_label'](); };
27661
- export var makeContentSchema = function () { return factories['io.flow.internal.v0.models.content_schema'](); };
27662
- export var makeContentSchemaElement = function () { return factories['io.flow.internal.v0.models.content_schema_element'](); };
27663
- export var makeContentSchemaForm = function () { return factories['io.flow.internal.v0.models.content_schema_form'](); };
27664
- export var makeContentSchemaSummary = function () { return factories['io.flow.internal.v0.models.content_schema_summary'](); };
27665
- export var makeContentStatus = function () { return factories['io.flow.internal.v0.enums.content_status'](); };
27666
- export var makeContentType = function () { return factories['io.flow.internal.v0.enums.content_type'](); };
27667
- export var makeContentTypeCast = function () { return factories['io.flow.internal.v0.enums.content_type_cast'](); };
27668
- export var makeCountryPickerCountry = function () { return factories['io.flow.internal.v0.models.country_picker_country'](); };
27669
- export var makeCountryPickerCountryData = function () { return factories['io.flow.internal.v0.models.country_picker_country_data'](); };
27670
- export var makeCountryPickerCurrency = function () { return factories['io.flow.internal.v0.models.country_picker_currency'](); };
27671
- export var makeCountryPickerData = function () { return factories['io.flow.internal.v0.models.country_picker_data'](); };
27672
- export var makeCountryPickerDeliveryWindow = function () { return factories['io.flow.internal.v0.models.country_picker_delivery_window'](); };
27673
- export var makeCountryPickerExperienceData = function () { return factories['io.flow.internal.v0.models.country_picker_experience_data'](); };
27674
- export var makeCountryPickerPaymentMethod = function () { return factories['io.flow.internal.v0.models.country_picker_payment_method'](); };
27675
26602
  export var makeCourthouseProductSummary = function () { return factories['io.flow.internal.v0.models.courthouse_product_summary'](); };
27676
26603
  export var makeCrossdockTrackingStatus = function () { return factories['io.flow.internal.v0.enums.crossdock_tracking_status'](); };
27677
26604
  export var makeCryptoAccount = function () { return factories['io.flow.internal.v0.models.crypto_account'](); };
@@ -27694,6 +26621,7 @@ export var makeCustomsProductLabels = function () { return factories['io.flow.in
27694
26621
  export var makeDailyValue = function () { return factories['io.flow.internal.v0.models.daily_value'](); };
27695
26622
  export var makeDailyValueDeleted = function () { return factories['io.flow.internal.v0.models.daily_value_deleted'](); };
27696
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'](); };
27697
26625
  export var makeDebugAccountingTransaction = function () { return factories['io.flow.internal.v0.models.debug_accounting_transaction'](); };
27698
26626
  export var makeDebugAccountingTransactionType = function () { return factories['io.flow.internal.v0.enums.debug_accounting_transaction_type'](); };
27699
26627
  export var makeDebugAdjustment = function () { return factories['io.flow.internal.v0.models.debug_adjustment'](); };
@@ -27733,7 +26661,6 @@ export var makeDeminimisAdjustmentType = function () { return factories['io.flow
27733
26661
  export var makeDestinationError = function () { return factories['io.flow.internal.v0.models.destination_error'](); };
27734
26662
  export var makeDhl = function () { return factories['io.flow.internal.v0.models.dhl'](); };
27735
26663
  export var makeDhlEcommerce = function () { return factories['io.flow.internal.v0.models.dhl_ecommerce'](); };
27736
- export var makeDict = function () { return factories['io.flow.internal.v0.models.dict'](); };
27737
26664
  export var makeDimensionEstimateOpsInput = function () { return factories['io.flow.internal.v0.models.dimension_estimate_ops_input'](); };
27738
26665
  export var makeDiscount = function () { return factories['io.flow.internal.v0.models.discount'](); };
27739
26666
  export var makeDiscountCode = function () { return factories['io.flow.internal.v0.models.discount_code'](); };
@@ -27881,9 +26808,6 @@ export var makeFinanceBankAccount = function () { return factories['io.flow.inte
27881
26808
  export var makeFinanceBankAccountOwner = function () { return factories['io.flow.internal.v0.models.finance_bank_account_owner'](); };
27882
26809
  export var makeFinanceBankPayment = function () { return factories['io.flow.internal.v0.models.finance_bank_payment'](); };
27883
26810
  export var makeFinancialMerchantCategory = function () { return factories['io.flow.internal.v0.models.financial_merchant_category'](); };
27884
- export var makeFinancialReportingResponsibleParty = function () { return factories['io.flow.internal.v0.enums.financial_reporting_responsible_party'](); };
27885
- export var makeFinancialReportingStatement = function () { return factories['io.flow.internal.v0.models.financial_reporting_statement'](); };
27886
- export var makeFinancialReportingStatementForm = function () { return factories['io.flow.internal.v0.models.financial_reporting_statement_form'](); };
27887
26811
  export var makeFiservAccount = function () { return factories['io.flow.internal.v0.models.fiserv_account'](); };
27888
26812
  export var makeFiservAccountModificationForm = function () { return factories['io.flow.internal.v0.models.fiserv_account_modification_form'](); };
27889
26813
  export var makeFiservAccountPutForm = function () { return factories['io.flow.internal.v0.models.fiserv_account_put_form'](); };
@@ -27895,7 +26819,6 @@ export var makeFiservMerchantModificationForm = function () { return factories['
27895
26819
  export var makeFiservMerchantPutForm = function () { return factories['io.flow.internal.v0.models.fiserv_merchant_put_form'](); };
27896
26820
  export var makeFlexeWebhook = function () { return factories['io.flow.internal.v0.models.flexe_webhook'](); };
27897
26821
  export var makeFlowAccount = function () { return factories['io.flow.internal.v0.models.flow_account'](); };
27898
- export var makeFlowApp = function () { return factories['io.flow.internal.v0.enums.flow_app'](); };
27899
26822
  export var makeFlowBillingStatement = function () { return factories['io.flow.internal.v0.models.flow_billing_statement'](); };
27900
26823
  export var makeFlowChannelOrganization = function () { return factories['io.flow.internal.v0.models.flow_channel_organization'](); };
27901
26824
  export var makeFlowLabProject = function () { return factories['io.flow.internal.v0.models.flow_lab_project'](); };
@@ -27904,7 +26827,6 @@ export var makeFlowLabProjectPutForm = function () { return factories['io.flow.i
27904
26827
  export var makeFlowLabelSetting = function () { return factories['io.flow.internal.v0.models.flow_label_setting'](); };
27905
26828
  export var makeFlowLabelSettingForm = function () { return factories['io.flow.internal.v0.models.flow_label_setting_form'](); };
27906
26829
  export var makeFlowShopValidationError = function () { return factories['io.flow.internal.v0.models.flow_shop_validation_error'](); };
27907
- export var makeFormat = function () { return factories['io.flow.internal.v0.enums.format'](); };
27908
26830
  export var makeFraudAuthorizationSummary = function () { return factories['io.flow.internal.v0.models.fraud_authorization_summary'](); };
27909
26831
  export var makeFraudPendingReview = function () { return factories['io.flow.internal.v0.models.fraud_pending_review'](); };
27910
26832
  export var makeFraudPendingReviewAuthorization = function () { return factories['io.flow.internal.v0.models.fraud_pending_review_authorization'](); };
@@ -27940,12 +26862,6 @@ export var makeFraudSummary = function () { return factories['io.flow.internal.v
27940
26862
  export var makeFtpFileDeleted = function () { return factories['io.flow.internal.v0.models.ftp_file_deleted'](); };
27941
26863
  export var makeFtpFileToProcessUploaded = function () { return factories['io.flow.internal.v0.models.ftp_file_to_process_uploaded'](); };
27942
26864
  export var makeFtpFileUpserted = function () { return factories['io.flow.internal.v0.models.ftp_file_upserted'](); };
27943
- export var makeFtpIntent = function () { return factories['io.flow.internal.v0.enums.ftp_intent'](); };
27944
- export var makeFtpProtocol = function () { return factories['io.flow.internal.v0.enums.ftp_protocol'](); };
27945
- export var makeFtpSetting = function () { return factories['io.flow.internal.v0.models.ftp_setting'](); };
27946
- export var makeFtpSettingForm = function () { return factories['io.flow.internal.v0.models.ftp_setting_form'](); };
27947
- export var makeFtpSettingVersion = function () { return factories['io.flow.internal.v0.models.ftp_setting_version'](); };
27948
- export var makeFtpSettingsPaths = function () { return factories['io.flow.internal.v0.models.ftp_settings_paths'](); };
27949
26865
  export var makeFuelSurchargeServiceFeeAmountByWeightPutForm = function () { return factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'](); };
27950
26866
  export var makeFuelSurchargeServiceFeePercentPutForm = function () { return factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'](); };
27951
26867
  export var makeFuelSurchargeServiceFeePutForm = function () { return factories['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'](); };
@@ -27981,6 +26897,7 @@ export var makeFxRevenueRecognitionRate = function () { return factories['io.flo
27981
26897
  export var makeFxRevenueRecognitionSource = function () { return factories['io.flow.internal.v0.models.fx_revenue_recognition_source'](); };
27982
26898
  export var makeGeIngestionFileStatus = function () { return factories['io.flow.internal.v0.enums.ge_ingestion_file_status'](); };
27983
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'](); };
27984
26901
  export var makeGenerateLoad = function () { return factories['io.flow.internal.v0.unions.generate_load'](); };
27985
26902
  export var makeGenerateLoadMultipleOrgs = function () { return factories['io.flow.internal.v0.models.generate_load_multiple_orgs'](); };
27986
26903
  export var makeGenerateLoadSingleOrg = function () { return factories['io.flow.internal.v0.models.generate_load_single_org'](); };
@@ -28015,7 +26932,6 @@ export var makeHarmonizedItemsHs6Export = function () { return factories['io.flo
28015
26932
  export var makeHoseinItem = function () { return factories['io.flow.internal.v0.models.hosein_item'](); };
28016
26933
  export var makeHoseinItemForm = function () { return factories['io.flow.internal.v0.models.hosein_item_form'](); };
28017
26934
  export var makeHoseinItemType = function () { return factories['io.flow.internal.v0.enums.hosein_item_type'](); };
28018
- export var makeHref = function () { return factories['io.flow.internal.v0.models.href'](); };
28019
26935
  export var makeHs6 = function () { return factories['io.flow.internal.v0.models.hs6'](); };
28020
26936
  export var makeHs6Metadata = function () { return factories['io.flow.internal.v0.models.hs6_metadata'](); };
28021
26937
  export var makeHttpMethod = function () { return factories['io.flow.internal.v0.enums.http_method'](); };
@@ -28023,7 +26939,6 @@ export var makeImportCompleted = function () { return factories['io.flow.interna
28023
26939
  export var makeImportFailed = function () { return factories['io.flow.internal.v0.models.import_failed'](); };
28024
26940
  export var makeIndexTaskType = function () { return factories['io.flow.internal.v0.unions.index_task_type'](); };
28025
26941
  export var makeInlineAuthorizationParameters = function () { return factories['io.flow.internal.v0.unions.inline_authorization_parameters'](); };
28026
- export var makeInstallForm = function () { return factories['io.flow.internal.v0.models.install_form'](); };
28027
26942
  export var makeInternalAdyenAuthorizationDetails = function () { return factories['io.flow.internal.v0.models.internal_adyen_authorization_details'](); };
28028
26943
  export var makeInternalAfterpayAuthorizationDetails = function () { return factories['io.flow.internal.v0.models.internal_afterpay_authorization_details'](); };
28029
26944
  export var makeInternalAuthorization = function () { return factories['io.flow.internal.v0.models.internal_authorization'](); };
@@ -28058,9 +26973,6 @@ export var makeInvoiceInfoForm = function () { return factories['io.flow.interna
28058
26973
  export var makeInvoiceLine = function () { return factories['io.flow.internal.v0.models.invoice_line'](); };
28059
26974
  export var makeInvoiceLineItem = function () { return factories['io.flow.internal.v0.models.invoice_line_item'](); };
28060
26975
  export var makeInvoiceTransaction = function () { return factories['io.flow.internal.v0.models.invoice_transaction'](); };
28061
- export var makeIssuer = function () { return factories['io.flow.internal.v0.models.issuer'](); };
28062
- export var makeIssuerDeleted = function () { return factories['io.flow.internal.v0.models.issuer_deleted'](); };
28063
- export var makeIssuerUpserted = function () { return factories['io.flow.internal.v0.models.issuer_upserted'](); };
28064
26976
  export var makeItemClassification = function () { return factories['io.flow.internal.v0.models.item_classification'](); };
28065
26977
  export var makeItemClassificationAction = function () { return factories['io.flow.internal.v0.enums.item_classification_action'](); };
28066
26978
  export var makeItemClassificationForm = function () { return factories['io.flow.internal.v0.models.item_classification_form'](); };
@@ -28093,6 +27005,9 @@ export var makeItemSummary = function () { return factories['io.flow.internal.v0
28093
27005
  export var makeItemType = function () { return factories['io.flow.internal.v0.enums.item_type'](); };
28094
27006
  export var makeItemValuesForm = function () { return factories['io.flow.internal.v0.models.item_values_form'](); };
28095
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'](); };
28096
27011
  export var makeKey = function () { return factories['io.flow.internal.v0.models.key'](); };
28097
27012
  export var makeKeyReference = function () { return factories['io.flow.internal.v0.models.key_reference'](); };
28098
27013
  export var makeKeywordType = function () { return factories['io.flow.internal.v0.enums.keyword_type'](); };
@@ -28140,7 +27055,6 @@ export var makeLabelTransaction = function () { return factories['io.flow.intern
28140
27055
  export var makeLabelTransactionDeleted = function () { return factories['io.flow.internal.v0.models.label_transaction_deleted'](); };
28141
27056
  export var makeLabelTransactionType = function () { return factories['io.flow.internal.v0.enums.label_transaction_type'](); };
28142
27057
  export var makeLabelTransactionUpserted = function () { return factories['io.flow.internal.v0.models.label_transaction_upserted'](); };
28143
- export var makeLabeledContent = function () { return factories['io.flow.internal.v0.models.labeled_content'](); };
28144
27058
  export var makeLabelsPrediction = function () { return factories['io.flow.internal.v0.models.labels_prediction'](); };
28145
27059
  export var makeLandedCostItem = function () { return factories['io.flow.internal.v0.models.landed_cost_item'](); };
28146
27060
  export var makeLandmark = function () { return factories['io.flow.internal.v0.models.landmark'](); };
@@ -28157,21 +27071,9 @@ export var makeLiabilityRemittancePlanUpserted = function () { return factories[
28157
27071
  export var makeLiabilityType = function () { return factories['io.flow.internal.v0.enums.liability_type'](); };
28158
27072
  export var makeLineActionForm = function () { return factories['io.flow.internal.v0.models.line_action_form'](); };
28159
27073
  export var makeLineActionQuantities = function () { return factories['io.flow.internal.v0.models.line_action_quantities'](); };
28160
- export var makeLoad = function () { return factories['io.flow.internal.v0.models.load'](); };
28161
- export var makeLocalizableContent = function () { return factories['io.flow.internal.v0.unions.localizable_content'](); };
28162
- export var makeLocalizableContentReference = function () { return factories['io.flow.internal.v0.models.localizable_content_reference'](); };
28163
- export var makeLocalization = function () { return factories['io.flow.internal.v0.models.localization'](); };
28164
- export var makeLocalizationForm = function () { return factories['io.flow.internal.v0.models.localization_form'](); };
28165
- export var makeLocalizationRef = function () { return factories['io.flow.internal.v0.models.localization_ref'](); };
28166
- export var makeLocalizationUpserted = function () { return factories['io.flow.internal.v0.models.localization_upserted'](); };
28167
- export var makeLocalizedContent = function () { return factories['io.flow.internal.v0.models.localized_content'](); };
28168
- export var makeLocalizedContentElement = function () { return factories['io.flow.internal.v0.models.localized_content_element'](); };
28169
- export var makeLocalizedContentForm = function () { return factories['io.flow.internal.v0.models.localized_content_form'](); };
28170
- export var makeLocalizedContentUpserted = function () { return factories['io.flow.internal.v0.models.localized_content_upserted'](); };
28171
27074
  export var makeLocalizedItemPricesExportRequest = function () { return factories['io.flow.internal.v0.models.localized_item_prices_export_request'](); };
28172
27075
  export var makeLocalizedItemsExportSettings = function () { return factories['io.flow.internal.v0.models.localized_items_export_settings'](); };
28173
27076
  export var makeLocalizedPriceBookItemData = function () { return factories['io.flow.internal.v0.models.localized_price_book_item_data'](); };
28174
- export var makeLocation = function () { return factories['io.flow.internal.v0.models.location'](); };
28175
27077
  export var makeLogisticsCapabilities = function () { return factories['io.flow.internal.v0.models.logistics_capabilities'](); };
28176
27078
  export var makeLogisticsCapabilitiesDeleted = function () { return factories['io.flow.internal.v0.models.logistics_capabilities_deleted'](); };
28177
27079
  export var makeLogisticsCapabilitiesForm = function () { return factories['io.flow.internal.v0.models.logistics_capabilities_form'](); };
@@ -28180,13 +27082,11 @@ export var makeLogisticsCapability = function () { return factories['io.flow.int
28180
27082
  export var makeLogisticsPayoutRequest = function () { return factories['io.flow.internal.v0.models.logistics_payout_request'](); };
28181
27083
  export var makeLogisticsPayoutRequestForm = function () { return factories['io.flow.internal.v0.models.logistics_payout_request_form'](); };
28182
27084
  export var makeLogisticsPayoutResolutionMethod = function () { return factories['io.flow.internal.v0.enums.logistics_payout_resolution_method'](); };
28183
- export var makeLogo = function () { return factories['io.flow.internal.v0.models.logo'](); };
28184
27085
  export var makeLostChargeback = function () { return factories['io.flow.internal.v0.models.lost_chargeback'](); };
28185
27086
  export var makeLoyaltyProgram = function () { return factories['io.flow.internal.v0.models.loyalty_program'](); };
28186
27087
  export var makeLoyaltyProgramMessage = function () { return factories['io.flow.internal.v0.models.loyalty_program_message'](); };
28187
27088
  export var makeLoyaltyProgramReward = function () { return factories['io.flow.internal.v0.models.loyalty_program_reward'](); };
28188
27089
  export var makeLoyaltyProgramRewards = function () { return factories['io.flow.internal.v0.models.loyalty_program_rewards'](); };
28189
- export var makeMagentoInstallForm = function () { return factories['io.flow.internal.v0.models.magento_install_form'](); };
28190
27090
  export var makeMainTransaction = function () { return factories['io.flow.internal.v0.models.main_transaction'](); };
28191
27091
  export var makeMainTransactionDeleted = function () { return factories['io.flow.internal.v0.models.main_transaction_deleted'](); };
28192
27092
  export var makeMainTransactionDeletedV2 = function () { return factories['io.flow.internal.v0.models.main_transaction_deleted_v2'](); };
@@ -28258,14 +27158,6 @@ export var makeOnboardingStateForm = function () { return factories['io.flow.int
28258
27158
  export var makeOnboardingStateSource = function () { return factories['io.flow.internal.v0.enums.onboarding_state_source'](); };
28259
27159
  export var makeOneTimeTokenRedemptionForm = function () { return factories['io.flow.internal.v0.models.one_time_token_redemption_form'](); };
28260
27160
  export var makeOnlineAuthorizationCompleted = function () { return factories['io.flow.internal.v0.models.online_authorization_completed'](); };
28261
- export var makeOptinAttribute = function () { return factories['io.flow.internal.v0.models.optin_attribute'](); };
28262
- export var makeOptinAttributeForm = function () { return factories['io.flow.internal.v0.models.optin_attribute_form'](); };
28263
- export var makeOptinPrompt = function () { return factories['io.flow.internal.v0.models.optin_prompt'](); };
28264
- export var makeOptinPromptCheckoutDisplay = function () { return factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](); };
28265
- export var makeOptinPromptCopy = function () { return factories['io.flow.internal.v0.models.optin_prompt_copy'](); };
28266
- export var makeOptinPromptCopyForm = function () { return factories['io.flow.internal.v0.models.optin_prompt_copy_form'](); };
28267
- export var makeOptinPromptDisplay = function () { return factories['io.flow.internal.v0.unions.optin_prompt_display'](); };
28268
- export var makeOptinPromptForm = function () { return factories['io.flow.internal.v0.models.optin_prompt_form'](); };
28269
27161
  export var makeOrderAction = function () { return factories['io.flow.internal.v0.enums.order_action'](); };
28270
27162
  export var makeOrderActionForm = function () { return factories['io.flow.internal.v0.unions.order_action_form'](); };
28271
27163
  export var makeOrderActionability = function () { return factories['io.flow.internal.v0.models.order_actionability'](); };
@@ -28304,7 +27196,6 @@ export var makeOrderRevenueRegionDataPoint = function () { return factories['io.
28304
27196
  export var makeOrderRevenueTimelineChart = function () { return factories['io.flow.internal.v0.models.order_revenue_timeline_chart'](); };
28305
27197
  export var makeOrderRevenueTimelineDataPoint = function () { return factories['io.flow.internal.v0.models.order_revenue_timeline_data_point'](); };
28306
27198
  export var makeOrderServiceChangeCsvForm = function () { return factories['io.flow.internal.v0.models.order_service_change_csv_form'](); };
28307
- export var makeOrderSubmissionForm = function () { return factories['io.flow.internal.v0.models.order_submission_form'](); };
28308
27199
  export var makeOrderSummary = function () { return factories['io.flow.internal.v0.models.order_summary'](); };
28309
27200
  export var makeOrderTaxAndDutyInclusivitySetting = function () { return factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'](); };
28310
27201
  export var makeOrderTaxAndDutyInclusivitySettingDeleted = function () { return factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](); };
@@ -28424,6 +27315,7 @@ export var makePartnerTrackingSubscriptionUpserted = function () { return factor
28424
27315
  export var makePassphrase = function () { return factories['io.flow.internal.v0.models.passphrase'](); };
28425
27316
  export var makePassphraseForm = function () { return factories['io.flow.internal.v0.models.passphrase_form'](); };
28426
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'](); };
28427
27319
  export var makePaymentMethodDetail = function () { return factories['io.flow.internal.v0.models.payment_method_detail'](); };
28428
27320
  export var makePaymentMethodOption = function () { return factories['io.flow.internal.v0.models.payment_method_option'](); };
28429
27321
  export var makePaymentOrganizationSettings = function () { return factories['io.flow.internal.v0.models.payment_organization_settings'](); };
@@ -28525,13 +27417,11 @@ export var makeProductRestrictionStateInserted = function () { return factories[
28525
27417
  export var makeProductRestrictionStateUpdated = function () { return factories['io.flow.internal.v0.models.product_restriction_state_updated'](); };
28526
27418
  export var makeProductReviewHistory = function () { return factories['io.flow.internal.v0.models.product_review_history'](); };
28527
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'](); };
28528
27422
  export var makeProductSellabilityResult = function () { return factories['io.flow.internal.v0.models.product_sellability_result'](); };
28529
27423
  export var makeProductStatus = function () { return factories['io.flow.internal.v0.enums.product_status'](); };
28530
27424
  export var makeProductTransaction = function () { return factories['io.flow.internal.v0.models.product_transaction'](); };
28531
- export var makePromptAction = function () { return factories['io.flow.internal.v0.enums.prompt_action'](); };
28532
- export var makePromptCheckoutDisplayPosition = function () { return factories['io.flow.internal.v0.enums.prompt_checkout_display_position'](); };
28533
- export var makePromptOptions = function () { return factories['io.flow.internal.v0.enums.prompt_options'](); };
28534
- export var makePromptTarget = function () { return factories['io.flow.internal.v0.enums.prompt_target'](); };
28535
27425
  export var makeProofOfPosting = function () { return factories['io.flow.internal.v0.unions.proof_of_posting'](); };
28536
27426
  export var makeProofOfPostingExternallyFulfilled = function () { return factories['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'](); };
28537
27427
  export var makeProofOfPostingFulfilled = function () { return factories['io.flow.internal.v0.models.proof_of_posting_fulfilled'](); };
@@ -28599,9 +27489,6 @@ export var makeRatecardStandardConfigurationUpserted = function () { return fact
28599
27489
  export var makeRatecardStandardSettings = function () { return factories['io.flow.internal.v0.models.ratecard_standard_settings'](); };
28600
27490
  export var makeRatesChanged = function () { return factories['io.flow.internal.v0.models.rates_changed'](); };
28601
27491
  export var makeRatesNamesSummary = function () { return factories['io.flow.internal.v0.models.rates_names_summary'](); };
28602
- export var makeReboundConfiguration = function () { return factories['io.flow.internal.v0.models.rebound_configuration'](); };
28603
- export var makeReboundConfigurationForm = function () { return factories['io.flow.internal.v0.models.rebound_configuration_form'](); };
28604
- export var makeReboundConfigurationStatus = function () { return factories['io.flow.internal.v0.enums.rebound_configuration_status'](); };
28605
27492
  export var makeRecordReference = function () { return factories['io.flow.internal.v0.models.record_reference'](); };
28606
27493
  export var makeRedirect = function () { return factories['io.flow.internal.v0.models.redirect'](); };
28607
27494
  export var makeRedirectActionCompleted = function () { return factories['io.flow.internal.v0.models.redirect_action_completed'](); };
@@ -28668,6 +27555,7 @@ export var makeRequeueRequestForm = function () { return factories['io.flow.inte
28668
27555
  export var makeRescreenRestrictionsProducts = function () { return factories['io.flow.internal.v0.models.rescreen_restrictions_products'](); };
28669
27556
  export var makeResponsibleParty = function () { return factories['io.flow.internal.v0.enums.responsible_party'](); };
28670
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'](); };
28671
27559
  export var makeRestrictionCategory = function () { return factories['io.flow.internal.v0.models.restriction_category'](); };
28672
27560
  export var makeRestrictionDecision = function () { return factories['io.flow.internal.v0.enums.restriction_decision'](); };
28673
27561
  export var makeRestrictionFilter = function () { return factories['io.flow.internal.v0.models.restriction_filter'](); };
@@ -28691,6 +27579,7 @@ export var makeRestrictionProductDecisionForm = function () { return factories['
28691
27579
  export var makeRestrictionProductRequestForm = function () { return factories['io.flow.internal.v0.models.restriction_product_request_form'](); };
28692
27580
  export var makeRestrictionProductSummary = function () { return factories['io.flow.internal.v0.models.restriction_product_summary'](); };
28693
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'](); };
28694
27583
  export var makeRestrictionRuleDecisionForm = function () { return factories['io.flow.internal.v0.models.restriction_rule_decision_form'](); };
28695
27584
  export var makeRestrictionRuleDeleted = function () { return factories['io.flow.internal.v0.models.restriction_rule_deleted'](); };
28696
27585
  export var makeRestrictionRuleEffect = function () { return factories['io.flow.internal.v0.models.restriction_rule_effect'](); };
@@ -28735,8 +27624,12 @@ export var makeRoutingAccount = function () { return factories['io.flow.internal
28735
27624
  export var makeRoutingEntity = function () { return factories['io.flow.internal.v0.unions.routing_entity'](); };
28736
27625
  export var makeRoutingMerchant = function () { return factories['io.flow.internal.v0.models.routing_merchant'](); };
28737
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'](); };
28738
27628
  export var makeSandboxSetup = function () { return factories['io.flow.internal.v0.models.sandbox_setup'](); };
28739
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'](); };
28740
27633
  export var makeScheduledPayment = function () { return factories['io.flow.internal.v0.models.scheduled_payment'](); };
28741
27634
  export var makeScreen = function () { return factories['io.flow.internal.v0.models.screen'](); };
28742
27635
  export var makeScreenForm = function () { return factories['io.flow.internal.v0.models.screen_form'](); };
@@ -28757,30 +27650,16 @@ export var makeShipmentCostSummary = function () { return factories['io.flow.int
28757
27650
  export var makeShippingLane = function () { return factories['io.flow.internal.v0.models.shipping_lane'](); };
28758
27651
  export var makeShippingMethodReference = function () { return factories['io.flow.internal.v0.models.shipping_method_reference'](); };
28759
27652
  export var makeShippingPricing = function () { return factories['io.flow.internal.v0.models.shipping_pricing'](); };
28760
- export var makeShop = function () { return factories['io.flow.internal.v0.models.shop'](); };
28761
- export var makeShopForm = function () { return factories['io.flow.internal.v0.models.shop_form'](); };
28762
- export var makeShopVersion = function () { return factories['io.flow.internal.v0.models.shop_version'](); };
28763
27653
  export var makeShopifyCatalogPublication = function () { return factories['io.flow.internal.v0.models.shopify_catalog_publication'](); };
28764
27654
  export var makeShopifyChannelOrganizationToken = function () { return factories['io.flow.internal.v0.models.shopify_channel_organization_token'](); };
28765
27655
  export var makeShopifyChannelOrganizationTokens = function () { return factories['io.flow.internal.v0.models.shopify_channel_organization_tokens'](); };
28766
- export var makeShopifyCheckInventoryError = function () { return factories['io.flow.internal.v0.models.shopify_check_inventory_error'](); };
28767
- export var makeShopifyCheckInventoryErrorCode = function () { return factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code'](); };
28768
- export var makeShopifyCodeForm = function () { return factories['io.flow.internal.v0.models.shopify_code_form'](); };
28769
27656
  export var makeShopifyDispute = function () { return factories['io.flow.internal.v0.models.shopify_dispute'](); };
28770
27657
  export var makeShopifyDisputeDeleted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_deleted'](); };
28771
27658
  export var makeShopifyDisputeUpserted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_upserted'](); };
28772
- export var makeShopifyExperienceShortId = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id'](); };
28773
- export var makeShopifyExperienceShortIdDeleted = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted'](); };
28774
- export var makeShopifyExperienceShortIdUpserted = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](); };
28775
- export var makeShopifyGiftCardBalance = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_balance'](); };
28776
- export var makeShopifyGiftCardBalanceForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_balance_form'](); };
28777
- export var makeShopifyGiftCardPaymentForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_payment_form'](); };
28778
- export var makeShopifyGiftCardRedemption = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_redemption'](); };
28779
- export var makeShopifyGiftCardRedemptionForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_redemption_form'](); };
28780
- export var makeShopifyGiftCardReversal = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_reversal'](); };
28781
- export var makeShopifyGiftCardReversalForm = function () { return factories['io.flow.internal.v0.models.shopify_gift_card_reversal_form'](); };
28782
- export var makeShopifyGrantStatus = function () { return factories['io.flow.internal.v0.enums.shopify_grant_status'](); };
28783
- export var makeShopifyGrantsCheck = function () { return factories['io.flow.internal.v0.models.shopify_grants_check'](); };
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'](); };
28784
27663
  export var makeShopifyIncotermConfiguration = function () { return factories['io.flow.internal.v0.enums.shopify_incoterm_configuration'](); };
28785
27664
  export var makeShopifyIncotermIncludes = function () { return factories['io.flow.internal.v0.models.shopify_incoterm_includes'](); };
28786
27665
  export var makeShopifyIncotermSummaryErrorData = function () { return factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data'](); };
@@ -28842,30 +27721,20 @@ export var makeShopifyMonitoringOrderMonitorType = function () { return factorie
28842
27721
  export var makeShopifyMonitoringTrackingField = function () { return factories['io.flow.internal.v0.enums.shopify_monitoring_tracking_field'](); };
28843
27722
  export var makeShopifyMonitoringTrackingNumber = function () { return factories['io.flow.internal.v0.models.shopify_monitoring_tracking_number'](); };
28844
27723
  export var makeShopifyMonitoringTrackingUrl = function () { return factories['io.flow.internal.v0.models.shopify_monitoring_tracking_url'](); };
28845
- export var makeShopifyOrderAuthorization = function () { return factories['io.flow.internal.v0.models.shopify_order_authorization'](); };
28846
27724
  export var makeShopifyOrderCancelForm = function () { return factories['io.flow.internal.v0.models.shopify_order_cancel_form'](); };
28847
27725
  export var makeShopifyOrderCancelResponse = function () { return factories['io.flow.internal.v0.models.shopify_order_cancel_response'](); };
28848
- export var makeShopifyOrderContent = function () { return factories['io.flow.internal.v0.models.shopify_order_content'](); };
28849
27726
  export var makeShopifyOrderDestinationForm = function () { return factories['io.flow.internal.v0.models.shopify_order_destination_form'](); };
28850
- export var makeShopifyOrderDetail = function () { return factories['io.flow.internal.v0.models.shopify_order_detail'](); };
28851
- export var makeShopifyOrderDiscountContent = function () { return factories['io.flow.internal.v0.models.shopify_order_discount_content'](); };
28852
27727
  export var makeShopifyOrderFulfillmentsSnapshot = function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'](); };
28853
27728
  export var makeShopifyOrderFulfillmentsSnapshotDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'](); };
28854
27729
  export var makeShopifyOrderFulfillmentsSnapshotUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](); };
28855
- export var makeShopifyOrderInventoryCheck = function () { return factories['io.flow.internal.v0.models.shopify_order_inventory_check'](); };
28856
- export var makeShopifyOrderLineAttribute = function () { return factories['io.flow.internal.v0.models.shopify_order_line_attribute'](); };
28857
- export var makeShopifyOrderLineContent = function () { return factories['io.flow.internal.v0.models.shopify_order_line_content'](); };
28858
27730
  export var makeShopifyOrderRiskAssessment = function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment'](); };
28859
27731
  export var makeShopifyOrderRiskAssessmentDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'](); };
28860
27732
  export var makeShopifyOrderRiskAssessmentUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'](); };
28861
27733
  export var makeShopifyOrderTransaction = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction'](); };
28862
27734
  export var makeShopifyOrderTransactionDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_deleted'](); };
28863
27735
  export var makeShopifyOrderTransactionUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_upserted'](); };
28864
- export var makeShopifyOrganizationSettings = function () { return factories['io.flow.internal.v0.models.shopify_organization_settings'](); };
28865
- export var makeShopifyOrganizationSettingsForm = function () { return factories['io.flow.internal.v0.models.shopify_organization_settings_form'](); };
28866
27736
  export var makeShopifyPartnerWebhook = function () { return factories['io.flow.internal.v0.models.shopify_partner_webhook'](); };
28867
27737
  export var makeShopifyPartnerWebhookRaw = function () { return factories['io.flow.internal.v0.models.shopify_partner_webhook_raw'](); };
28868
- export var makeShopifyPaymentSummary = function () { return factories['io.flow.internal.v0.models.shopify_payment_summary'](); };
28869
27738
  export var makeShopifyPlanType = function () { return factories['io.flow.internal.v0.enums.shopify_plan_type'](); };
28870
27739
  export var makeShopifyProductBundle = function () { return factories['io.flow.internal.v0.models.shopify_product_bundle'](); };
28871
27740
  export var makeShopifyProductBundleDeleted = function () { return factories['io.flow.internal.v0.models.shopify_product_bundle_deleted'](); };
@@ -28881,37 +27750,13 @@ export var makeShopifyProductUpdateDeleted = function () { return factories['io.
28881
27750
  export var makeShopifyProductUpdateUpserted = function () { return factories['io.flow.internal.v0.models.shopify_product_update_upserted'](); };
28882
27751
  export var makeShopifyProductUpdateWebhookEvent = function () { return factories['io.flow.internal.v0.models.shopify_product_update_webhook_event'](); };
28883
27752
  export var makeShopifyProductWrapper = function () { return factories['io.flow.internal.v0.models.shopify_product_wrapper'](); };
28884
- export var makeShopifyPromoForm = function () { return factories['io.flow.internal.v0.models.shopify_promo_form'](); };
28885
- export var makeShopifyPromotion = function () { return factories['io.flow.internal.v0.models.shopify_promotion'](); };
28886
- export var makeShopifyPromotionAttributeValue = function () { return factories['io.flow.internal.v0.models.shopify_promotion_attribute_value'](); };
28887
- export var makeShopifyPromotionBehavior = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_behavior'](); };
28888
- export var makeShopifyPromotionFixedAmount = function () { return factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount'](); };
28889
- export var makeShopifyPromotionForm = function () { return factories['io.flow.internal.v0.models.shopify_promotion_form'](); };
28890
- export var makeShopifyPromotionItemEntitlement = function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement'](); };
28891
- export var makeShopifyPromotionItemPrerequisite = function () { return factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite'](); };
28892
- export var makeShopifyPromotionMaxAmount = function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_amount'](); };
28893
- export var makeShopifyPromotionMaxLimit = function () { return factories['io.flow.internal.v0.models.shopify_promotion_max_limit'](); };
28894
- export var makeShopifyPromotionOffer = function () { return factories['io.flow.internal.v0.models.shopify_promotion_offer'](); };
28895
- export var makeShopifyPromotionOfferAllocationMethod = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](); };
28896
- export var makeShopifyPromotionOfferDiscount = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount'](); };
28897
- export var makeShopifyPromotionOfferEntitlement = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement'](); };
28898
- export var makeShopifyPromotionOfferMax = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_offer_max'](); };
28899
- export var makeShopifyPromotionOrderEntitlement = function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement'](); };
28900
- export var makeShopifyPromotionOrderEntitlementComponent = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component'](); };
28901
- export var makeShopifyPromotionOrderPrerequisite = function () { return factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite'](); };
28902
- export var makeShopifyPromotionPercent = function () { return factories['io.flow.internal.v0.models.shopify_promotion_percent'](); };
28903
- export var makeShopifyPromotionPrerequisite = function () { return factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite'](); };
28904
- export var makeShopifyPromotionRule = function () { return factories['io.flow.internal.v0.models.shopify_promotion_rule'](); };
28905
- export var makeShopifyPromotionStatus = function () { return factories['io.flow.internal.v0.enums.shopify_promotion_status'](); };
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'](); };
28906
27755
  export var makeShopifyService = function () { return factories['io.flow.internal.v0.enums.shopify_service'](); };
28907
- export var makeShopifyShopDeleted = function () { return factories['io.flow.internal.v0.models.shopify_shop_deleted'](); };
28908
27756
  export var makeShopifyShopStatistics = function () { return factories['io.flow.internal.v0.models.shopify_shop_statistics'](); };
28909
- export var makeShopifyShopUpserted = function () { return factories['io.flow.internal.v0.models.shopify_shop_upserted'](); };
28910
27757
  export var makeShopifyStoreDetail = function () { return factories['io.flow.internal.v0.models.shopify_store_detail'](); };
28911
27758
  export var makeShopifyStripeEvent = function () { return factories['io.flow.internal.v0.models.shopify_stripe_event'](); };
28912
- export var makeShopifyWebhook = function () { return factories['io.flow.internal.v0.models.shopify_webhook'](); };
28913
- export var makeShopifyWebhookEvent = function () { return factories['io.flow.internal.v0.models.shopify_webhook_event'](); };
28914
- export var makeShopifyWebhookForm = function () { return factories['io.flow.internal.v0.models.shopify_webhook_form'](); };
27759
+ export var makeShopperBreakdown = function () { return factories['io.flow.internal.v0.models.shopper_breakdown'](); };
28915
27760
  export var makeShopperFees = function () { return factories['io.flow.internal.v0.models.shopper_fees'](); };
28916
27761
  export var makeShopperFreight = function () { return factories['io.flow.internal.v0.models.shopper_freight'](); };
28917
27762
  export var makeShopperLine = function () { return factories['io.flow.internal.v0.models.shopper_line'](); };
@@ -28944,11 +27789,8 @@ export var makeStandaloneAttachment = function () { return factories['io.flow.in
28944
27789
  export var makeStandaloneAttachmentDeleted = function () { return factories['io.flow.internal.v0.models.standalone_attachment_deleted'](); };
28945
27790
  export var makeStandaloneAttachmentUpserted = function () { return factories['io.flow.internal.v0.models.standalone_attachment_upserted'](); };
28946
27791
  export var makeStatementCreationMetadata = function () { return factories['io.flow.internal.v0.models.statement_creation_metadata'](); };
28947
- export var makeStatementStatus = function () { return factories['io.flow.internal.v0.enums.statement_status'](); };
28948
27792
  export var makeStatementTransferTransactionLocation = function () { return factories['io.flow.internal.v0.enums.statement_transfer_transaction_location'](); };
28949
27793
  export var makeStatisticType = function () { return factories['io.flow.internal.v0.enums.statistic_type'](); };
28950
- export var makeStoreConnection = function () { return factories['io.flow.internal.v0.models.store_connection'](); };
28951
- export var makeStoreConnectionForm = function () { return factories['io.flow.internal.v0.models.store_connection_form'](); };
28952
27794
  export var makeStringFeatureDefaultValue = function () { return factories['io.flow.internal.v0.models.string_feature_default_value'](); };
28953
27795
  export var makeStringFeatureRule = function () { return factories['io.flow.internal.v0.models.string_feature_rule'](); };
28954
27796
  export var makeStringFeatureRuleForm = function () { return factories['io.flow.internal.v0.models.string_feature_rule_form'](); };
@@ -29023,6 +27865,7 @@ export var makeTaxTransactionDeleted = function () { return factories['io.flow.i
29023
27865
  export var makeTaxTransactionType = function () { return factories['io.flow.internal.v0.enums.tax_transaction_type'](); };
29024
27866
  export var makeTaxTransactionUpserted = function () { return factories['io.flow.internal.v0.models.tax_transaction_upserted'](); };
29025
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'](); };
29026
27869
  export var makeTaxonomyCategoryHs6Ref = function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref'](); };
29027
27870
  export var makeTaxonomyCategoryHs6RefDeleted = function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'](); };
29028
27871
  export var makeTaxonomyCategoryHs6RefUpserted = function () { return factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](); };
@@ -29117,11 +27960,8 @@ export var makeUserStatusForm = function () { return factories['io.flow.internal
29117
27960
  export var makeUserStatusRule = function () { return factories['io.flow.internal.v0.models.user_status_rule'](); };
29118
27961
  export var makeUserStatusRuleForm = function () { return factories['io.flow.internal.v0.models.user_status_rule_form'](); };
29119
27962
  export var makeUserUpsertedV2 = function () { return factories['io.flow.internal.v0.models.user_upserted_v2'](); };
29120
- export var makeV1Checkout = function () { return factories['io.flow.internal.v0.models.v1_checkout'](); };
29121
27963
  export var makeValidatedAddress = function () { return factories['io.flow.internal.v0.models.validated_address'](); };
29122
27964
  export var makeValidatedShippingData = function () { return factories['io.flow.internal.v0.models.validated_shipping_data'](); };
29123
- export var makeValidationCharacterLength = function () { return factories['io.flow.internal.v0.models.validation_character_length'](); };
29124
- export var makeValidationRule = function () { return factories['io.flow.internal.v0.unions.validation_rule'](); };
29125
27965
  export var makeViesResult = function () { return factories['io.flow.internal.v0.models.vies_result'](); };
29126
27966
  export var makeVirtualCardTransaction = function () { return factories['io.flow.internal.v0.models.virtual_card_transaction'](); };
29127
27967
  export var makeWasteElectricalAndElectronicEquipmentComplianceData = function () { return factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'](); };