@flowio/api-internal-factories 0.0.129 → 0.0.131

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -818,6 +818,8 @@ const factories = {
818
818
  'tax_refund',
819
819
  'duty_refund',
820
820
  'non_l4l_tax_duty_fx',
821
+ 'merchant_payout',
822
+ 'merchant_refund',
821
823
  'ge_revenue_share',
822
824
  ]),
823
825
 
@@ -2922,106 +2924,6 @@ const factories = {
2922
2924
  rate: factories['io.flow.currency.v0.models.rate'](),
2923
2925
  }),
2924
2926
 
2925
- 'io.flow.customer.v0.enums.customer_address_type': (): io.flow.customer.v0.enums.CustomerAddressType => faker.helpers.arrayElement(['billing', 'invoice', 'shipping']),
2926
-
2927
- 'io.flow.customer.v0.models.customer': (): io.flow.customer.v0.models.Customer => ({
2928
- id: factories.string(),
2929
- number: factories.string(),
2930
- email: factories.string(),
2931
- name: factories['io.flow.common.v0.models.name'](),
2932
- phone: factories.string(),
2933
- }),
2934
-
2935
- 'io.flow.customer.v0.models.customer_address_book': (): io.flow.customer.v0.models.CustomerAddressBook => ({
2936
- contacts: arrayOf(
2937
- () => factories['io.flow.customer.v0.models.customer_address_book_contact'](),
2938
- ),
2939
- }),
2940
-
2941
- 'io.flow.customer.v0.models.customer_address_book_contact': (): io.flow.customer.v0.models.CustomerAddressBookContact => ({
2942
- id: factories.string(),
2943
- address: factories['io.flow.common.v0.models.address'](),
2944
- contact: factories['io.flow.common.v0.models.contact'](),
2945
-
2946
- address_preferences: arrayOf(
2947
- () => factories['io.flow.customer.v0.models.customer_address_preference'](),
2948
- ),
2949
- }),
2950
-
2951
- 'io.flow.customer.v0.models.customer_address_book_contact_form': (): io.flow.customer.v0.models.CustomerAddressBookContactForm => ({
2952
- address: factories['io.flow.common.v0.models.address'](),
2953
- contact: factories['io.flow.common.v0.models.contact'](),
2954
-
2955
- address_preferences: arrayOf(
2956
- () => factories['io.flow.customer.v0.models.customer_address_preference'](),
2957
- ),
2958
- }),
2959
-
2960
- 'io.flow.customer.v0.models.customer_address_book_form': (): io.flow.customer.v0.models.CustomerAddressBookForm => ({
2961
- contacts: arrayOf(
2962
- () => factories['io.flow.customer.v0.models.customer_address_book_contact_form'](),
2963
- ),
2964
- }),
2965
-
2966
- 'io.flow.customer.v0.models.customer_address_preference': (): io.flow.customer.v0.models.CustomerAddressPreference => ({
2967
- type: factories['io.flow.customer.v0.enums.customer_address_type'](),
2968
- }),
2969
-
2970
- 'io.flow.customer.v0.models.customer_bundle': (): io.flow.customer.v0.models.CustomerBundle => ({
2971
- customer: factories['io.flow.customer.v0.models.customer'](),
2972
- last_used: factories['io.flow.customer.v0.models.customer_last_used'](),
2973
- }),
2974
-
2975
- 'io.flow.customer.v0.models.customer_client_token': (): io.flow.customer.v0.models.CustomerClientToken => ({
2976
- token: factories.string(),
2977
- }),
2978
-
2979
- 'io.flow.customer.v0.models.customer_form': (): io.flow.customer.v0.models.CustomerForm => ({
2980
- number: factories.string(),
2981
- email: factories.string(),
2982
- name: factories['io.flow.common.v0.models.name'](),
2983
- phone: factories.string(),
2984
- }),
2985
-
2986
- 'io.flow.customer.v0.models.customer_last_used': (): io.flow.customer.v0.models.CustomerLastUsed => ({
2987
- order: factories['io.flow.customer.v0.models.customer_order'](),
2988
- payment: factories['io.flow.customer.v0.models.customer_payment'](),
2989
- }),
2990
-
2991
- 'io.flow.customer.v0.models.customer_order': (): io.flow.customer.v0.models.CustomerOrder => ({
2992
- number: factories.string(),
2993
- destination: factories['io.flow.experience.v0.models.order_address'](),
2994
- payments: arrayOf(() => factories['io.flow.experience.v0.models.order_payment']()),
2995
- submitted_at: factories.date_time_iso_8601(),
2996
- }),
2997
-
2998
- 'io.flow.customer.v0.models.customer_payment': (): io.flow.customer.v0.models.CustomerPayment => ({
2999
- payment_methods: arrayOf(() => factories['io.flow.reference.v0.models.payment_method']()),
3000
- }),
3001
-
3002
- 'io.flow.customer.v0.models.customer_purge_settings': (): io.flow.customer.v0.models.CustomerPurgeSettings => ({
3003
- id: factories.string(),
3004
- days_until_purge_unused: factories.long(),
3005
- days_until_purge_used: factories.long(),
3006
- }),
3007
-
3008
- 'io.flow.customer.v0.models.customer_purge_settings_form': (): io.flow.customer.v0.models.CustomerPurgeSettingsForm => ({
3009
- days_until_purge_unused: factories.long(),
3010
- days_until_purge_used: factories.long(),
3011
- }),
3012
-
3013
- 'io.flow.customer.v0.models.customer_put_form': (): io.flow.customer.v0.models.CustomerPutForm => ({
3014
- email: factories.string(),
3015
- name: factories['io.flow.common.v0.models.name'](),
3016
- phone: factories.string(),
3017
- }),
3018
-
3019
- 'io.flow.customer.v0.models.customer_token': (): io.flow.customer.v0.models.CustomerToken => ({
3020
- id: factories.string(),
3021
- customer: factories['io.flow.common.v0.models.customer_reference'](),
3022
- token: factories.string(),
3023
- }),
3024
-
3025
2927
  'io.flow.error.v0.enums.generic_error_code': (): io.flow.error.v0.enums.GenericErrorCode => faker.helpers.arrayElement(['generic_error', 'client_error', 'server_error']),
3026
2928
 
3027
2929
  'io.flow.error.v0.models.generic_error': (): io.flow.error.v0.models.GenericError => ({
@@ -6662,7 +6564,6 @@ const factories = {
6662
6564
  'io.flow.internal.v0.enums.account_payment_hold_reason': (): io.flow.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'frozen', 'invalid_bank_account']),
6663
6565
  'io.flow.internal.v0.enums.account_setting_liabilities_method': (): io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod => faker.helpers.arrayElement(['withholding', 'transaction']),
6664
6566
  'io.flow.internal.v0.enums.account_type': (): io.flow.internal.v0.enums.AccountType => faker.helpers.arrayElement(['channel', 'organization']),
6665
- 'io.flow.internal.v0.enums.address_configuration_setting_province_code': (): io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode => faker.helpers.arrayElement(['iso_3166_2', 'name']),
6666
6567
  'io.flow.internal.v0.enums.adjustment_transaction_type': (): io.flow.internal.v0.enums.AdjustmentTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal']),
6667
6568
  'io.flow.internal.v0.enums.adyen_integration_type': (): io.flow.internal.v0.enums.AdyenIntegrationType => faker.helpers.arrayElement(['hosted_payment_page', 'checkout_payments_api', 'classic_authorise_api']),
6668
6569
  'io.flow.internal.v0.enums.aldo_item_type': (): io.flow.internal.v0.enums.AldoItemType => faker.helpers.arrayElement(['physical', 'digital']),
@@ -6874,10 +6775,13 @@ const factories = {
6874
6775
  'fourth_plus_attempt_success_ratio',
6875
6776
  'ge_revenue_share_standard_transactions_count',
6876
6777
  'ge_revenue_share_standard_transactions_total',
6778
+ 'ge_revenue_share_standard_transactions_percentage',
6877
6779
  'ge_revenue_share_shopify_plus_transactions_count',
6878
6780
  'ge_revenue_share_shopify_plus_transactions_total',
6781
+ 'ge_revenue_share_shopify_plus_transactions_percentage',
6879
6782
  'non_l4l_tax_duty_fx_transactions_count',
6880
6783
  'non_l4l_tax_duty_fx_transactions_total',
6784
+ 'non_l4l_tax_duty_fx_transactions_percentage',
6881
6785
  'sp_adjustment_transactions_count',
6882
6786
  'sp_adjustment_transactions_total',
6883
6787
  'sp_billable_label_transactions_count',
@@ -6957,6 +6861,8 @@ const factories = {
6957
6861
  'tax_refund',
6958
6862
  'duty_refund',
6959
6863
  'ge_revenue_share',
6864
+ 'merchant_payout',
6865
+ 'merchant_refund',
6960
6866
  ]),
6961
6867
 
6962
6868
  'io.flow.internal.v0.enums.calculator_engine': (): io.flow.internal.v0.enums.CalculatorEngine => faker.helpers.arrayElement(['dtce_with_deminimis', 'dtce_with_inclusive_pricing', 'dtce_and_us_tax']),
@@ -7039,23 +6945,7 @@ const factories = {
7039
6945
  'io.flow.internal.v0.enums.chargeback_payment_status': (): io.flow.internal.v0.enums.ChargebackPaymentStatus => faker.helpers.arrayElement(['captured', 'refunded']),
7040
6946
  'io.flow.internal.v0.enums.chargeback_process_status': (): io.flow.internal.v0.enums.ChargebackProcessStatus => faker.helpers.arrayElement(['inquiry', 'open', 'closed']),
7041
6947
  'io.flow.internal.v0.enums.checkout_asset_type': (): io.flow.internal.v0.enums.CheckoutAssetType => faker.helpers.arrayElement(['stylesheet', 'javascript']),
7042
-
7043
- 'io.flow.internal.v0.enums.checkout_error_code': (): io.flow.internal.v0.enums.CheckoutErrorCode => faker.helpers.arrayElement([
7044
- 'generic_error',
7045
- 'order_identifier_invalid',
7046
- 'url_invalid',
7047
- 'organization_invalid',
7048
- 'session_invalid',
7049
- 'session_missing',
7050
- 'session_organization_invalid',
7051
- 'country_invalid',
7052
- 'currency_invalid',
7053
- 'language_invalid',
7054
- 'checkout_invalid',
7055
- ]),
7056
-
7057
6948
  'io.flow.internal.v0.enums.checkout_prompt_behavior': (): io.flow.internal.v0.enums.CheckoutPromptBehavior => faker.helpers.arrayElement(['always', 'incomplete']),
7058
- 'io.flow.internal.v0.enums.checkout_redirect_method': (): io.flow.internal.v0.enums.CheckoutRedirectMethod => faker.helpers.arrayElement(['get', 'post']),
7059
6949
  'io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior': (): io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior => faker.helpers.arrayElement(['always', 'multiple']),
7060
6950
  'io.flow.internal.v0.enums.checkout_url_type': (): io.flow.internal.v0.enums.CheckoutUrlType => faker.helpers.arrayElement(['continue_shopping', 'confirmation', 'invalid_checkout']),
7061
6951
  'io.flow.internal.v0.enums.classification_decision': (): io.flow.internal.v0.enums.ClassificationDecision => faker.helpers.arrayElement(['Accept', 'Reject']),
@@ -7080,10 +6970,6 @@ const factories = {
7080
6970
  'ManagedMarketsDutiesAndTaxesAdjustmentCredit',
7081
6971
  ]),
7082
6972
 
7083
- 'io.flow.internal.v0.enums.content_element_type': (): io.flow.internal.v0.enums.ContentElementType => faker.helpers.arrayElement(['markdown', 'html', 'plain_text', 'href']),
7084
- 'io.flow.internal.v0.enums.content_status': (): io.flow.internal.v0.enums.ContentStatus => faker.helpers.arrayElement(['draft', 'live', 'archived']),
7085
- 'io.flow.internal.v0.enums.content_type': (): io.flow.internal.v0.enums.ContentType => faker.helpers.arrayElement(['text', 'html']),
7086
- 'io.flow.internal.v0.enums.content_type_cast': (): io.flow.internal.v0.enums.ContentTypeCast => faker.helpers.arrayElement(['markdown_to_html', 'markdown_to_text']),
7087
6973
  'io.flow.internal.v0.enums.crossdock_tracking_status': (): io.flow.internal.v0.enums.CrossdockTrackingStatus => faker.helpers.arrayElement(['notified', 'received', 'shipped']),
7088
6974
  'io.flow.internal.v0.enums.debug_accounting_transaction_type': (): io.flow.internal.v0.enums.DebugAccountingTransactionType => faker.helpers.arrayElement(['fulfillment']),
7089
6975
  'io.flow.internal.v0.enums.delivered_duty_option_message_type': (): io.flow.internal.v0.enums.DeliveredDutyOptionMessageType => faker.helpers.arrayElement(['warning', 'notification']),
@@ -7209,12 +7095,8 @@ const factories = {
7209
7095
  'channel_order_acceptance_upserted',
7210
7096
  'channel_order_acceptance_deleted',
7211
7097
  'channel_order_acceptance_failed',
7212
- 'checkout_configuration_upserted',
7213
- 'checkout_configuration_deleted',
7214
7098
  'commercial_invoice_internal_upserted',
7215
7099
  'commercial_invoice_internal_deleted',
7216
- 'localized_content_upserted',
7217
- 'localization_upserted',
7218
7100
  'internal_channel_rate_deleted',
7219
7101
  'internal_channel_rate_upserted',
7220
7102
  'rate_deleted',
@@ -7315,8 +7197,6 @@ const factories = {
7315
7197
  'item_harmonization_upserted',
7316
7198
  'item_harmonization_deleted',
7317
7199
  'harmonization_classification_statistics_published',
7318
- 'issuer_upserted',
7319
- 'issuer_deleted',
7320
7200
  'item_form_import_request',
7321
7201
  'label_request_error_upserted',
7322
7202
  'label_request_error_deleted',
@@ -7414,10 +7294,8 @@ const factories = {
7414
7294
  'restriction_rule_effect_deleted',
7415
7295
  'taxonomy_category_hs6_ref_upserted',
7416
7296
  'taxonomy_category_hs6_ref_deleted',
7417
- 'shopify_shop_upserted',
7418
- 'shopify_shop_deleted',
7419
- 'shopify_experience_short_id_upserted',
7420
- 'shopify_experience_short_id_deleted',
7297
+ 'shopify_hs10_codes_upserted',
7298
+ 'shopify_hs10_codes_deleted',
7421
7299
  'shopify_markets_order_upserted',
7422
7300
  'shopify_markets_order_deleted',
7423
7301
  'shopify_markets_shop_upserted',
@@ -7463,6 +7341,8 @@ const factories = {
7463
7341
  'shopify_merchant_plan_deleted',
7464
7342
  'shopify_dispute_upserted',
7465
7343
  'shopify_dispute_deleted',
7344
+ 'shopify_report_file_upserted',
7345
+ 'shopify_report_file_deleted',
7466
7346
  'stripe_authorization_deleted',
7467
7347
  'stripe_authorization_upserted',
7468
7348
  'stripe_reversal_deleted',
@@ -7507,23 +7387,11 @@ const factories = {
7507
7387
  'io.flow.internal.v0.enums.feature_status': (): io.flow.internal.v0.enums.FeatureStatus => faker.helpers.arrayElement(['draft', 'active', 'archived']),
7508
7388
  'io.flow.internal.v0.enums.feature_type': (): io.flow.internal.v0.enums.FeatureType => faker.helpers.arrayElement(['boolean', 'decimal', 'string']),
7509
7389
  'io.flow.internal.v0.enums.fees_source': (): io.flow.internal.v0.enums.FeesSource => faker.helpers.arrayElement(['settings', 'authorization_bundle']),
7510
- 'io.flow.internal.v0.enums.financial_reporting_responsible_party': (): io.flow.internal.v0.enums.FinancialReportingResponsibleParty => faker.helpers.arrayElement(['flow', 'organization']),
7511
- 'io.flow.internal.v0.enums.flow_app': (): io.flow.internal.v0.enums.FlowApp => faker.helpers.arrayElement(['console']),
7512
- 'io.flow.internal.v0.enums.format': (): io.flow.internal.v0.enums.Format => faker.helpers.arrayElement(['text', 'phone', 'email']),
7513
7390
  'io.flow.internal.v0.enums.fraud_provider': (): io.flow.internal.v0.enums.FraudProvider => faker.helpers.arrayElement(['flow', 'forter', 'paypal', 'riskified', 'rps', 'other', 'none']),
7514
7391
  'io.flow.internal.v0.enums.fraud_provider_status': (): io.flow.internal.v0.enums.FraudProviderStatus => faker.helpers.arrayElement(['active', 'archived']),
7515
7392
  'io.flow.internal.v0.enums.fraud_review_responsible_party': (): io.flow.internal.v0.enums.FraudReviewResponsibleParty => faker.helpers.arrayElement(['flow', 'organization']),
7516
-
7517
- 'io.flow.internal.v0.enums.ftp_intent': (): io.flow.internal.v0.enums.FtpIntent => faker.helpers.arrayElement([
7518
- 'orders_from_flow',
7519
- 'pricebooks_from_flow',
7520
- 'pricebooks_to_flow',
7521
- 'catalog_to_flow',
7522
- 'inventory_to_flow',
7523
- ]),
7524
-
7525
- 'io.flow.internal.v0.enums.ftp_protocol': (): io.flow.internal.v0.enums.FtpProtocol => faker.helpers.arrayElement(['sftp', 'ftp']),
7526
7393
  'io.flow.internal.v0.enums.ge_ingestion_file_status': (): io.flow.internal.v0.enums.GeIngestionFileStatus => faker.helpers.arrayElement(['pending', 'processed']),
7394
+ 'io.flow.internal.v0.enums.ge_revenue_share_transaction_type': (): io.flow.internal.v0.enums.GeRevenueShareTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'revenue_share']),
7527
7395
  'io.flow.internal.v0.enums.google_analytics_plugin': (): io.flow.internal.v0.enums.GoogleAnalyticsPlugin => faker.helpers.arrayElement(['ec']),
7528
7396
 
7529
7397
  'io.flow.internal.v0.enums.graphql_service_types': (): io.flow.internal.v0.enums.GraphqlServiceTypes => faker.helpers.arrayElement([
@@ -7540,6 +7408,7 @@ const factories = {
7540
7408
  ]),
7541
7409
 
7542
7410
  'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']),
7411
+ 'io.flow.internal.v0.enums.hosein_item_type': (): io.flow.internal.v0.enums.HoseinItemType => faker.helpers.arrayElement(['physical', 'digital']),
7543
7412
  'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
7544
7413
  'io.flow.internal.v0.enums.internal_payment_entity_type': (): io.flow.internal.v0.enums.InternalPaymentEntityType => faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'dispute']),
7545
7414
  'io.flow.internal.v0.enums.item_classification_action': (): io.flow.internal.v0.enums.ItemClassificationAction => faker.helpers.arrayElement(['ACCEPT', 'MANUAL', 'REJECT']),
@@ -7562,6 +7431,7 @@ const factories = {
7562
7431
 
7563
7432
  'io.flow.internal.v0.enums.item_quantity_action': (): io.flow.internal.v0.enums.ItemQuantityAction => faker.helpers.arrayElement(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']),
7564
7433
  'io.flow.internal.v0.enums.item_type': (): io.flow.internal.v0.enums.ItemType => faker.helpers.arrayElement(['standard', 'multi_product']),
7434
+ 'io.flow.internal.v0.enums.journal_operation': (): io.flow.internal.v0.enums.JournalOperation => faker.helpers.arrayElement(['insert', 'update', 'delete']),
7565
7435
  'io.flow.internal.v0.enums.keyword_type': (): io.flow.internal.v0.enums.KeywordType => faker.helpers.arrayElement(['positive', 'negative']),
7566
7436
  'io.flow.internal.v0.enums.label_billing_strategy': (): io.flow.internal.v0.enums.LabelBillingStrategy => faker.helpers.arrayElement(['quote', 'carrier']),
7567
7437
  'io.flow.internal.v0.enums.label_cancellation_error_code': (): io.flow.internal.v0.enums.LabelCancellationErrorCode => faker.helpers.arrayElement(['already_used', 'carrier_unsupported']),
@@ -7739,6 +7609,7 @@ const factories = {
7739
7609
 
7740
7610
  'io.flow.internal.v0.enums.payment_summary_type': (): io.flow.internal.v0.enums.PaymentSummaryType => faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'reversal', 'credit']),
7741
7611
  'io.flow.internal.v0.enums.payment_term': (): io.flow.internal.v0.enums.PaymentTerm => faker.helpers.arrayElement(['net7', 'net15', 'net30']),
7612
+ 'io.flow.internal.v0.enums.pending_record_type': (): io.flow.internal.v0.enums.PendingRecordType => faker.helpers.arrayElement(['verification', 'classification', 'restriction']),
7742
7613
  'io.flow.internal.v0.enums.prateek_item_type': (): io.flow.internal.v0.enums.PrateekItemType => faker.helpers.arrayElement(['physical', 'digital']),
7743
7614
  'io.flow.internal.v0.enums.preferred_billing_schedule': (): io.flow.internal.v0.enums.PreferredBillingSchedule => faker.helpers.arrayElement(['monthly', 'bi-monthly']),
7744
7615
  'io.flow.internal.v0.enums.price_selector': (): io.flow.internal.v0.enums.PriceSelector => faker.helpers.arrayElement(['minimum', 'maximum']),
@@ -7764,11 +7635,7 @@ const factories = {
7764
7635
  ]),
7765
7636
 
7766
7637
  'io.flow.internal.v0.enums.processor_entity_status': (): io.flow.internal.v0.enums.ProcessorEntityStatus => faker.helpers.arrayElement(['active', 'draft', 'archived']),
7767
- 'io.flow.internal.v0.enums.product_status': (): io.flow.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft']),
7768
- 'io.flow.internal.v0.enums.prompt_action': (): io.flow.internal.v0.enums.PromptAction => faker.helpers.arrayElement(['prompt_displayed', 'consent_granted', 'consent_denied']),
7769
- 'io.flow.internal.v0.enums.prompt_checkout_display_position': (): io.flow.internal.v0.enums.PromptCheckoutDisplayPosition => faker.helpers.arrayElement(['email', 'submission']),
7770
- 'io.flow.internal.v0.enums.prompt_options': (): io.flow.internal.v0.enums.PromptOptions => faker.helpers.arrayElement(['notice_only', 'require_consent', 'consent_by_default']),
7771
- 'io.flow.internal.v0.enums.prompt_target': (): io.flow.internal.v0.enums.PromptTarget => faker.helpers.arrayElement(['browse', 'checkout']),
7638
+ 'io.flow.internal.v0.enums.product_status': (): io.flow.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft', 'unlisted']),
7772
7639
 
7773
7640
  'io.flow.internal.v0.enums.rate_level_key': (): io.flow.internal.v0.enums.RateLevelKey => faker.helpers.arrayElement([
7774
7641
  'shopify_small_usa',
@@ -7778,7 +7645,6 @@ const factories = {
7778
7645
  ]),
7779
7646
 
7780
7647
  'io.flow.internal.v0.enums.rate_source': (): io.flow.internal.v0.enums.RateSource => faker.helpers.arrayElement(['calculated', 'market']),
7781
- 'io.flow.internal.v0.enums.rebound_configuration_status': (): io.flow.internal.v0.enums.ReboundConfigurationStatus => faker.helpers.arrayElement(['active', 'inactive']),
7782
7648
  'io.flow.internal.v0.enums.redirect_reason': (): io.flow.internal.v0.enums.RedirectReason => faker.helpers.arrayElement(['three_d_secure']),
7783
7649
 
7784
7650
  'io.flow.internal.v0.enums.rejection_reason': (): io.flow.internal.v0.enums.RejectionReason => faker.helpers.arrayElement([
@@ -7810,6 +7676,7 @@ const factories = {
7810
7676
  'reconcile_not_recorded',
7811
7677
  'products_record',
7812
7678
  'disputes',
7679
+ 'sales_payments_record',
7813
7680
  ]),
7814
7681
 
7815
7682
  'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
@@ -7826,6 +7693,7 @@ const factories = {
7826
7693
  'io.flow.internal.v0.enums.restriction_decision': (): io.flow.internal.v0.enums.RestrictionDecision => faker.helpers.arrayElement(['accept', 'escalate', 'reject', 'review']),
7827
7694
  'io.flow.internal.v0.enums.restriction_organization_channel': (): io.flow.internal.v0.enums.RestrictionOrganizationChannel => faker.helpers.arrayElement(['shopify', 'enterprise', 'shopify-sandbox', 'enterprise-sandbox']),
7828
7695
  'io.flow.internal.v0.enums.restriction_organization_source': (): io.flow.internal.v0.enums.RestrictionOrganizationSource => faker.helpers.arrayElement(['shopify', 'enterprise']),
7696
+ 'io.flow.internal.v0.enums.restriction_rule_community_exemption': (): io.flow.internal.v0.enums.RestrictionRuleCommunityExemption => faker.helpers.arrayElement(['domestic_exemption', 'intra_eu_exemption']),
7829
7697
  'io.flow.internal.v0.enums.restriction_rule_exception_action': (): io.flow.internal.v0.enums.RestrictionRuleExceptionAction => faker.helpers.arrayElement(['allow', 'deny']),
7830
7698
  'io.flow.internal.v0.enums.restriction_state_review_status': (): io.flow.internal.v0.enums.RestrictionStateReviewStatus => faker.helpers.arrayElement(['reviewed', 'in_review']),
7831
7699
  'io.flow.internal.v0.enums.restriction_status': (): io.flow.internal.v0.enums.RestrictionStatus => faker.helpers.arrayElement(['pending', 'in_review', 'escalated', 'accepted', 'restricted']),
@@ -7833,8 +7701,7 @@ const factories = {
7833
7701
  'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
7834
7702
  'io.flow.internal.v0.enums.risk_evaluation': (): io.flow.internal.v0.enums.RiskEvaluation => faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']),
7835
7703
  'io.flow.internal.v0.enums.rohan_item_type': (): io.flow.internal.v0.enums.RohanItemType => faker.helpers.arrayElement(['physical', 'digital']),
7836
- 'io.flow.internal.v0.enums.shopify_check_inventory_error_code': (): io.flow.internal.v0.enums.ShopifyCheckInventoryErrorCode => faker.helpers.arrayElement(['inventory_out_of_stock']),
7837
- 'io.flow.internal.v0.enums.shopify_grant_status': (): io.flow.internal.v0.enums.ShopifyGrantStatus => faker.helpers.arrayElement(['pass', 'fail']),
7704
+ 'io.flow.internal.v0.enums.sarvesh_item_type': (): io.flow.internal.v0.enums.SarveshItemType => faker.helpers.arrayElement(['physical', 'digital']),
7838
7705
  'io.flow.internal.v0.enums.shopify_incoterm_configuration': (): io.flow.internal.v0.enums.ShopifyIncotermConfiguration => faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']),
7839
7706
 
7840
7707
  'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
@@ -7895,25 +7762,11 @@ const factories = {
7895
7762
  'io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status': (): io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus => faker.helpers.arrayElement(['in_review', 'reviewed']),
7896
7763
  'io.flow.internal.v0.enums.shopify_monitoring_tracking_field': (): io.flow.internal.v0.enums.ShopifyMonitoringTrackingField => faker.helpers.arrayElement(['tracking_number', 'carrier_service', 'tracking_url']),
7897
7764
  'io.flow.internal.v0.enums.shopify_plan_type': (): io.flow.internal.v0.enums.ShopifyPlanType => faker.helpers.arrayElement(['standard', 'shopify_plus']),
7898
- 'io.flow.internal.v0.enums.shopify_promotion_behavior': (): io.flow.internal.v0.enums.ShopifyPromotionBehavior => faker.helpers.arrayElement(['disable_discount_codes']),
7899
- 'io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method': (): io.flow.internal.v0.enums.ShopifyPromotionOfferAllocationMethod => faker.helpers.arrayElement(['each', 'across']),
7900
- 'io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component': (): io.flow.internal.v0.enums.ShopifyPromotionOrderEntitlementComponent => faker.helpers.arrayElement(['subtotal', 'shipping', 'vat', 'duty']),
7901
- 'io.flow.internal.v0.enums.shopify_promotion_status': (): io.flow.internal.v0.enums.ShopifyPromotionStatus => faker.helpers.arrayElement(['active', 'inactive']),
7902
7765
  'io.flow.internal.v0.enums.shopify_service': (): io.flow.internal.v0.enums.ShopifyService => faker.helpers.arrayElement(['payment', 'duty_tax_calculator', 'sellability']),
7903
7766
  'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
7904
7767
  'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
7905
7768
  'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task', 'invariant']),
7906
7769
  'io.flow.internal.v0.enums.source_type_filter': (): io.flow.internal.v0.enums.SourceTypeFilter => faker.helpers.arrayElement(['organization', 'channel']),
7907
-
7908
- 'io.flow.internal.v0.enums.statement_status': (): io.flow.internal.v0.enums.StatementStatus => faker.helpers.arrayElement([
7909
- 'created',
7910
- 'no_transactions',
7911
- 'transactions_assigned',
7912
- 'statement_generated',
7913
- 'statement_regenerated',
7914
- 'failed',
7915
- ]),
7916
-
7917
7770
  'io.flow.internal.v0.enums.statement_transfer_transaction_location': (): io.flow.internal.v0.enums.StatementTransferTransactionLocation => faker.helpers.arrayElement(['transactions_file', 'summary']),
7918
7771
 
7919
7772
  'io.flow.internal.v0.enums.statistic_type': (): io.flow.internal.v0.enums.StatisticType => faker.helpers.arrayElement([
@@ -7947,6 +7800,15 @@ const factories = {
7947
7800
  'io.flow.internal.v0.enums.tax_calculation_error_code': (): io.flow.internal.v0.enums.TaxCalculationErrorCode => faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']),
7948
7801
  'io.flow.internal.v0.enums.tax_party': (): io.flow.internal.v0.enums.TaxParty => faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']),
7949
7802
  'io.flow.internal.v0.enums.tax_transaction_type': (): io.flow.internal.v0.enums.TaxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'tax', 'refund']),
7803
+
7804
+ 'io.flow.internal.v0.enums.taxonomy_category_classification_alignment': (): io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment => faker.helpers.arrayElement([
7805
+ 'aligned',
7806
+ 'not_aligned',
7807
+ 'product_missing_category',
7808
+ 'config_missing_category',
7809
+ 'product_not_found',
7810
+ ]),
7811
+
7950
7812
  'io.flow.internal.v0.enums.tracking_integration_type': (): io.flow.internal.v0.enums.TrackingIntegrationType => faker.helpers.arrayElement(['api', 'bulk', 'aftership']),
7951
7813
  'io.flow.internal.v0.enums.tracking_label_dimensions_source': (): io.flow.internal.v0.enums.TrackingLabelDimensionsSource => faker.helpers.arrayElement(['aftership', 'carrier_api']),
7952
7814
 
@@ -8222,19 +8084,6 @@ const factories = {
8222
8084
  rate: factories.decimal(),
8223
8085
  }),
8224
8086
 
8225
- 'io.flow.internal.v0.models.address_configuration_province_setting': (): io.flow.internal.v0.models.AddressConfigurationProvinceSetting => ({
8226
- code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
8227
- }),
8228
-
8229
- 'io.flow.internal.v0.models.address_configuration_setting': (): io.flow.internal.v0.models.AddressConfigurationSetting => ({
8230
- id: factories.string(),
8231
- province: factories['io.flow.internal.v0.models.address_configuration_province_setting'](),
8232
- }),
8233
-
8234
- 'io.flow.internal.v0.models.address_configuration_setting_form': (): io.flow.internal.v0.models.AddressConfigurationSettingForm => ({
8235
- province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
8236
- }),
8237
-
8238
8087
  'io.flow.internal.v0.models.adjustment_amount_fixed': (): io.flow.internal.v0.models.AdjustmentAmountFixed => ({
8239
8088
  discriminator: 'fixed',
8240
8089
  amount: factories['io.flow.common.v0.models.money'](),
@@ -8756,10 +8605,6 @@ const factories = {
8756
8605
  added_on: factories.date_iso_8601(),
8757
8606
  }),
8758
8607
 
8759
- 'io.flow.internal.v0.models.apm_content': (): io.flow.internal.v0.models.ApmContent => ({
8760
- processor_description: factories['io.flow.internal.v0.unions.content_item'](),
8761
- }),
8762
-
8763
8608
  'io.flow.internal.v0.models.apple_pay_authorization_payload': (): io.flow.internal.v0.models.ApplePayAuthorizationPayload => ({
8764
8609
  discriminator: 'apple_pay_authorization_payload',
8765
8610
  apple_pay_token: factories.string(),
@@ -8890,6 +8735,27 @@ const factories = {
8890
8735
  id: factories.string(),
8891
8736
  }),
8892
8737
 
8738
+ 'io.flow.internal.v0.models.bank_payment_detail': (): io.flow.internal.v0.models.BankPaymentDetail => ({
8739
+ id: factories.string(),
8740
+ source_type: factories['io.flow.internal.v0.enums.account_type'](),
8741
+ source_id: factories.string(),
8742
+ status: factories['io.flow.internal.v0.enums.bank_payment_status_code'](),
8743
+ amount: factories.decimal(),
8744
+ currency: factories.string(),
8745
+ created_at: factories.date_time_iso_8601(),
8746
+ payment_transactions_url: factories.string(),
8747
+
8748
+ statement_attachments: arrayOf(
8749
+ () => factories['io.flow.internal.v0.models.bank_payment_detail_attachment'](),
8750
+ ),
8751
+ }),
8752
+
8753
+ 'io.flow.internal.v0.models.bank_payment_detail_attachment': (): io.flow.internal.v0.models.BankPaymentDetailAttachment => ({
8754
+ statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
8755
+ statement_url: factories.string(),
8756
+ statement_transactions_url: factories.string(),
8757
+ }),
8758
+
8893
8759
  'io.flow.internal.v0.models.bank_payment_form': (): io.flow.internal.v0.models.BankPaymentForm => ({
8894
8760
  account_id: factories.string(),
8895
8761
  reference: factories.string(),
@@ -10097,14 +9963,6 @@ const factories = {
10097
9963
  chargeback: factories['io.flow.internal.v0.models.chargeback'](),
10098
9964
  }),
10099
9965
 
10100
- 'io.flow.internal.v0.models.checkbox': (): io.flow.internal.v0.models.Checkbox => ({
10101
- name: factories.string(),
10102
- value: factories.string(),
10103
- label: factories.string(),
10104
- checked_by_default: factories.boolean(),
10105
- required: factories.boolean(),
10106
- }),
10107
-
10108
9966
  'io.flow.internal.v0.models.checkout_analytics': (): io.flow.internal.v0.models.CheckoutAnalytics => ({
10109
9967
  trackers: arrayOf(() => factories['io.flow.internal.v0.unions.tracker']()),
10110
9968
  use_base_currency: factories.boolean(),
@@ -10145,14 +10003,6 @@ const factories = {
10145
10003
  domain: factories.string(),
10146
10004
  }),
10147
10005
 
10148
- 'io.flow.internal.v0.models.checkout_configuration_deleted': (): io.flow.internal.v0.models.CheckoutConfigurationDeleted => ({
10149
- discriminator: 'checkout_configuration_deleted',
10150
- event_id: factories.string(),
10151
- timestamp: factories.date_time_iso_8601(),
10152
- organization: factories.string(),
10153
- checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
10154
- }),
10155
-
10156
10006
  'io.flow.internal.v0.models.checkout_configuration_form': (): io.flow.internal.v0.models.CheckoutConfigurationForm => ({
10157
10007
  behavior: factories['io.flow.internal.v0.models.checkout_behavior'](),
10158
10008
  settings: factories['io.flow.internal.v0.models.checkout_settings'](),
@@ -10164,70 +10014,6 @@ const factories = {
10164
10014
  id: factories.string(),
10165
10015
  }),
10166
10016
 
10167
- 'io.flow.internal.v0.models.checkout_configuration_upserted': (): io.flow.internal.v0.models.CheckoutConfigurationUpserted => ({
10168
- discriminator: 'checkout_configuration_upserted',
10169
- event_id: factories.string(),
10170
- timestamp: factories.date_time_iso_8601(),
10171
- organization: factories.string(),
10172
- checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
10173
- }),
10174
-
10175
- 'io.flow.internal.v0.models.checkout_content': (): io.flow.internal.v0.models.CheckoutContent => ({
10176
- global: factories['io.flow.internal.v0.models.checkout_content_summary'](),
10177
- items: arrayOf(() => factories['io.flow.experience.v0.models.checkout_item_content']()),
10178
- }),
10179
-
10180
- 'io.flow.internal.v0.models.checkout_content_details': (): io.flow.internal.v0.models.CheckoutContentDetails => ({
10181
- contact_us: factories['io.flow.internal.v0.unions.content_item'](),
10182
- logo: factories['io.flow.internal.v0.models.logo'](),
10183
- privacy_policy: factories['io.flow.internal.v0.unions.content_item'](),
10184
- terms: factories['io.flow.internal.v0.unions.content_item'](),
10185
- order_summary_message: factories['io.flow.internal.v0.models.content_label'](),
10186
- }),
10187
-
10188
- 'io.flow.internal.v0.models.checkout_content_summary': (): io.flow.internal.v0.models.CheckoutContentSummary => ({
10189
- customer_service: factories['io.flow.internal.v0.models.labeled_content'](),
10190
- checkout: factories['io.flow.internal.v0.models.checkout_content_details'](),
10191
- payments: factories['io.flow.internal.v0.models.checkout_payment_content'](),
10192
- marketing: factories['io.flow.internal.v0.models.checkout_marketing_content'](),
10193
- footer: arrayOf(() => factories['io.flow.internal.v0.unions.content_item']()),
10194
- }),
10195
-
10196
- 'io.flow.internal.v0.models.checkout_error': (): io.flow.internal.v0.models.CheckoutError => ({
10197
- code: factories['io.flow.internal.v0.enums.checkout_error_code'](),
10198
- messages: arrayOf(() => factories.string()),
10199
- organization: factories['io.flow.common.v0.models.organization_reference'](),
10200
- redirect: factories['io.flow.internal.v0.models.checkout_redirect'](),
10201
- }),
10202
-
10203
- 'io.flow.internal.v0.models.checkout_marketing_content': (): io.flow.internal.v0.models.CheckoutMarketingContent => ({
10204
- optins: arrayOf(() => factories['io.flow.internal.v0.models.checkbox']()),
10205
- }),
10206
-
10207
- 'io.flow.internal.v0.models.checkout_payment': (): io.flow.internal.v0.models.CheckoutPayment => ({
10208
- authorizations: arrayOf(() => factories['io.flow.payment.v0.unions.authorization']()),
10209
- sources: arrayOf(() => factories['io.flow.payment.v0.unions.payment_source']()),
10210
- public_key: factories['io.flow.payment.v0.models.public_key'](),
10211
- method_types: arrayOf(() => factories['io.flow.reference.v0.enums.payment_method_type']()),
10212
- method_rules: arrayOf(() => factories['io.flow.experience.v0.models.payment_method_rule']()),
10213
- authorization_parameters: arrayOf(() => factories['io.flow.internal.v0.models.authorization_parameters']()),
10214
- }),
10215
-
10216
- 'io.flow.internal.v0.models.checkout_payment_content': (): io.flow.internal.v0.models.CheckoutPaymentContent => ({
10217
- 'default': factories['io.flow.internal.v0.models.apm_content'](),
10218
- paypal: factories['io.flow.internal.v0.models.apm_content'](),
10219
- }),
10220
-
10221
- 'io.flow.internal.v0.models.checkout_platform_data': (): io.flow.internal.v0.models.CheckoutPlatformData => ({
10222
- order_number: factories.string(),
10223
- }),
10224
-
10225
- 'io.flow.internal.v0.models.checkout_redirect': (): io.flow.internal.v0.models.CheckoutRedirect => ({
10226
- method: factories['io.flow.internal.v0.enums.checkout_redirect_method'](),
10227
- url: factories.string(),
10228
- body: factories.string(),
10229
- }),
10230
-
10231
10017
  'io.flow.internal.v0.models.checkout_settings': (): io.flow.internal.v0.models.CheckoutSettings => ({
10232
10018
  session_persistence_timeout: factories['io.flow.common.v0.models.duration'](),
10233
10019
  session_persistence_attribute_keys: arrayOf(() => factories.string()),
@@ -10565,99 +10351,6 @@ const factories = {
10565
10351
  note: factories.string(),
10566
10352
  }),
10567
10353
 
10568
- 'io.flow.internal.v0.models.consumer_optin_activity': (): io.flow.internal.v0.models.ConsumerOptinActivity => ({
10569
- optin_attribute_key: factories.string(),
10570
- optin_region: factories.string(),
10571
- consent_granted: factories.boolean(),
10572
- last_seen_at: factories.date_time_iso_8601(),
10573
- last_acted_at: factories.date_time_iso_8601(),
10574
- }),
10575
-
10576
- 'io.flow.internal.v0.models.content_label': (): io.flow.internal.v0.models.ContentLabel => ({
10577
- discriminator: 'content_label',
10578
- key: factories.string(),
10579
- format: factories['io.flow.internal.v0.enums.format'](),
10580
- value: factories.string(),
10581
- }),
10582
-
10583
- 'io.flow.internal.v0.models.content_schema': (): io.flow.internal.v0.models.ContentSchema => ({
10584
- key: factories.string(),
10585
- description: factories.string(),
10586
- elements: objectOf(() => factories['io.flow.internal.v0.models.content_schema_element']()),
10587
- allow_multiple: factories.boolean(),
10588
- }),
10589
-
10590
- 'io.flow.internal.v0.models.content_schema_element': (): io.flow.internal.v0.models.ContentSchemaElement => ({
10591
- type: factories['io.flow.internal.v0.enums.content_element_type'](),
10592
- description: factories.string(),
10593
- example: factories.string(),
10594
- required: factories.boolean(),
10595
- validation: arrayOf(() => factories['io.flow.internal.v0.unions.validation_rule']()),
10596
- }),
10597
-
10598
- 'io.flow.internal.v0.models.content_schema_form': (): io.flow.internal.v0.models.ContentSchemaForm => ({
10599
- description: factories.string(),
10600
- elements: objectOf(() => factories['io.flow.internal.v0.models.content_schema_element']()),
10601
- allow_multiple: factories.boolean(),
10602
- }),
10603
-
10604
- 'io.flow.internal.v0.models.content_schema_summary': (): io.flow.internal.v0.models.ContentSchemaSummary => ({
10605
- key: factories.string(),
10606
- description: factories.string(),
10607
- }),
10608
-
10609
- 'io.flow.internal.v0.models.country_picker_country': (): io.flow.internal.v0.models.CountryPickerCountry => ({
10610
- iso_3166_2: factories.string(),
10611
- iso_3166_3: factories.string(),
10612
- name: factories.string(),
10613
- default_currency: factories.string(),
10614
- }),
10615
-
10616
- 'io.flow.internal.v0.models.country_picker_country_data': (): io.flow.internal.v0.models.CountryPickerCountryData => ({
10617
- country: factories.string(),
10618
-
10619
- delivery_window: arrayOf(
10620
- () => factories['io.flow.internal.v0.models.country_picker_delivery_window'](),
10621
- ),
10622
- }),
10623
-
10624
- 'io.flow.internal.v0.models.country_picker_currency': (): io.flow.internal.v0.models.CountryPickerCurrency => ({
10625
- iso_4217_3: factories.string(),
10626
- name: factories.string(),
10627
- }),
10628
-
10629
- 'io.flow.internal.v0.models.country_picker_data': (): io.flow.internal.v0.models.CountryPickerData => ({
10630
- countries: arrayOf(() => factories['io.flow.internal.v0.models.country_picker_country']()),
10631
- currencies: arrayOf(() => factories['io.flow.internal.v0.models.country_picker_currency']()),
10632
-
10633
- experience_data: arrayOf(
10634
- () => factories['io.flow.internal.v0.models.country_picker_experience_data'](),
10635
- ),
10636
-
10637
- country_data: arrayOf(
10638
- () => factories['io.flow.internal.v0.models.country_picker_country_data'](),
10639
- ),
10640
- }),
10641
-
10642
- 'io.flow.internal.v0.models.country_picker_delivery_window': (): io.flow.internal.v0.models.CountryPickerDeliveryWindow => ({
10643
- name: factories.string(),
10644
- from: factories.date_time_iso_8601(),
10645
- to: factories.date_time_iso_8601(),
10646
- timezone: factories.string(),
10647
- }),
10648
-
10649
- 'io.flow.internal.v0.models.country_picker_experience_data': (): io.flow.internal.v0.models.CountryPickerExperienceData => ({
10650
- experience_key: factories.string(),
10651
-
10652
- payment_methods: arrayOf(
10653
- () => factories['io.flow.internal.v0.models.country_picker_payment_method'](),
10654
- ),
10655
- }),
10656
-
10657
- 'io.flow.internal.v0.models.country_picker_payment_method': (): io.flow.internal.v0.models.CountryPickerPaymentMethod => ({
10658
- id: factories.string(),
10659
- }),
10660
-
10661
10354
  'io.flow.internal.v0.models.courthouse_product_summary': (): io.flow.internal.v0.models.CourthouseProductSummary => ({
10662
10355
  organization: factories['io.flow.common.v0.models.organization_summary'](),
10663
10356
  product_id: factories.string(),
@@ -10722,6 +10415,8 @@ const factories = {
10722
10415
  discount: factories['io.flow.internal.v0.models.other_record_discount'](),
10723
10416
  net: factories.decimal(),
10724
10417
  identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
10418
+ revenue_share_percentage: factories.decimal(),
10419
+ revenue_share_plan: factories.string(),
10725
10420
  created_at: factories.date_time_iso_8601(),
10726
10421
  updated_at: factories.date_time_iso_8601(),
10727
10422
  posted_at: factories.date_time_iso_8601(),
@@ -10840,6 +10535,10 @@ const factories = {
10840
10535
  daily_value: factories['io.flow.internal.v0.models.daily_value'](),
10841
10536
  }),
10842
10537
 
10538
+ 'io.flow.internal.v0.models.database': (): io.flow.internal.v0.models.Database => ({
10539
+ name: factories.string(),
10540
+ }),
10541
+
10843
10542
  'io.flow.internal.v0.models.debug_accounting_transaction': (): io.flow.internal.v0.models.DebugAccountingTransaction => ({
10844
10543
  type: factories['io.flow.internal.v0.enums.debug_accounting_transaction_type'](),
10845
10544
  type_id: factories.string(),
@@ -11087,12 +10786,6 @@ const factories = {
11087
10786
  pickup_name: factories.string(),
11088
10787
  }),
11089
10788
 
11090
- 'io.flow.internal.v0.models.dict': (): io.flow.internal.v0.models.Dict => ({
11091
- discriminator: 'dict',
11092
- label: factories['io.flow.internal.v0.models.content_label'](),
11093
- description: factories['io.flow.internal.v0.models.content_label'](),
11094
- }),
11095
-
11096
10789
  'io.flow.internal.v0.models.dimension_estimate_ops_input': (): io.flow.internal.v0.models.DimensionEstimateOpsInput => ({
11097
10790
  organization_id: factories.string(),
11098
10791
  length_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
@@ -11982,30 +11675,6 @@ const factories = {
11982
11675
  description: factories.string(),
11983
11676
  }),
11984
11677
 
11985
- 'io.flow.internal.v0.models.financial_reporting_statement': (): io.flow.internal.v0.models.FinancialReportingStatement => ({
11986
- id: factories.string(),
11987
- statement_number: factories.string(),
11988
- status: factories['io.flow.internal.v0.enums.statement_status'](),
11989
- transactions_start_date: factories.date_time_iso_8601(),
11990
- transactions_end_date: factories.date_time_iso_8601(),
11991
- processing_start_at: factories.date_time_iso_8601(),
11992
- processing_end_at: factories.date_time_iso_8601(),
11993
- organization_id: factories.string(),
11994
- flow_entity_country_code: factories.string(),
11995
- captures_url: factories.string(),
11996
- missing_captures_url: factories.string(),
11997
- refunds_url: factories.string(),
11998
- missing_refunds_url: factories.string(),
11999
- adjustments_url: factories.string(),
12000
- }),
12001
-
12002
- 'io.flow.internal.v0.models.financial_reporting_statement_form': (): io.flow.internal.v0.models.FinancialReportingStatementForm => ({
12003
- transactions_start_date: factories.date_time_iso_8601(),
12004
- transactions_end_date: factories.date_time_iso_8601(),
12005
- organization_id: factories.string(),
12006
- flow_entity_country_code: factories.string(),
12007
- }),
12008
-
12009
11678
  'io.flow.internal.v0.models.fiserv_account': (): io.flow.internal.v0.models.FiservAccount => ({
12010
11679
  discriminator: 'fiserv_account',
12011
11680
  id: factories.string(),
@@ -12432,37 +12101,6 @@ const factories = {
12432
12101
  ftp_file: factories['io.flow.ftp.v0.models.ftp_file'](),
12433
12102
  }),
12434
12103
 
12435
- 'io.flow.internal.v0.models.ftp_setting': (): io.flow.internal.v0.models.FtpSetting => ({
12436
- id: factories.string(),
12437
- protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
12438
- paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
12439
- username: factories.string(),
12440
- password: factories.string(),
12441
- host: factories.string(),
12442
- intents: arrayOf(() => factories['io.flow.internal.v0.enums.ftp_intent']()),
12443
- }),
12444
-
12445
- 'io.flow.internal.v0.models.ftp_setting_form': (): io.flow.internal.v0.models.FtpSettingForm => ({
12446
- protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
12447
- paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
12448
- username: factories.string(),
12449
- password: factories.string(),
12450
- host: factories.string(),
12451
- intents: arrayOf(() => factories['io.flow.internal.v0.enums.ftp_intent']()),
12452
- }),
12453
-
12454
- 'io.flow.internal.v0.models.ftp_setting_version': (): io.flow.internal.v0.models.FtpSettingVersion => ({
12455
- id: factories.string(),
12456
- timestamp: factories.date_time_iso_8601(),
12457
- type: factories['io.flow.common.v0.enums.change_type'](),
12458
- ftp_setting: factories['io.flow.internal.v0.models.ftp_setting'](),
12459
- }),
12460
-
12461
- 'io.flow.internal.v0.models.ftp_settings_paths': (): io.flow.internal.v0.models.FtpSettingsPaths => ({
12462
- inbound: factories.string(),
12463
- outbound: factories.string(),
12464
- }),
12465
-
12466
12104
  'io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form': (): io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm => ({
12467
12105
  discriminator: 'fuel_surcharge_service_fee_amount_by_weight_put_form',
12468
12106
  amount: factories['io.flow.common.v0.models.money'](),
@@ -12875,10 +12513,21 @@ const factories = {
12875
12513
  export_id: factories.string(),
12876
12514
  }),
12877
12515
 
12878
- 'io.flow.internal.v0.models.href': (): io.flow.internal.v0.models.Href => ({
12879
- discriminator: 'href',
12880
- label: factories['io.flow.internal.v0.models.content_label'](),
12881
- url: factories.string(),
12516
+ 'io.flow.internal.v0.models.hosein_item': (): io.flow.internal.v0.models.HoseinItem => ({
12517
+ id: factories.string(),
12518
+ number: factories.string(),
12519
+ amount: factories['io.flow.common.v0.models.price'](),
12520
+ description: factories.string(),
12521
+ type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
12522
+ added_on: factories.date_time_iso_8601(),
12523
+ }),
12524
+
12525
+ 'io.flow.internal.v0.models.hosein_item_form': (): io.flow.internal.v0.models.HoseinItemForm => ({
12526
+ number: factories.string(),
12527
+ amount: factories['io.flow.common.v0.models.price'](),
12528
+ description: factories.string(),
12529
+ type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
12530
+ added_on: factories.date_time_iso_8601(),
12882
12531
  }),
12883
12532
 
12884
12533
  'io.flow.internal.v0.models.hs6': (): io.flow.internal.v0.models.Hs6 => ({
@@ -12908,10 +12557,6 @@ const factories = {
12908
12557
  error: factories.string(),
12909
12558
  }),
12910
12559
 
12911
- 'io.flow.internal.v0.models.install_form': (): io.flow.internal.v0.models.InstallForm => ({
12912
- token: factories.string(),
12913
- }),
12914
-
12915
12560
  'io.flow.internal.v0.models.internal_adyen_authorization_details': (): io.flow.internal.v0.models.InternalAdyenAuthorizationDetails => ({
12916
12561
  discriminator: 'internal_adyen_authorization_details',
12917
12562
  adyen_authentication_data: factories['io.flow.internal.v0.models.adyen_authentication_data_reference'](),
@@ -13182,42 +12827,16 @@ const factories = {
13182
12827
  created_at: factories.date_time_iso_8601(),
13183
12828
  }),
13184
12829
 
13185
- 'io.flow.internal.v0.models.issuer': (): io.flow.internal.v0.models.Issuer => ({
12830
+ 'io.flow.internal.v0.models.item_classification': (): io.flow.internal.v0.models.ItemClassification => ({
13186
12831
  id: factories.string(),
13187
- iin: factories.string(),
13188
- name: factories.string(),
13189
- country: factories.string(),
13190
- brand: factories.string(),
13191
- type: factories.string(),
13192
- category: factories.string(),
13193
- website: factories.string(),
13194
- phone: factories.string(),
13195
- }),
13196
-
13197
- 'io.flow.internal.v0.models.issuer_deleted': (): io.flow.internal.v0.models.IssuerDeleted => ({
13198
- discriminator: 'issuer_deleted',
13199
- event_id: factories.string(),
13200
- timestamp: factories.date_time_iso_8601(),
13201
- issuer: factories['io.flow.internal.v0.models.issuer'](),
13202
- }),
13203
-
13204
- 'io.flow.internal.v0.models.issuer_upserted': (): io.flow.internal.v0.models.IssuerUpserted => ({
13205
- discriminator: 'issuer_upserted',
13206
- event_id: factories.string(),
13207
- timestamp: factories.date_time_iso_8601(),
13208
- issuer: factories['io.flow.internal.v0.models.issuer'](),
13209
- }),
13210
-
13211
- 'io.flow.internal.v0.models.item_classification': (): io.flow.internal.v0.models.ItemClassification => ({
13212
- id: factories.string(),
13213
- organization: factories.string(),
13214
- uid: factories.string(),
13215
- action: factories['io.flow.internal.v0.enums.suggestion_action'](),
13216
- main_material: objectOf(() => factories.decimal()),
13217
- gender: objectOf(() => factories.decimal()),
13218
- construction: objectOf(() => factories.decimal()),
13219
- item: objectOf(() => factories.decimal()),
13220
- model_id: factories.string(),
12832
+ organization: factories.string(),
12833
+ uid: factories.string(),
12834
+ action: factories['io.flow.internal.v0.enums.suggestion_action'](),
12835
+ main_material: objectOf(() => factories.decimal()),
12836
+ gender: objectOf(() => factories.decimal()),
12837
+ construction: objectOf(() => factories.decimal()),
12838
+ item: objectOf(() => factories.decimal()),
12839
+ model_id: factories.string(),
13221
12840
  }),
13222
12841
 
13223
12842
  'io.flow.internal.v0.models.item_classification_form': (): io.flow.internal.v0.models.ItemClassificationForm => ({
@@ -13312,6 +12931,7 @@ const factories = {
13312
12931
  tariffs: objectOf(() => factories['io.flow.internal.v0.models.tariff_code_duty']()),
13313
12932
  decision_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
13314
12933
  classification_scope: factories['io.flow.internal.v0.enums.classification_scope'](),
12934
+ taxonomy_category_classification_alignment: factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'](),
13315
12935
  created_at: factories.date_time_iso_8601(),
13316
12936
  updated_at: factories.date_time_iso_8601(),
13317
12937
  updated_by_user_id: factories.string(),
@@ -13434,6 +13054,21 @@ const factories = {
13434
13054
  name: factories.string(),
13435
13055
  }),
13436
13056
 
13057
+ 'io.flow.internal.v0.models.journal': (): io.flow.internal.v0.models.Journal => ({
13058
+ name: factories.string(),
13059
+ queued: factories.integer(),
13060
+ failed: factories.integer(),
13061
+ }),
13062
+
13063
+ 'io.flow.internal.v0.models.journal_failure': (): io.flow.internal.v0.models.JournalFailure => ({
13064
+ journal_id: factories.long(),
13065
+ operation: factories['io.flow.internal.v0.enums.journal_operation'](),
13066
+ created_at: factories.date_time_iso_8601(),
13067
+ failed_at: factories.date_time_iso_8601(),
13068
+ error: factories.string(),
13069
+ organization_id: factories.string(),
13070
+ }),
13071
+
13437
13072
  'io.flow.internal.v0.models.key': (): io.flow.internal.v0.models.Key => ({
13438
13073
  id: factories.string(),
13439
13074
  created_at: factories.date_time_iso_8601(),
@@ -13748,11 +13383,6 @@ const factories = {
13748
13383
  label_transaction: factories['io.flow.internal.v0.models.label_transaction'](),
13749
13384
  }),
13750
13385
 
13751
- 'io.flow.internal.v0.models.labeled_content': (): io.flow.internal.v0.models.LabeledContent => ({
13752
- label: factories['io.flow.internal.v0.models.content_label'](),
13753
- contents: arrayOf(() => factories['io.flow.internal.v0.unions.content_item']()),
13754
- }),
13755
-
13756
13386
  'io.flow.internal.v0.models.labels_prediction': (): io.flow.internal.v0.models.LabelsPrediction => ({
13757
13387
  main_material: factories.string(),
13758
13388
  gender: factories.string(),
@@ -13883,75 +13513,6 @@ const factories = {
13883
13513
  action_quantity: arrayOf(() => factories['io.flow.internal.v0.models.action_quantity']()),
13884
13514
  }),
13885
13515
 
13886
- 'io.flow.internal.v0.models.load': (): io.flow.internal.v0.models.Load => ({
13887
- discriminator: 'load',
13888
- label: factories['io.flow.internal.v0.models.content_label'](),
13889
- location: factories['io.flow.internal.v0.models.location'](),
13890
- }),
13891
-
13892
- 'io.flow.internal.v0.models.localizable_content_reference': (): io.flow.internal.v0.models.LocalizableContentReference => ({
13893
- discriminator: 'localizable_content_reference',
13894
- content_id: factories.string(),
13895
- }),
13896
-
13897
- 'io.flow.internal.v0.models.localization': (): io.flow.internal.v0.models.Localization => ({
13898
- discriminator: 'localization',
13899
- id: factories.string(),
13900
- content_id: factories.string(),
13901
- locale: factories.string(),
13902
- status: factories['io.flow.internal.v0.enums.content_status'](),
13903
- elements: objectOf(() => factories['io.flow.internal.v0.models.localized_content_element']()),
13904
- }),
13905
-
13906
- 'io.flow.internal.v0.models.localization_form': (): io.flow.internal.v0.models.LocalizationForm => ({
13907
- locale: factories.string(),
13908
- status: factories['io.flow.internal.v0.enums.content_status'](),
13909
- elements: objectOf(() => factories['io.flow.internal.v0.models.localized_content_element']()),
13910
- }),
13911
-
13912
- 'io.flow.internal.v0.models.localization_ref': (): io.flow.internal.v0.models.LocalizationRef => ({
13913
- id: factories.string(),
13914
- locale: factories.string(),
13915
- status: factories['io.flow.internal.v0.enums.content_status'](),
13916
- }),
13917
-
13918
- 'io.flow.internal.v0.models.localization_upserted': (): io.flow.internal.v0.models.LocalizationUpserted => ({
13919
- discriminator: 'localization_upserted',
13920
- event_id: factories.string(),
13921
- timestamp: factories.date_time_iso_8601(),
13922
- localization_id: factories.string(),
13923
- locale: factories.string(),
13924
- status: factories['io.flow.internal.v0.enums.content_status'](),
13925
- }),
13926
-
13927
- 'io.flow.internal.v0.models.localized_content': (): io.flow.internal.v0.models.LocalizedContent => ({
13928
- id: factories.string(),
13929
- schema_key: factories.string(),
13930
- status: factories['io.flow.internal.v0.enums.content_status'](),
13931
- source: factories['io.flow.internal.v0.models.localization'](),
13932
- localizations: arrayOf(() => factories['io.flow.internal.v0.models.localization_ref']()),
13933
- }),
13934
-
13935
- 'io.flow.internal.v0.models.localized_content_element': (): io.flow.internal.v0.models.LocalizedContentElement => ({
13936
- value: factories.string(),
13937
- type: factories['io.flow.internal.v0.enums.content_element_type'](),
13938
- }),
13939
-
13940
- 'io.flow.internal.v0.models.localized_content_form': (): io.flow.internal.v0.models.LocalizedContentForm => ({
13941
- schema_key: factories.string(),
13942
- status: factories['io.flow.internal.v0.enums.content_status'](),
13943
- source: factories['io.flow.internal.v0.models.localization_form'](),
13944
- }),
13945
-
13946
- 'io.flow.internal.v0.models.localized_content_upserted': (): io.flow.internal.v0.models.LocalizedContentUpserted => ({
13947
- discriminator: 'localized_content_upserted',
13948
- event_id: factories.string(),
13949
- timestamp: factories.date_time_iso_8601(),
13950
- content_id: factories.string(),
13951
- schema_key: factories.string(),
13952
- source_localization_id: factories.string(),
13953
- }),
13954
-
13955
13516
  'io.flow.internal.v0.models.localized_item_prices_export_request': (): io.flow.internal.v0.models.LocalizedItemPricesExportRequest => ({
13956
13517
  discriminator: 'localized_item_prices_export_request',
13957
13518
  event_id: factories.string(),
@@ -13979,11 +13540,6 @@ const factories = {
13979
13540
  price_end_date: factories.date_time_iso_8601(),
13980
13541
  }),
13981
13542
 
13982
- 'io.flow.internal.v0.models.location': (): io.flow.internal.v0.models.Location => ({
13983
- type: factories['io.flow.internal.v0.enums.content_type'](),
13984
- url: factories.string(),
13985
- }),
13986
-
13987
13543
  'io.flow.internal.v0.models.logistics_capabilities': (): io.flow.internal.v0.models.LogisticsCapabilities => ({
13988
13544
  id: factories.string(),
13989
13545
  capabilities: arrayOf(() => factories['io.flow.internal.v0.enums.logistics_capability']()),
@@ -14029,10 +13585,6 @@ const factories = {
14029
13585
  external_reference_number: factories.string(),
14030
13586
  }),
14031
13587
 
14032
- 'io.flow.internal.v0.models.logo': (): io.flow.internal.v0.models.Logo => ({
14033
- url: factories.string(),
14034
- }),
14035
-
14036
13588
  'io.flow.internal.v0.models.lost_chargeback': (): io.flow.internal.v0.models.LostChargeback => ({
14037
13589
  id: factories.string(),
14038
13590
  order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
@@ -14058,10 +13610,6 @@ const factories = {
14058
13610
  applied: arrayOf(() => factories['io.flow.internal.v0.models.loyalty_program_reward']()),
14059
13611
  }),
14060
13612
 
14061
- 'io.flow.internal.v0.models.magento_install_form': (): io.flow.internal.v0.models.MagentoInstallForm => ({
14062
- token: factories.string(),
14063
- }),
14064
-
14065
13613
  'io.flow.internal.v0.models.main_transaction': (): io.flow.internal.v0.models.MainTransaction => ({
14066
13614
  id: factories.string(),
14067
13615
  account: factories['io.flow.billing.v0.models.account_reference'](),
@@ -14499,59 +14047,6 @@ const factories = {
14499
14047
  expires_at: factories.date_time_iso_8601(),
14500
14048
  }),
14501
14049
 
14502
- 'io.flow.internal.v0.models.optin_attribute': (): io.flow.internal.v0.models.OptinAttribute => ({
14503
- name: factories.string(),
14504
- optin_attribute_key: factories.string(),
14505
- target: factories['io.flow.internal.v0.enums.prompt_target'](),
14506
- status: factories['io.flow.internal.v0.enums.content_status'](),
14507
- created_at: factories.date_time_iso_8601(),
14508
- updated_at: factories.date_time_iso_8601(),
14509
- }),
14510
-
14511
- 'io.flow.internal.v0.models.optin_attribute_form': (): io.flow.internal.v0.models.OptinAttributeForm => ({
14512
- name: factories.string(),
14513
- optin_attribute_key: factories.string(),
14514
- target: factories['io.flow.internal.v0.enums.prompt_target'](),
14515
- status: factories['io.flow.internal.v0.enums.content_status'](),
14516
- }),
14517
-
14518
- 'io.flow.internal.v0.models.optin_prompt': (): io.flow.internal.v0.models.OptinPrompt => ({
14519
- id: factories.string(),
14520
- optin_attribute: factories['io.flow.internal.v0.models.optin_attribute'](),
14521
- region: factories.string(),
14522
- options: arrayOf(() => factories['io.flow.internal.v0.enums.prompt_options']()),
14523
- content: factories['io.flow.internal.v0.unions.localizable_content'](),
14524
- position: factories.long(),
14525
- enforce_on: factories.date_time_iso_8601(),
14526
- display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
14527
- }),
14528
-
14529
- 'io.flow.internal.v0.models.optin_prompt_checkout_display': (): io.flow.internal.v0.models.OptinPromptCheckoutDisplay => ({
14530
- discriminator: 'optin_prompt_checkout_display',
14531
- display_position: factories['io.flow.internal.v0.enums.prompt_checkout_display_position'](),
14532
- }),
14533
-
14534
- 'io.flow.internal.v0.models.optin_prompt_copy': (): io.flow.internal.v0.models.OptinPromptCopy => ({
14535
- from: factories.string(),
14536
- to: factories.string(),
14537
- number_prompts: factories.long(),
14538
- }),
14539
-
14540
- 'io.flow.internal.v0.models.optin_prompt_copy_form': (): io.flow.internal.v0.models.OptinPromptCopyForm => ({
14541
- from: factories.string(),
14542
- to: factories.string(),
14543
- }),
14544
-
14545
- 'io.flow.internal.v0.models.optin_prompt_form': (): io.flow.internal.v0.models.OptinPromptForm => ({
14546
- optin_attribute_key: factories.string(),
14547
- region: factories.string(),
14548
- options: arrayOf(() => factories['io.flow.internal.v0.enums.prompt_options']()),
14549
- content: factories['io.flow.internal.v0.models.localization_form'](),
14550
- position: factories.integer(),
14551
- enforce_on: factories.date_time_iso_8601(),
14552
- display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
14553
- }),
14554
-
14555
14050
  'io.flow.internal.v0.models.order_actionability': (): io.flow.internal.v0.models.OrderActionability => ({
14556
14051
  action: arrayOf(() => factories['io.flow.internal.v0.enums.order_action']()),
14557
14052
  lines: arrayOf(() => factories['io.flow.internal.v0.models.line_action_quantities']()),
@@ -14763,10 +14258,6 @@ const factories = {
14763
14258
  to_service_id: factories.string(),
14764
14259
  }),
14765
14260
 
14766
- 'io.flow.internal.v0.models.order_submission_form': (): io.flow.internal.v0.models.OrderSubmissionForm => ({
14767
- authorization: factories['io.flow.payment.v0.unions.authorization_form'](),
14768
- }),
14769
-
14770
14261
  'io.flow.internal.v0.models.order_summary': (): io.flow.internal.v0.models.OrderSummary => ({
14771
14262
  id: factories.string(),
14772
14263
  organization: factories['io.flow.common.v0.models.organization_reference'](),
@@ -15112,11 +14603,6 @@ const factories = {
15112
14603
  product_count: factories.long(),
15113
14604
  restricted_product_count: factories.long(),
15114
14605
  last_order_submitted_at: factories.date_time_iso_8601(),
15115
- matching_positive_keywords: arrayOf(() => factories.string()),
15116
- product_categories: arrayOf(() => factories.string()),
15117
- matching_negative_keywords: arrayOf(() => factories.string()),
15118
- decisions_user_ids: arrayOf(() => factories.string()),
15119
- restriction_rule_ids: arrayOf(() => factories.string()),
15120
14606
  }),
15121
14607
 
15122
14608
  'io.flow.internal.v0.models.organization_metadata_deleted': (): io.flow.internal.v0.models.OrganizationMetadataDeleted => ({
@@ -15321,6 +14807,8 @@ const factories = {
15321
14807
  discount: factories['io.flow.internal.v0.models.other_record_discount'](),
15322
14808
  net: factories.decimal(),
15323
14809
  identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
14810
+ revenue_share_percentage: factories.decimal(),
14811
+ revenue_share_plan: factories.string(),
15324
14812
  created_at: factories.date_time_iso_8601(),
15325
14813
  updated_at: factories.date_time_iso_8601(),
15326
14814
  posted_at: factories.date_time_iso_8601(),
@@ -15599,6 +15087,11 @@ const factories = {
15599
15087
  tribe: factories['io.flow.internal.v0.models.tribe'](),
15600
15088
  }),
15601
15089
 
15090
+ 'io.flow.internal.v0.models.payment_is': (): io.flow.internal.v0.models.PaymentIs => ({
15091
+ lvg: factories.boolean(),
15092
+ manual: factories.boolean(),
15093
+ }),
15094
+
15602
15095
  'io.flow.internal.v0.models.payment_method_detail': (): io.flow.internal.v0.models.PaymentMethodDetail => ({
15603
15096
  method: factories['io.flow.reference.v0.models.payment_method'](),
15604
15097
  method_options: arrayOf(() => factories['io.flow.internal.v0.models.payment_method_option']()),
@@ -16316,12 +15809,33 @@ const factories = {
16316
15809
  rule_ids: arrayOf(() => factories.string()),
16317
15810
  }),
16318
15811
 
15812
+ 'io.flow.internal.v0.models.product_sellability_internal_form': (): io.flow.internal.v0.models.ProductSellabilityInternalForm => ({
15813
+ name: factories.string(),
15814
+ price: factories['io.flow.common.v0.models.money'](),
15815
+ description: factories.string(),
15816
+ hs6_code: factories.string(),
15817
+ categories: arrayOf(() => factories.string()),
15818
+ }),
15819
+
15820
+ 'io.flow.internal.v0.models.product_sellability_internal_result': (): io.flow.internal.v0.models.ProductSellabilityInternalResult => ({
15821
+ restricted_regions: arrayOf(
15822
+ () => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
15823
+ ),
15824
+
15825
+ rule_ids: arrayOf(() => factories.string()),
15826
+ }),
15827
+
16319
15828
  'io.flow.internal.v0.models.product_sellability_result': (): io.flow.internal.v0.models.ProductSellabilityResult => ({
16320
15829
  shop_id: factories.string(),
16321
15830
  product_number: factories.string(),
16322
15831
  request_id: factories.string(),
16323
15832
  hs6_code: factories.string(),
16324
15833
  restricted_regions: arrayOf(() => factories.string()),
15834
+
15835
+ restricted_regions_by_type: arrayOf(
15836
+ () => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
15837
+ ),
15838
+
16325
15839
  rule_ids: arrayOf(() => factories.string()),
16326
15840
  }),
16327
15841
 
@@ -16789,21 +16303,6 @@ const factories = {
16789
16303
  summaries: arrayOf(() => factories['io.flow.internal.v0.models.rate_name_summary']()),
16790
16304
  }),
16791
16305
 
16792
- 'io.flow.internal.v0.models.rebound_configuration': (): io.flow.internal.v0.models.ReboundConfiguration => ({
16793
- id: factories.string(),
16794
- login: factories.string(),
16795
- api_key: factories.string(),
16796
- status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
16797
- orders_since_submitted_at: factories.date_time_iso_8601(),
16798
- }),
16799
-
16800
- 'io.flow.internal.v0.models.rebound_configuration_form': (): io.flow.internal.v0.models.ReboundConfigurationForm => ({
16801
- login: factories.string(),
16802
- api_key: factories.string(),
16803
- status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
16804
- orders_since_submitted_at: factories.date_time_iso_8601(),
16805
- }),
16806
-
16807
16306
  'io.flow.internal.v0.models.record_reference': (): io.flow.internal.v0.models.RecordReference => ({
16808
16307
  id: factories.string(),
16809
16308
  }),
@@ -17178,12 +16677,20 @@ const factories = {
17178
16677
  placeholder: factories.boolean(),
17179
16678
  }),
17180
16679
 
16680
+ 'io.flow.internal.v0.models.restriction_blanket_organization_exemption': (): io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption => ({
16681
+ id: factories.string(),
16682
+ organization_id: factories.string(),
16683
+ description: factories.string(),
16684
+ is_all_rules_exempt: factories.boolean(),
16685
+ exempt_regions: arrayOf(() => factories.string()),
16686
+ excluded_rules: arrayOf(() => factories.string()),
16687
+ }),
16688
+
17181
16689
  'io.flow.internal.v0.models.restriction_category': (): io.flow.internal.v0.models.RestrictionCategory => ({
17182
16690
  category: factories.string(),
17183
16691
  }),
17184
16692
 
17185
16693
  'io.flow.internal.v0.models.restriction_filter': (): io.flow.internal.v0.models.RestrictionFilter => ({
17186
- categories: arrayOf(() => factories.string()),
17187
16694
  users: arrayOf(() => factories['io.flow.common.v0.models.user']()),
17188
16695
  rules: arrayOf(() => factories['io.flow.internal.v0.models.restriction_rule_summary']()),
17189
16696
  positive_keywords: arrayOf(() => factories.string()),
@@ -17229,7 +16736,6 @@ const factories = {
17229
16736
  statuses: arrayOf(() => factories['io.flow.internal.v0.enums.restriction_status']()),
17230
16737
  rule_ids: arrayOf(() => factories.string()),
17231
16738
  user_ids: arrayOf(() => factories.string()),
17232
- categories: arrayOf(() => factories.string()),
17233
16739
  category: factories.string(),
17234
16740
  product_name_query: factories.string(),
17235
16741
  hs6: factories.string(),
@@ -17348,6 +16854,8 @@ const factories = {
17348
16854
  reviews: arrayOf(() => factories['io.flow.internal.v0.models.restriction_item_review']()),
17349
16855
  created_at: factories.date_time_iso_8601(),
17350
16856
  updated_at: factories.date_time_iso_8601(),
16857
+ taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
16858
+ taxonomy_data: arrayOf(() => factories['io.flow.product.v0.models.product_taxonomy_data']()),
17351
16859
  }),
17352
16860
 
17353
16861
  'io.flow.internal.v0.models.restriction_product_decision_form': (): io.flow.internal.v0.models.RestrictionProductDecisionForm => ({
@@ -17362,7 +16870,6 @@ const factories = {
17362
16870
  positive_keywords: arrayOf(() => factories.string()),
17363
16871
  negative_keywords: arrayOf(() => factories.string()),
17364
16872
  user_ids: arrayOf(() => factories.string()),
17365
- categories: arrayOf(() => factories.string()),
17366
16873
  category: factories.string(),
17367
16874
  product_name_query: factories.string(),
17368
16875
  hs6: factories.string(),
@@ -17391,6 +16898,12 @@ const factories = {
17391
16898
  auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
17392
16899
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
17393
16900
  sellability_positive_keywords: arrayOf(() => factories.string()),
16901
+
16902
+ community_exemption: arrayOf(
16903
+ () => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](),
16904
+ ),
16905
+
16906
+ reason_code: factories.string(),
17394
16907
  }),
17395
16908
 
17396
16909
  'io.flow.internal.v0.models.restriction_rule_decision_form': (): io.flow.internal.v0.models.RestrictionRuleDecisionForm => ({
@@ -17446,6 +16959,12 @@ const factories = {
17446
16959
  auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
17447
16960
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
17448
16961
  sellability_positive_keywords: arrayOf(() => factories.string()),
16962
+
16963
+ community_exemption: arrayOf(
16964
+ () => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](),
16965
+ ),
16966
+
16967
+ reason_code: factories.string(),
17449
16968
  }),
17450
16969
 
17451
16970
  'io.flow.internal.v0.models.restriction_rule_lane_exemption': (): io.flow.internal.v0.models.RestrictionRuleLaneExemption => ({
@@ -17462,9 +16981,13 @@ const factories = {
17462
16981
  rule_id: factories.string(),
17463
16982
  description: factories.string(),
17464
16983
  is_rule_exempt: factories.boolean(),
17465
- exempt_countries: arrayOf(() => factories.string()),
16984
+ exempt_regions: arrayOf(() => factories.string()),
17466
16985
  ignored_keywords: arrayOf(() => factories.string()),
17467
16986
  additional_keywords: arrayOf(() => factories.string()),
16987
+
16988
+ community_exemption_override: arrayOf(
16989
+ () => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](),
16990
+ ),
17468
16991
  }),
17469
16992
 
17470
16993
  'io.flow.internal.v0.models.restriction_rule_override': (): io.flow.internal.v0.models.RestrictionRuleOverride => ({
@@ -17500,8 +17023,14 @@ const factories = {
17500
17023
  num_products_setup_complete_with_pvs: factories.decimal(),
17501
17024
  num_orgs_transacting_with_pvs: factories.decimal(),
17502
17025
  num_products_transacting_with_pvs: factories.decimal(),
17026
+ num_orgs_setup_complete_with_pcs: factories.decimal(),
17027
+ num_products_setup_complete_with_pcs: factories.decimal(),
17028
+ num_orgs_transacting_with_pcs: factories.decimal(),
17029
+ num_products_transacting_with_pcs: factories.decimal(),
17503
17030
  oldest_pv_product_date_setup_complete: factories.date_iso_8601(),
17504
17031
  oldest_pv_product_date_transacting: factories.date_iso_8601(),
17032
+ oldest_pc_product_date_setup_complete: factories.date_iso_8601(),
17033
+ oldest_pc_product_date_transacting: factories.date_iso_8601(),
17505
17034
  num_orgs_setup_complete_prs: factories.decimal(),
17506
17035
  num_products_setup_complete_prs: factories.decimal(),
17507
17036
  num_orgs_transacting_prs: factories.decimal(),
@@ -17692,6 +17221,19 @@ const factories = {
17692
17221
  processor: factories['io.flow.internal.v0.enums.processor'](),
17693
17222
  }),
17694
17223
 
17224
+ 'io.flow.internal.v0.models.sales_payment_record': (): io.flow.internal.v0.models.SalesPaymentRecord => ({
17225
+ id: factories.string(),
17226
+ organization: factories['io.flow.internal.v0.models.reporting_organization_summary'](),
17227
+ order: factories['io.flow.internal.v0.models.reporting_order_summary'](),
17228
+ order_total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
17229
+ shopper_breakdown: factories['io.flow.internal.v0.models.shopper_breakdown'](),
17230
+ payment: factories['io.flow.internal.v0.models.reporting_payment'](),
17231
+ conversion_rate: factories['io.flow.internal.v0.models.reporting_conversion_rates'](),
17232
+ payment_is: factories['io.flow.internal.v0.models.payment_is'](),
17233
+ destination_country: factories.string(),
17234
+ fulfilled_at: factories.date_time_iso_8601(),
17235
+ }),
17236
+
17695
17237
  'io.flow.internal.v0.models.sandbox_setup': (): io.flow.internal.v0.models.SandboxSetup => ({
17696
17238
  requested_by: factories.string(),
17697
17239
  }),
@@ -17700,6 +17242,23 @@ const factories = {
17700
17242
  requested_by: factories.string(),
17701
17243
  }),
17702
17244
 
17245
+ 'io.flow.internal.v0.models.sarvesh_item': (): io.flow.internal.v0.models.SarveshItem => ({
17246
+ id: factories.string(),
17247
+ number: factories.string(),
17248
+ amount: factories['io.flow.common.v0.models.price'](),
17249
+ description: factories.string(),
17250
+ type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
17251
+ added_on: factories.date_time_iso_8601(),
17252
+ }),
17253
+
17254
+ 'io.flow.internal.v0.models.sarvesh_item_form': (): io.flow.internal.v0.models.SarveshItemForm => ({
17255
+ number: factories.string(),
17256
+ amount: factories['io.flow.common.v0.models.price'](),
17257
+ description: factories.string(),
17258
+ type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
17259
+ added_on: factories.date_time_iso_8601(),
17260
+ }),
17261
+
17703
17262
  'io.flow.internal.v0.models.scheduled_payment': (): io.flow.internal.v0.models.ScheduledPayment => ({
17704
17263
  payment: factories['io.flow.internal.v0.models.report_payment'](),
17705
17264
  bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
@@ -17844,25 +17403,6 @@ const factories = {
17844
17403
  customer_price: factories.decimal(),
17845
17404
  }),
17846
17405
 
17847
- 'io.flow.internal.v0.models.shop': (): io.flow.internal.v0.models.Shop => ({
17848
- id: factories.string(),
17849
- organization: factories['io.flow.common.v0.models.organization_reference'](),
17850
- myshopify_domain: factories.string(),
17851
- domain: factories.string(),
17852
- }),
17853
-
17854
- 'io.flow.internal.v0.models.shop_form': (): io.flow.internal.v0.models.ShopForm => ({
17855
- organization_id: factories.string(),
17856
- token: factories.string(),
17857
- }),
17858
-
17859
- 'io.flow.internal.v0.models.shop_version': (): io.flow.internal.v0.models.ShopVersion => ({
17860
- id: factories.string(),
17861
- timestamp: factories.date_time_iso_8601(),
17862
- type: factories['io.flow.common.v0.enums.change_type'](),
17863
- shop: factories['io.flow.internal.v0.models.shop'](),
17864
- }),
17865
-
17866
17406
  'io.flow.internal.v0.models.shopify_catalog_publication': (): io.flow.internal.v0.models.ShopifyCatalogPublication => ({
17867
17407
  owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
17868
17408
  }),
@@ -17876,16 +17416,6 @@ const factories = {
17876
17416
  service: factories['io.flow.internal.v0.enums.shopify_service'](),
17877
17417
  }),
17878
17418
 
17879
- 'io.flow.internal.v0.models.shopify_check_inventory_error': (): io.flow.internal.v0.models.ShopifyCheckInventoryError => ({
17880
- code: factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code'](),
17881
- messages: arrayOf(() => factories.string()),
17882
- numbers: arrayOf(() => factories.string()),
17883
- }),
17884
-
17885
- 'io.flow.internal.v0.models.shopify_code_form': (): io.flow.internal.v0.models.ShopifyCodeForm => ({
17886
- code: factories.string(),
17887
- }),
17888
-
17889
17419
  'io.flow.internal.v0.models.shopify_dispute': (): io.flow.internal.v0.models.ShopifyDispute => ({
17890
17420
  id: factories.string(),
17891
17421
  organization_id: factories.string(),
@@ -17916,74 +17446,31 @@ const factories = {
17916
17446
  dispute: factories['io.flow.internal.v0.models.shopify_dispute'](),
17917
17447
  }),
17918
17448
 
17919
- 'io.flow.internal.v0.models.shopify_experience_short_id': (): io.flow.internal.v0.models.ShopifyExperienceShortId => ({
17449
+ 'io.flow.internal.v0.models.shopify_hs10_code': (): io.flow.internal.v0.models.ShopifyHs10Code => ({
17450
+ country_code: factories.string(),
17451
+ code: factories.string(),
17452
+ }),
17453
+
17454
+ 'io.flow.internal.v0.models.shopify_hs10_codes': (): io.flow.internal.v0.models.ShopifyHs10Codes => ({
17920
17455
  id: factories.string(),
17921
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
17922
- short_id: factories.string(),
17456
+ item_number: factories.string(),
17457
+ codes: arrayOf(() => factories['io.flow.internal.v0.models.shopify_hs10_code']()),
17923
17458
  }),
17924
17459
 
17925
- 'io.flow.internal.v0.models.shopify_experience_short_id_deleted': (): io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted => ({
17926
- discriminator: 'shopify_experience_short_id_deleted',
17460
+ 'io.flow.internal.v0.models.shopify_hs10_codes_deleted': (): io.flow.internal.v0.models.ShopifyHs10CodesDeleted => ({
17461
+ discriminator: 'shopify_hs10_codes_deleted',
17927
17462
  event_id: factories.string(),
17928
17463
  timestamp: factories.date_time_iso_8601(),
17929
17464
  organization: factories.string(),
17930
- short_id: factories['io.flow.internal.v0.models.shopify_experience_short_id'](),
17465
+ id: factories.string(),
17931
17466
  }),
17932
17467
 
17933
- 'io.flow.internal.v0.models.shopify_experience_short_id_upserted': (): io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted => ({
17934
- discriminator: 'shopify_experience_short_id_upserted',
17468
+ 'io.flow.internal.v0.models.shopify_hs10_codes_upserted': (): io.flow.internal.v0.models.ShopifyHs10CodesUpserted => ({
17469
+ discriminator: 'shopify_hs10_codes_upserted',
17935
17470
  event_id: factories.string(),
17936
17471
  timestamp: factories.date_time_iso_8601(),
17937
17472
  organization: factories.string(),
17938
- short_id: factories['io.flow.internal.v0.models.shopify_experience_short_id'](),
17939
- }),
17940
-
17941
- 'io.flow.internal.v0.models.shopify_gift_card_balance': (): io.flow.internal.v0.models.ShopifyGiftCardBalance => ({
17942
- gift_card_id: factories.long(),
17943
- last_characters: factories.string(),
17944
- amount: factories.decimal(),
17945
- currency: factories.string(),
17946
- }),
17947
-
17948
- 'io.flow.internal.v0.models.shopify_gift_card_balance_form': (): io.flow.internal.v0.models.ShopifyGiftCardBalanceForm => ({
17949
- number: factories.string(),
17950
- }),
17951
-
17952
- 'io.flow.internal.v0.models.shopify_gift_card_payment_form': (): io.flow.internal.v0.models.ShopifyGiftCardPaymentForm => ({
17953
- code: factories.string(),
17954
- customer_id: factories.long(),
17955
- }),
17956
-
17957
- 'io.flow.internal.v0.models.shopify_gift_card_redemption': (): io.flow.internal.v0.models.ShopifyGiftCardRedemption => ({
17958
- adjustment_id: factories.long(),
17959
- gift_card_id: factories.long(),
17960
- last_characters: factories.string(),
17961
- amount: factories.decimal(),
17962
- currency: factories.string(),
17963
- }),
17964
-
17965
- 'io.flow.internal.v0.models.shopify_gift_card_redemption_form': (): io.flow.internal.v0.models.ShopifyGiftCardRedemptionForm => ({
17966
- number: factories.string(),
17967
- amount: factories.decimal(),
17968
- currency: factories.string(),
17969
- }),
17970
-
17971
- 'io.flow.internal.v0.models.shopify_gift_card_reversal': (): io.flow.internal.v0.models.ShopifyGiftCardReversal => ({
17972
- adjustment_id: factories.long(),
17973
- gift_card_id: factories.long(),
17974
- last_characters: factories.string(),
17975
- amount: factories.decimal(),
17976
- currency: factories.string(),
17977
- }),
17978
-
17979
- 'io.flow.internal.v0.models.shopify_gift_card_reversal_form': (): io.flow.internal.v0.models.ShopifyGiftCardReversalForm => ({
17980
- number: factories.string(),
17981
- amount: factories.decimal(),
17982
- currency: factories.string(),
17983
- }),
17984
-
17985
- 'io.flow.internal.v0.models.shopify_grants_check': (): io.flow.internal.v0.models.ShopifyGrantsCheck => ({
17986
- placeholder: factories.string(),
17473
+ shopify_hs10_codes: factories['io.flow.internal.v0.models.shopify_hs10_codes'](),
17987
17474
  }),
17988
17475
 
17989
17476
  'io.flow.internal.v0.models.shopify_incoterm_includes': (): io.flow.internal.v0.models.ShopifyIncotermIncludes => ({
@@ -18373,12 +17860,6 @@ const factories = {
18373
17860
  url: factories.string(),
18374
17861
  }),
18375
17862
 
18376
- 'io.flow.internal.v0.models.shopify_order_authorization': (): io.flow.internal.v0.models.ShopifyOrderAuthorization => ({
18377
- result: factories['io.flow.payment.v0.models.authorization_result'](),
18378
- detail: factories['io.flow.internal.v0.models.shopify_order_detail'](),
18379
- redirect: factories.string(),
18380
- }),
18381
-
18382
17863
  'io.flow.internal.v0.models.shopify_order_cancel_form': (): io.flow.internal.v0.models.ShopifyOrderCancelForm => ({
18383
17864
  note: factories.string(),
18384
17865
  }),
@@ -18389,32 +17870,11 @@ const factories = {
18389
17870
  message: factories.string(),
18390
17871
  }),
18391
17872
 
18392
- 'io.flow.internal.v0.models.shopify_order_content': (): io.flow.internal.v0.models.ShopifyOrderContent => ({
18393
- lines: arrayOf(() => factories['io.flow.internal.v0.models.shopify_order_line_content']()),
18394
-
18395
- discounts: arrayOf(
18396
- () => factories['io.flow.internal.v0.models.shopify_order_discount_content'](),
18397
- ),
18398
- }),
18399
-
18400
17873
  'io.flow.internal.v0.models.shopify_order_destination_form': (): io.flow.internal.v0.models.ShopifyOrderDestinationForm => ({
18401
17874
  destination: factories['io.flow.common.v0.models.address'](),
18402
17875
  order_note: factories.string(),
18403
17876
  }),
18404
17877
 
18405
- 'io.flow.internal.v0.models.shopify_order_detail': (): io.flow.internal.v0.models.ShopifyOrderDetail => ({
18406
- organization: factories['io.flow.common.v0.models.organization_reference'](),
18407
- number: factories.string(),
18408
- order: factories['io.flow.experience.v0.models.order'](),
18409
- payments: arrayOf(() => factories['io.flow.internal.v0.models.shopify_payment_summary']()),
18410
- contents: factories['io.flow.internal.v0.models.shopify_order_content'](),
18411
- }),
18412
-
18413
- 'io.flow.internal.v0.models.shopify_order_discount_content': (): io.flow.internal.v0.models.ShopifyOrderDiscountContent => ({
18414
- description: factories.string(),
18415
- code: factories.string(),
18416
- }),
18417
-
18418
17878
  'io.flow.internal.v0.models.shopify_order_fulfillments_snapshot': (): io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshot => ({
18419
17879
  id: factories.string(),
18420
17880
  organization_id: factories.string(),
@@ -18439,32 +17899,6 @@ const factories = {
18439
17899
  shopify_order_fulfillments_snapshot: factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'](),
18440
17900
  }),
18441
17901
 
18442
- 'io.flow.internal.v0.models.shopify_order_inventory_check': (): io.flow.internal.v0.models.ShopifyOrderInventoryCheck => ({
18443
- item_number: factories.string(),
18444
- quantity: factories.long(),
18445
- order_number: factories.string(),
18446
- }),
18447
-
18448
- 'io.flow.internal.v0.models.shopify_order_line_attribute': (): io.flow.internal.v0.models.ShopifyOrderLineAttribute => ({
18449
- key: factories.string(),
18450
- name: factories.string(),
18451
- value: factories.string(),
18452
- }),
18453
-
18454
- 'io.flow.internal.v0.models.shopify_order_line_content': (): io.flow.internal.v0.models.ShopifyOrderLineContent => ({
18455
- item_number: factories.string(),
18456
- quantity: factories.long(),
18457
- price: factories['io.flow.common.v0.models.price_with_base'](),
18458
- total: factories['io.flow.common.v0.models.price_with_base'](),
18459
- name: factories.string(),
18460
- image_url: factories.string(),
18461
- variant_url: factories.string(),
18462
-
18463
- attributes: arrayOf(
18464
- () => factories['io.flow.internal.v0.models.shopify_order_line_attribute'](),
18465
- ),
18466
- }),
18467
-
18468
17902
  'io.flow.internal.v0.models.shopify_order_risk_assessment': (): io.flow.internal.v0.models.ShopifyOrderRiskAssessment => ({
18469
17903
  id: factories.string(),
18470
17904
  risk_level: factories.string(),
@@ -18508,19 +17942,6 @@ const factories = {
18508
17942
  transaction: factories['io.flow.internal.v0.models.shopify_order_transaction'](),
18509
17943
  }),
18510
17944
 
18511
- 'io.flow.internal.v0.models.shopify_organization_settings': (): io.flow.internal.v0.models.ShopifyOrganizationSettings => ({
18512
- id: factories.string(),
18513
- process_label: factories.boolean(),
18514
- send_order_receipt: factories.boolean(),
18515
- send_inventory_update: factories.boolean(),
18516
- }),
18517
-
18518
- 'io.flow.internal.v0.models.shopify_organization_settings_form': (): io.flow.internal.v0.models.ShopifyOrganizationSettingsForm => ({
18519
- process_label: factories.boolean(),
18520
- send_order_receipt: factories.boolean(),
18521
- send_inventory_update: factories.boolean(),
18522
- }),
18523
-
18524
17945
  'io.flow.internal.v0.models.shopify_partner_webhook': (): io.flow.internal.v0.models.ShopifyPartnerWebhook => ({
18525
17946
  placeholder: factories.boolean(),
18526
17947
  }),
@@ -18529,12 +17950,6 @@ const factories = {
18529
17950
  placeholder: factories.boolean(),
18530
17951
  }),
18531
17952
 
18532
- 'io.flow.internal.v0.models.shopify_payment_summary': (): io.flow.internal.v0.models.ShopifyPaymentSummary => ({
18533
- description: factories.string(),
18534
- address: factories['io.flow.common.v0.models.address'](),
18535
- contact: factories['io.flow.common.v0.models.contact'](),
18536
- }),
18537
-
18538
17953
  'io.flow.internal.v0.models.shopify_product_bundle': (): io.flow.internal.v0.models.ShopifyProductBundle => ({
18539
17954
  id: factories.string(),
18540
17955
  underlying: factories['io.flow.internal.v0.models.shopify_product_bundle_underlying'](),
@@ -18630,109 +18045,18 @@ const factories = {
18630
18045
  deleted_at: factories.date_time_iso_8601(),
18631
18046
  }),
18632
18047
 
18633
- 'io.flow.internal.v0.models.shopify_promo_form': (): io.flow.internal.v0.models.ShopifyPromoForm => ({
18634
- name: factories.string(),
18635
- starts_at: factories.date_time_iso_8601(),
18636
- ends_at: factories.date_time_iso_8601(),
18637
- status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
18638
- rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
18639
- stackable_limit: factories.long(),
18640
- behaviors: arrayOf(() => factories['io.flow.internal.v0.enums.shopify_promotion_behavior']()),
18641
- }),
18642
-
18643
- 'io.flow.internal.v0.models.shopify_promotion': (): io.flow.internal.v0.models.ShopifyPromotion => ({
18048
+ 'io.flow.internal.v0.models.shopify_report_file_deleted': (): io.flow.internal.v0.models.ShopifyReportFileDeleted => ({
18049
+ discriminator: 'shopify_report_file_deleted',
18050
+ event_id: factories.string(),
18051
+ timestamp: factories.date_time_iso_8601(),
18644
18052
  id: factories.string(),
18645
- name: factories.string(),
18646
- starts_at: factories.date_time_iso_8601(),
18647
- ends_at: factories.date_time_iso_8601(),
18648
- status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
18649
- rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
18650
- stackable_limit: factories.long(),
18651
- behaviors: arrayOf(() => factories['io.flow.internal.v0.enums.shopify_promotion_behavior']()),
18652
- }),
18653
-
18654
- 'io.flow.internal.v0.models.shopify_promotion_attribute_value': (): io.flow.internal.v0.models.ShopifyPromotionAttributeValue => ({
18655
- name: factories.string(),
18656
- discount: factories['io.flow.common.v0.models.money'](),
18657
- }),
18658
-
18659
- 'io.flow.internal.v0.models.shopify_promotion_fixed_amount': (): io.flow.internal.v0.models.ShopifyPromotionFixedAmount => ({
18660
- discriminator: 'shopify_promotion_fixed_amount',
18661
- amount: factories.decimal(),
18662
- currency: factories.string(),
18663
- }),
18664
-
18665
- 'io.flow.internal.v0.models.shopify_promotion_form': (): io.flow.internal.v0.models.ShopifyPromotionForm => ({
18666
- code: factories.string(),
18667
- }),
18668
-
18669
- 'io.flow.internal.v0.models.shopify_promotion_item_entitlement': (): io.flow.internal.v0.models.ShopifyPromotionItemEntitlement => ({
18670
- discriminator: 'shopify_promotion_item_entitlement',
18671
- q: factories.string(),
18672
- allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
18673
- }),
18674
-
18675
- 'io.flow.internal.v0.models.shopify_promotion_item_prerequisite': (): io.flow.internal.v0.models.ShopifyPromotionItemPrerequisite => ({
18676
- discriminator: 'shopify_promotion_item_prerequisite',
18677
- q: factories.string(),
18678
- at_least: factories.long(),
18679
- at_most: factories.long(),
18680
- exclude_from_offer: factories.boolean(),
18681
- }),
18682
-
18683
- 'io.flow.internal.v0.models.shopify_promotion_max_amount': (): io.flow.internal.v0.models.ShopifyPromotionMaxAmount => ({
18684
- discriminator: 'shopify_promotion_max_amount',
18685
- amount: factories.decimal(),
18686
- currency: factories.string(),
18687
- }),
18688
-
18689
- 'io.flow.internal.v0.models.shopify_promotion_max_limit': (): io.flow.internal.v0.models.ShopifyPromotionMaxLimit => ({
18690
- discriminator: 'shopify_promotion_max_limit',
18691
- limit: factories.long(),
18692
- }),
18693
-
18694
- 'io.flow.internal.v0.models.shopify_promotion_offer': (): io.flow.internal.v0.models.ShopifyPromotionOffer => ({
18695
- discount: factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount'](),
18696
- entitlement: factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement'](),
18697
-
18698
- max: arrayOf(
18699
- () => factories['io.flow.internal.v0.unions.shopify_promotion_offer_max'](),
18700
- ),
18701
- }),
18702
-
18703
- 'io.flow.internal.v0.models.shopify_promotion_order_entitlement': (): io.flow.internal.v0.models.ShopifyPromotionOrderEntitlement => ({
18704
- discriminator: 'shopify_promotion_order_entitlement',
18705
-
18706
- components: arrayOf(
18707
- () => factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component'](),
18708
- ),
18709
-
18710
- allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
18711
- }),
18712
-
18713
- 'io.flow.internal.v0.models.shopify_promotion_order_prerequisite': (): io.flow.internal.v0.models.ShopifyPromotionOrderPrerequisite => ({
18714
- discriminator: 'shopify_promotion_order_prerequisite',
18715
- q: factories.string(),
18716
18053
  }),
18717
18054
 
18718
- 'io.flow.internal.v0.models.shopify_promotion_percent': (): io.flow.internal.v0.models.ShopifyPromotionPercent => ({
18719
- discriminator: 'shopify_promotion_percent',
18720
- percent: factories.long(),
18721
- }),
18722
-
18723
- 'io.flow.internal.v0.models.shopify_promotion_rule': (): io.flow.internal.v0.models.ShopifyPromotionRule => ({
18724
- prerequisites: arrayOf(
18725
- () => factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite'](),
18726
- ),
18727
-
18728
- offers: arrayOf(() => factories['io.flow.internal.v0.models.shopify_promotion_offer']()),
18729
- }),
18730
-
18731
- 'io.flow.internal.v0.models.shopify_shop_deleted': (): io.flow.internal.v0.models.ShopifyShopDeleted => ({
18732
- discriminator: 'shopify_shop_deleted',
18055
+ 'io.flow.internal.v0.models.shopify_report_file_upserted': (): io.flow.internal.v0.models.ShopifyReportFileUpserted => ({
18056
+ discriminator: 'shopify_report_file_upserted',
18733
18057
  event_id: factories.string(),
18734
18058
  timestamp: factories.date_time_iso_8601(),
18735
- id: factories.string(),
18059
+ shopify_report_file: factories['io.flow.internal.v0.models.report_file'](),
18736
18060
  }),
18737
18061
 
18738
18062
  'io.flow.internal.v0.models.shopify_shop_statistics': (): io.flow.internal.v0.models.ShopifyShopStatistics => ({
@@ -18745,13 +18069,6 @@ const factories = {
18745
18069
  initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
18746
18070
  }),
18747
18071
 
18748
- 'io.flow.internal.v0.models.shopify_shop_upserted': (): io.flow.internal.v0.models.ShopifyShopUpserted => ({
18749
- discriminator: 'shopify_shop_upserted',
18750
- event_id: factories.string(),
18751
- timestamp: factories.date_time_iso_8601(),
18752
- shop: factories['io.flow.internal.v0.models.shop'](),
18753
- }),
18754
-
18755
18072
  'io.flow.internal.v0.models.shopify_store_detail': (): io.flow.internal.v0.models.ShopifyStoreDetail => ({
18756
18073
  shopify_domain: factories.string(),
18757
18074
  shop_id: factories.string(),
@@ -18762,21 +18079,12 @@ const factories = {
18762
18079
  request: factories.object(),
18763
18080
  }),
18764
18081
 
18765
- 'io.flow.internal.v0.models.shopify_webhook': (): io.flow.internal.v0.models.ShopifyWebhook => ({
18766
- id: factories.string(),
18767
- shop_id: factories.string(),
18768
- address: factories.string(),
18769
- topic: factories['io.flow.shopify.external.v0.enums.topic'](),
18770
- }),
18771
-
18772
- 'io.flow.internal.v0.models.shopify_webhook_event': (): io.flow.internal.v0.models.ShopifyWebhookEvent => ({
18773
- placeholder: factories.string(),
18774
- }),
18775
-
18776
- 'io.flow.internal.v0.models.shopify_webhook_form': (): io.flow.internal.v0.models.ShopifyWebhookForm => ({
18777
- myshopify_domain: factories.string(),
18778
- address: factories.string(),
18779
- topic: factories['io.flow.shopify.external.v0.enums.topic'](),
18082
+ 'io.flow.internal.v0.models.shopper_breakdown': (): io.flow.internal.v0.models.ShopperBreakdown => ({
18083
+ product: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
18084
+ tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
18085
+ duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
18086
+ discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
18087
+ total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
18780
18088
  }),
18781
18089
 
18782
18090
  'io.flow.internal.v0.models.shopper_fees': (): io.flow.internal.v0.models.ShopperFees => ({
@@ -18983,16 +18291,6 @@ const factories = {
18983
18291
  period: factories['io.flow.common.v0.models.datetime_range'](),
18984
18292
  }),
18985
18293
 
18986
- 'io.flow.internal.v0.models.store_connection': (): io.flow.internal.v0.models.StoreConnection => ({
18987
- organization: factories['io.flow.common.v0.models.organization_reference'](),
18988
- id: factories.string(),
18989
- domain: factories.string(),
18990
- }),
18991
-
18992
- 'io.flow.internal.v0.models.store_connection_form': (): io.flow.internal.v0.models.StoreConnectionForm => ({
18993
- organization: factories.string(),
18994
- }),
18995
-
18996
18294
  'io.flow.internal.v0.models.string_feature_default_value': (): io.flow.internal.v0.models.StringFeatureDefaultValue => ({
18997
18295
  discriminator: 'string',
18998
18296
  value: factories.string(),
@@ -20146,26 +19444,6 @@ const factories = {
20146
19444
  user: factories['io.flow.common.v0.models.user'](),
20147
19445
  }),
20148
19446
 
20149
- 'io.flow.internal.v0.models.v1_checkout': (): io.flow.internal.v0.models.V1Checkout => ({
20150
- id: factories.string(),
20151
- organization: factories['io.flow.common.v0.models.organization_summary'](),
20152
- builder: factories['io.flow.experience.v0.models.order_builder'](),
20153
- platform: factories['io.flow.internal.v0.models.checkout_platform_data'](),
20154
- content: factories['io.flow.internal.v0.models.checkout_content'](),
20155
- destinations: arrayOf(() => factories['io.flow.reference.v0.models.country']()),
20156
- optins: arrayOf(() => factories['io.flow.internal.v0.models.optin_prompt']()),
20157
- addresses: arrayOf(() => factories['io.flow.experience.v0.models.address_configuration']()),
20158
- features: factories['io.flow.internal.v0.models.feature_value_result'](),
20159
- configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
20160
- cart: factories['io.flow.shopify.v0.models.shopify_cart'](),
20161
- customer: factories['io.flow.customer.v0.models.customer'](),
20162
- address_book: factories['io.flow.customer.v0.models.customer_address_book'](),
20163
- gift_card_program: factories['io.flow.internal.v0.models.gift_card_program'](),
20164
- loyalty_program: factories['io.flow.internal.v0.models.loyalty_program'](),
20165
- payment: factories['io.flow.internal.v0.models.checkout_payment'](),
20166
- customer_bundle: factories['io.flow.customer.v0.models.customer_bundle'](),
20167
- }),
20168
-
20169
19447
  'io.flow.internal.v0.models.validated_address': (): io.flow.internal.v0.models.ValidatedAddress => ({
20170
19448
  company_name: factories.string(),
20171
19449
  person_name: factories.string(),
@@ -20214,12 +19492,6 @@ const factories = {
20214
19492
  package_dimensions_source: factories['io.flow.label.v0.enums.package_dimensions_source'](),
20215
19493
  }),
20216
19494
 
20217
- 'io.flow.internal.v0.models.validation_character_length': (): io.flow.internal.v0.models.ValidationCharacterLength => ({
20218
- discriminator: 'validation_character_length',
20219
- min: factories.long(),
20220
- max: factories.long(),
20221
- }),
20222
-
20223
19495
  'io.flow.internal.v0.models.vies_result': (): io.flow.internal.v0.models.ViesResult => ({
20224
19496
  country: factories.string(),
20225
19497
  number: factories.string(),
@@ -20431,17 +19703,6 @@ const factories = {
20431
19703
  return f();
20432
19704
  },
20433
19705
 
20434
- 'io.flow.internal.v0.unions.content_item': (): io.flow.internal.v0.unions.ContentItem => {
20435
- const f = faker.helpers.arrayElement([
20436
- () => factories['io.flow.internal.v0.models.dict'](),
20437
- () => factories['io.flow.internal.v0.models.href'](),
20438
- () => factories['io.flow.internal.v0.models.content_label'](),
20439
- () => factories['io.flow.internal.v0.models.load'](),
20440
- ]);
20441
-
20442
- return f();
20443
- },
20444
-
20445
19706
  'io.flow.internal.v0.unions.decline_reason': (): io.flow.internal.v0.unions.DeclineReason => {
20446
19707
  const f = faker.helpers.arrayElement([
20447
19708
  () => factories['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'](),
@@ -20562,12 +19823,8 @@ const factories = {
20562
19823
  () => factories['io.flow.internal.v0.models.channel_order_acceptance_upserted'](),
20563
19824
  () => factories['io.flow.internal.v0.models.channel_order_acceptance_deleted'](),
20564
19825
  () => factories['io.flow.internal.v0.models.channel_order_acceptance_failed'](),
20565
- () => factories['io.flow.internal.v0.models.checkout_configuration_upserted'](),
20566
- () => factories['io.flow.internal.v0.models.checkout_configuration_deleted'](),
20567
19826
  () => factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted'](),
20568
19827
  () => factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted'](),
20569
- () => factories['io.flow.internal.v0.models.localized_content_upserted'](),
20570
- () => factories['io.flow.internal.v0.models.localization_upserted'](),
20571
19828
  () => factories['io.flow.internal.v0.models.internal_channel_rate_deleted'](),
20572
19829
  () => factories['io.flow.internal.v0.models.internal_channel_rate_upserted'](),
20573
19830
  () => factories['io.flow.internal.v0.models.rate_deleted'](),
@@ -20668,8 +19925,6 @@ const factories = {
20668
19925
  () => factories['io.flow.internal.v0.models.item_harmonization_upserted'](),
20669
19926
  () => factories['io.flow.internal.v0.models.item_harmonization_deleted'](),
20670
19927
  () => factories['io.flow.internal.v0.models.harmonization_classification_statistics_published'](),
20671
- () => factories['io.flow.internal.v0.models.issuer_upserted'](),
20672
- () => factories['io.flow.internal.v0.models.issuer_deleted'](),
20673
19928
  () => factories['io.flow.internal.v0.models.item_form_import_request'](),
20674
19929
  () => factories['io.flow.internal.v0.models.label_request_error_upserted'](),
20675
19930
  () => factories['io.flow.internal.v0.models.label_request_error_deleted'](),
@@ -20767,10 +20022,8 @@ const factories = {
20767
20022
  () => factories['io.flow.internal.v0.models.restriction_rule_effect_deleted'](),
20768
20023
  () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](),
20769
20024
  () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'](),
20770
- () => factories['io.flow.internal.v0.models.shopify_shop_upserted'](),
20771
- () => factories['io.flow.internal.v0.models.shopify_shop_deleted'](),
20772
- () => factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](),
20773
- () => factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted'](),
20025
+ () => factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted'](),
20026
+ () => factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted'](),
20774
20027
  () => factories['io.flow.internal.v0.models.shopify_markets_order_upserted'](),
20775
20028
  () => factories['io.flow.internal.v0.models.shopify_markets_order_deleted'](),
20776
20029
  () => factories['io.flow.internal.v0.models.shopify_markets_shop_upserted'](),
@@ -20816,6 +20069,8 @@ const factories = {
20816
20069
  () => factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](),
20817
20070
  () => factories['io.flow.internal.v0.models.shopify_dispute_upserted'](),
20818
20071
  () => factories['io.flow.internal.v0.models.shopify_dispute_deleted'](),
20072
+ () => factories['io.flow.internal.v0.models.shopify_report_file_upserted'](),
20073
+ () => factories['io.flow.internal.v0.models.shopify_report_file_deleted'](),
20819
20074
  () => factories['io.flow.internal.v0.models.stripe_authorization_deleted'](),
20820
20075
  () => factories['io.flow.internal.v0.models.stripe_authorization_upserted'](),
20821
20076
  () => factories['io.flow.internal.v0.models.stripe_reversal_deleted'](),
@@ -21039,23 +20294,6 @@ const factories = {
21039
20294
  return f();
21040
20295
  },
21041
20296
 
21042
- 'io.flow.internal.v0.unions.localizable_content': (): io.flow.internal.v0.unions.LocalizableContent => {
21043
- const f = faker.helpers.arrayElement([
21044
- () => factories['io.flow.internal.v0.models.localizable_content_reference'](),
21045
- () => factories['io.flow.internal.v0.models.localization'](),
21046
- ]);
21047
-
21048
- return f();
21049
- },
21050
-
21051
- 'io.flow.internal.v0.unions.optin_prompt_display': (): io.flow.internal.v0.unions.OptinPromptDisplay => {
21052
- const f = faker.helpers.arrayElement([
21053
- () => factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](),
21054
- ]);
21055
-
21056
- return f();
21057
- },
21058
-
21059
20297
  'io.flow.internal.v0.unions.order_action_form': (): io.flow.internal.v0.unions.OrderActionForm => {
21060
20298
  const f = faker.helpers.arrayElement([
21061
20299
  () => factories['io.flow.internal.v0.models.whole_order_action_form'](),
@@ -21218,42 +20456,6 @@ const factories = {
21218
20456
  return f();
21219
20457
  },
21220
20458
 
21221
- 'io.flow.internal.v0.unions.shopify_promotion_offer_discount': (): io.flow.internal.v0.unions.ShopifyPromotionOfferDiscount => {
21222
- const f = faker.helpers.arrayElement([
21223
- () => factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount'](),
21224
- () => factories['io.flow.internal.v0.models.shopify_promotion_percent'](),
21225
- ]);
21226
-
21227
- return f();
21228
- },
21229
-
21230
- 'io.flow.internal.v0.unions.shopify_promotion_offer_entitlement': (): io.flow.internal.v0.unions.ShopifyPromotionOfferEntitlement => {
21231
- const f = faker.helpers.arrayElement([
21232
- () => factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement'](),
21233
- () => factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement'](),
21234
- ]);
21235
-
21236
- return f();
21237
- },
21238
-
21239
- 'io.flow.internal.v0.unions.shopify_promotion_offer_max': (): io.flow.internal.v0.unions.ShopifyPromotionOfferMax => {
21240
- const f = faker.helpers.arrayElement([
21241
- () => factories['io.flow.internal.v0.models.shopify_promotion_max_limit'](),
21242
- () => factories['io.flow.internal.v0.models.shopify_promotion_max_amount'](),
21243
- ]);
21244
-
21245
- return f();
21246
- },
21247
-
21248
- 'io.flow.internal.v0.unions.shopify_promotion_prerequisite': (): io.flow.internal.v0.unions.ShopifyPromotionPrerequisite => {
21249
- const f = faker.helpers.arrayElement([
21250
- () => factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite'](),
21251
- () => factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite'](),
21252
- ]);
21253
-
21254
- return f();
21255
- },
21256
-
21257
20459
  'io.flow.internal.v0.unions.simplified_classification_taxonomy': (): io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy => {
21258
20460
  const f = faker.helpers.arrayElement([
21259
20461
  () => factories['io.flow.internal.v0.models.simplified_taxonomy_category'](),
@@ -21373,14 +20575,6 @@ const factories = {
21373
20575
  return f();
21374
20576
  },
21375
20577
 
21376
- 'io.flow.internal.v0.unions.validation_rule': (): io.flow.internal.v0.unions.ValidationRule => {
21377
- const f = faker.helpers.arrayElement([
21378
- () => factories['io.flow.internal.v0.models.validation_character_length'](),
21379
- ]);
21380
-
21381
- return f();
21382
- },
21383
-
21384
20578
  'io.flow.inventory.v0.enums.aggregate': (): io.flow.inventory.v0.enums.Aggregate => faker.helpers.arrayElement(['maximum', 'minimum']),
21385
20579
  'io.flow.inventory.v0.enums.inventory_status': (): io.flow.inventory.v0.enums.InventoryStatus => faker.helpers.arrayElement(['has_inventory', 'no_inventory']),
21386
20580
  'io.flow.inventory.v0.enums.update_type': (): io.flow.inventory.v0.enums.UpdateType => faker.helpers.arrayElement(['change', 'set']),
@@ -22179,75 +21373,6 @@ const factories = {
22179
21373
  return f();
22180
21374
  },
22181
21375
 
22182
- 'io.flow.order.management.event.v0.models.fulfillment_item_allocation_details': (): io.flow.order.management.event.v0.models.FulfillmentItemAllocationDetails => ({
22183
- item_number: factories.string(),
22184
- line_number: factories.long(),
22185
- levies: factories['io.flow.common.v0.models.price_with_base'](),
22186
- total: factories['io.flow.common.v0.models.price_with_base'](),
22187
- }),
22188
-
22189
- 'io.flow.order.management.event.v0.models.order_placed': (): io.flow.order.management.event.v0.models.OrderPlaced => ({
22190
- discriminator: 'order_placed',
22191
- event_id: factories.string(),
22192
- timestamp: factories.date_time_iso_8601(),
22193
- organization: factories.string(),
22194
- order_number: factories.string(),
22195
- order: factories['io.flow.experience.v0.models.order'](),
22196
- allocation: factories['io.flow.experience.v0.models.allocation_v2'](),
22197
- }),
22198
-
22199
- 'io.flow.order.management.event.v0.models.order_placed_v2': (): io.flow.order.management.event.v0.models.OrderPlacedV2 => ({
22200
- discriminator: 'order_placed_v2',
22201
- event_id: factories.string(),
22202
- timestamp: factories.date_time_iso_8601(),
22203
- organization: factories.string(),
22204
- order_placed: factories['io.flow.order.management.v0.models.order_placed_details'](),
22205
- }),
22206
-
22207
- 'io.flow.order.management.event.v0.models.ready_to_fulfill': (): io.flow.order.management.event.v0.models.ReadyToFulfill => ({
22208
- discriminator: 'ready_to_fulfill',
22209
- event_id: factories.string(),
22210
- timestamp: factories.date_time_iso_8601(),
22211
- organization: factories.string(),
22212
- order_number: factories.string(),
22213
- order: factories['io.flow.experience.v0.models.order'](),
22214
- fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
22215
-
22216
- fulfillment_item_allocation_details: arrayOf(
22217
- () => factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](),
22218
- ),
22219
- }),
22220
-
22221
- 'io.flow.order.management.event.v0.models.ready_to_fulfill_details': (): io.flow.order.management.event.v0.models.ReadyToFulfillDetails => ({
22222
- id: factories.string(),
22223
- order_number: factories.string(),
22224
- order: factories['io.flow.experience.v0.models.order'](),
22225
- fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
22226
-
22227
- fulfillment_item_allocation_details: arrayOf(
22228
- () => factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](),
22229
- ),
22230
- }),
22231
-
22232
- 'io.flow.order.management.event.v0.models.ready_to_fulfill_v2': (): io.flow.order.management.event.v0.models.ReadyToFulfillV2 => ({
22233
- discriminator: 'ready_to_fulfill_v2',
22234
- event_id: factories.string(),
22235
- timestamp: factories.date_time_iso_8601(),
22236
- organization: factories.string(),
22237
- ready_to_fulfill: factories['io.flow.order.management.event.v0.models.ready_to_fulfill_details'](),
22238
- }),
22239
-
22240
- 'io.flow.order.management.event.v0.unions.order_management_event': (): io.flow.order.management.event.v0.unions.OrderManagementEvent => {
22241
- const f = faker.helpers.arrayElement([
22242
- () => factories['io.flow.order.management.event.v0.models.order_placed'](),
22243
- () => factories['io.flow.order.management.event.v0.models.order_placed_v2'](),
22244
- () => factories['io.flow.order.management.event.v0.models.ready_to_fulfill'](),
22245
- () => factories['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'](),
22246
- ]);
22247
-
22248
- return f();
22249
- },
22250
-
22251
21376
  'io.flow.order.management.v0.enums.cancel_reason': (): io.flow.order.management.v0.enums.CancelReason => faker.helpers.arrayElement(['out_of_stock', 'consumer_requested', 'flow_cancel']),
22252
21377
  'io.flow.order.management.v0.enums.fulfillment_item_quantity_status': (): io.flow.order.management.v0.enums.FulfillmentItemQuantityStatus => faker.helpers.arrayElement(['new', 'shipped', 'cancelled']),
22253
21378
  'io.flow.order.management.v0.enums.order_change_source': (): io.flow.order.management.v0.enums.OrderChangeSource => faker.helpers.arrayElement(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']),
@@ -25350,6 +24475,7 @@ const factories = {
25350
24475
  taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
25351
24476
  taxonomy_data: arrayOf(() => factories['io.flow.product.v0.models.product_taxonomy_data']()),
25352
24477
  item_numbers: arrayOf(() => factories.string()),
24478
+ highest_value_item_number: factories.string(),
25353
24479
  updated_at: factories.date_time_iso_8601(),
25354
24480
  deleted_at: factories.date_time_iso_8601(),
25355
24481
  }),
@@ -26303,18 +25429,13 @@ const factories = {
26303
25429
  shop_id: factories.string(),
26304
25430
  product_id: factories.string(),
26305
25431
  name: factories.string(),
26306
- price: factories['io.flow.sellability.v0.models.product_sellability_price'](),
25432
+ price: factories['io.flow.common.v0.models.money'](),
26307
25433
  description: factories.string(),
26308
25434
  taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
26309
25435
  status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
26310
25436
  dry_run: factories.boolean(),
26311
25437
  }),
26312
25438
 
26313
- 'io.flow.sellability.v0.models.product_sellability_price': (): io.flow.sellability.v0.models.ProductSellabilityPrice => ({
26314
- currency: factories.string(),
26315
- amount: factories.decimal(),
26316
- }),
26317
-
26318
25439
  'io.flow.sellability.v0.models.sellability_error': (): io.flow.sellability.v0.models.SellabilityError => ({
26319
25440
  discriminator: 'sellability_error',
26320
25441
  code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
@@ -26335,106 +25456,6 @@ const factories = {
26335
25456
  return f();
26336
25457
  },
26337
25458
 
26338
- 'io.flow.session.v0.models.cart_reference': (): io.flow.session.v0.models.CartReference => ({
26339
- id: factories.string(),
26340
- }),
26341
-
26342
- 'io.flow.session.v0.models.local_session': (): io.flow.session.v0.models.LocalSession => ({
26343
- country: factories['io.flow.reference.v0.models.country'](),
26344
- currency: factories['io.flow.reference.v0.models.currency'](),
26345
- language: factories['io.flow.reference.v0.models.language'](),
26346
- locale: factories['io.flow.reference.v0.models.locale'](),
26347
- experience: factories['io.flow.experience.v0.models.experience_geo'](),
26348
- }),
26349
-
26350
- 'io.flow.session.v0.models.organization_session': (): io.flow.session.v0.models.OrganizationSession => ({
26351
- discriminator: 'organization_session',
26352
- id: factories.string(),
26353
- organization: factories.string(),
26354
- visitor: factories['io.flow.session.v0.models.session_visitor'](),
26355
- visit: factories['io.flow.session.v0.models.session_visit'](),
26356
- environment: factories['io.flow.common.v0.enums.environment'](),
26357
- attributes: objectOf(() => factories.string()),
26358
- ip: factories.string(),
26359
- local: factories['io.flow.session.v0.models.local_session'](),
26360
- geo: factories['io.flow.session.v0.models.session_geo'](),
26361
- experience: factories['io.flow.experience.v0.models.experience_geo'](),
26362
- format: factories['io.flow.session.v0.models.session_format'](),
26363
- }),
26364
-
26365
- 'io.flow.session.v0.models.organization_session_authorization': (): io.flow.session.v0.models.OrganizationSessionAuthorization => ({
26366
- discriminator: 'organization_session_authorization',
26367
- organization: factories['io.flow.common.v0.models.organization_reference'](),
26368
- environment: factories['io.flow.common.v0.enums.environment'](),
26369
- }),
26370
-
26371
- 'io.flow.session.v0.models.session_authorization_form': (): io.flow.session.v0.models.SessionAuthorizationForm => ({
26372
- session: factories.string(),
26373
- }),
26374
-
26375
- 'io.flow.session.v0.models.session_currency_format': (): io.flow.session.v0.models.SessionCurrencyFormat => ({
26376
- symbol: factories['io.flow.common.v0.enums.currency_symbol_format'](),
26377
- label_formatters: arrayOf(() => factories['io.flow.common.v0.enums.currency_label_formatter']()),
26378
- }),
26379
-
26380
- 'io.flow.session.v0.models.session_expiration_config': (): io.flow.session.v0.models.SessionExpirationConfig => ({
26381
- unit: factories['io.flow.common.v0.enums.unit_of_time'](),
26382
- value: factories.long(),
26383
- }),
26384
-
26385
- 'io.flow.session.v0.models.session_form': (): io.flow.session.v0.models.SessionForm => ({
26386
- ip: factories.string(),
26387
- experience: factories.string(),
26388
- country: factories.string(),
26389
- currency: factories.string(),
26390
- language: factories.string(),
26391
- locale: factories.string(),
26392
- attributes: objectOf(() => factories.string()),
26393
- }),
26394
-
26395
- 'io.flow.session.v0.models.session_format': (): io.flow.session.v0.models.SessionFormat => ({
26396
- currency: factories['io.flow.session.v0.models.session_currency_format'](),
26397
- }),
26398
-
26399
- 'io.flow.session.v0.models.session_geo': (): io.flow.session.v0.models.SessionGeo => ({
26400
- country: factories['io.flow.reference.v0.models.country'](),
26401
- currency: factories['io.flow.reference.v0.models.currency'](),
26402
- language: factories['io.flow.reference.v0.models.language'](),
26403
- locale: factories['io.flow.reference.v0.models.locale'](),
26404
- }),
26405
-
26406
- 'io.flow.session.v0.models.session_put_form': (): io.flow.session.v0.models.SessionPutForm => ({
26407
- ip: factories.string(),
26408
- experience: factories.string(),
26409
- country: factories.string(),
26410
- currency: factories.string(),
26411
- language: factories.string(),
26412
- locale: factories.string(),
26413
- attributes: objectOf(() => factories.string()),
26414
- }),
26415
-
26416
- 'io.flow.session.v0.models.session_visit': (): io.flow.session.v0.models.SessionVisit => ({
26417
- id: factories.string(),
26418
- expires_at: factories.date_time_iso_8601(),
26419
- }),
26420
-
26421
- 'io.flow.session.v0.models.session_visitor': (): io.flow.session.v0.models.SessionVisitor => ({
26422
- id: factories.string(),
26423
- }),
26424
-
26425
- 'io.flow.session.v0.unions.session': (): io.flow.session.v0.unions.Session => {
26426
- const f = faker.helpers.arrayElement([() => factories['io.flow.session.v0.models.organization_session']()]);
26427
- return f();
26428
- },
26429
-
26430
- 'io.flow.session.v0.unions.session_authorization': (): io.flow.session.v0.unions.SessionAuthorization => {
26431
- const f = faker.helpers.arrayElement([
26432
- () => factories['io.flow.session.v0.models.organization_session_authorization'](),
26433
- ]);
26434
-
26435
- return f();
26436
- },
26437
-
26438
25459
  'io.flow.shopify.external.v0.enums.cancel_reason': (): io.flow.shopify.external.v0.enums.CancelReason => faker.helpers.arrayElement(['customer', 'fraud', 'inventory', 'declined', 'other']),
26439
25460
  'io.flow.shopify.external.v0.enums.discount_status': (): io.flow.shopify.external.v0.enums.DiscountStatus => faker.helpers.arrayElement(['enabled', 'disabled', 'depleted']),
26440
25461
  'io.flow.shopify.external.v0.enums.discount_type': (): io.flow.shopify.external.v0.enums.DiscountType => faker.helpers.arrayElement(['fixed_amount', 'percentage', 'shipping']),
@@ -27936,7 +26957,7 @@ const factories = {
27936
26957
  'shopify_webhook',
27937
26958
  ]),
27938
26959
 
27939
- 'io.flow.shopify.markets.internal.v0.enums.product_status': (): io.flow.shopify.markets.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft']),
26960
+ 'io.flow.shopify.markets.internal.v0.enums.product_status': (): io.flow.shopify.markets.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft', 'unlisted']),
27940
26961
 
27941
26962
  'io.flow.shopify.markets.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.shopify.markets.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
27942
26963
  'aerosols',
@@ -28070,6 +27091,20 @@ const factories = {
28070
27091
  destination: factories.string(),
28071
27092
  }),
28072
27093
 
27094
+ 'io.flow.shopify.markets.internal.v0.models.shopify_hs10_code': (): io.flow.shopify.markets.internal.v0.models.ShopifyHs10Code => ({
27095
+ country_code: factories.string(),
27096
+ code: factories.string(),
27097
+ }),
27098
+
27099
+ 'io.flow.shopify.markets.internal.v0.models.shopify_hs10_codes': (): io.flow.shopify.markets.internal.v0.models.ShopifyHs10Codes => ({
27100
+ id: factories.string(),
27101
+ item_number: factories.string(),
27102
+
27103
+ codes: arrayOf(
27104
+ () => factories['io.flow.shopify.markets.internal.v0.models.shopify_hs10_code'](),
27105
+ ),
27106
+ }),
27107
+
28073
27108
  'io.flow.shopify.markets.internal.v0.models.shopify_markets_best_selling_product': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct => ({
28074
27109
  id: factories.string(),
28075
27110
  }),
@@ -29330,291 +28365,6 @@ const factories = {
29330
28365
  return f();
29331
28366
  },
29332
28367
 
29333
- 'io.flow.shopify.v0.enums.shopify_grant': (): io.flow.shopify.v0.enums.ShopifyGrant => faker.helpers.arrayElement(['customer', 'discount', 'gift_card', 'metafield', 'order']),
29334
- 'io.flow.shopify.v0.enums.shopify_localization_method': (): io.flow.shopify.v0.enums.ShopifyLocalizationMethod => faker.helpers.arrayElement(['api', 'ssr']),
29335
- 'io.flow.shopify.v0.enums.shopify_sync_check': (): io.flow.shopify.v0.enums.ShopifySyncCheck => faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']),
29336
-
29337
- 'io.flow.shopify.v0.models.flow_center_reference': (): io.flow.shopify.v0.models.FlowCenterReference => ({
29338
- key: factories.string(),
29339
- }),
29340
-
29341
- 'io.flow.shopify.v0.models.geo_form': (): io.flow.shopify.v0.models.GeoForm => ({
29342
- country: factories.string(),
29343
- currency: factories.string(),
29344
- language: factories.string(),
29345
- locale: factories.string(),
29346
- experience: factories.string(),
29347
- }),
29348
-
29349
- 'io.flow.shopify.v0.models.shopify_cart': (): io.flow.shopify.v0.models.ShopifyCart => ({
29350
- id: factories.string(),
29351
- items: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_cart_item']()),
29352
- item_count: factories.long(),
29353
- total_price: factories.long(),
29354
- local: factories['io.flow.shopify.v0.models.shopify_local_cart_metadata'](),
29355
- attributes: factories.object(),
29356
- note: factories.string(),
29357
- requires_shipping: factories.boolean(),
29358
- total_weight: factories.long(),
29359
- }),
29360
-
29361
- 'io.flow.shopify.v0.models.shopify_cart_add_multiple_form': (): io.flow.shopify.v0.models.ShopifyCartAddMultipleForm => ({
29362
- discriminator: 'shopify_cart_add_multiple_form',
29363
-
29364
- items: arrayOf(
29365
- () => factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](),
29366
- ),
29367
-
29368
- attributes: objectOf(() => factories.string()),
29369
- }),
29370
-
29371
- 'io.flow.shopify.v0.models.shopify_cart_add_single_form': (): io.flow.shopify.v0.models.ShopifyCartAddSingleForm => ({
29372
- discriminator: 'shopify_cart_add_single_form',
29373
- id: factories.long(),
29374
- quantity: factories.long(),
29375
- properties: objectOf(() => factories.string()),
29376
- }),
29377
-
29378
- 'io.flow.shopify.v0.models.shopify_cart_change_form': (): io.flow.shopify.v0.models.ShopifyCartChangeForm => ({
29379
- quantity: factories.long(),
29380
- line: factories.long(),
29381
- id: factories.long(),
29382
- properties: objectOf(() => factories.string()),
29383
- }),
29384
-
29385
- 'io.flow.shopify.v0.models.shopify_cart_conversion': (): io.flow.shopify.v0.models.ShopifyCartConversion => ({
29386
- flow: factories['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'](),
29387
- shopify: factories['io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart'](),
29388
- }),
29389
-
29390
- 'io.flow.shopify.v0.models.shopify_cart_conversion_flow_order': (): io.flow.shopify.v0.models.ShopifyCartConversionFlowOrder => ({
29391
- order: factories['io.flow.experience.v0.models.order'](),
29392
- errors: arrayOf(() => factories['io.flow.experience.v0.models.order_error']()),
29393
- }),
29394
-
29395
- 'io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart': (): io.flow.shopify.v0.models.ShopifyCartConversionShopifyCart => ({
29396
- cart: factories['io.flow.shopify.external.v0.models.shopify_external_cart'](),
29397
- }),
29398
-
29399
- 'io.flow.shopify.v0.models.shopify_cart_item': (): io.flow.shopify.v0.models.ShopifyCartItem => ({
29400
- id: factories.string(),
29401
- handle: factories.string(),
29402
- line_price: factories.double(),
29403
- price: factories.long(),
29404
- product_id: factories.long(),
29405
- product_title: factories.string(),
29406
- quantity: factories.long(),
29407
- title: factories.string(),
29408
- url: factories.string(),
29409
- variant_id: factories.long(),
29410
- local: factories['io.flow.shopify.v0.models.shopify_local_cart_item_metadata'](),
29411
- gift_card: factories.boolean(),
29412
- image: factories.string(),
29413
- product_description: factories.string(),
29414
- product_type: factories.string(),
29415
- properties: objectOf(() => factories.string()),
29416
- requires_shipping: factories.boolean(),
29417
- sku: factories.string(),
29418
- variant_title: factories.string(),
29419
- variant_options: arrayOf(() => factories.string()),
29420
- vendor: factories.string(),
29421
- }),
29422
-
29423
- 'io.flow.shopify.v0.models.shopify_customer_metafield_value': (): io.flow.shopify.v0.models.ShopifyCustomerMetafieldValue => ({
29424
- flow_consumer_id: factories.string(),
29425
- }),
29426
-
29427
- 'io.flow.shopify.v0.models.shopify_item_event_bucket': (): io.flow.shopify.v0.models.ShopifyItemEventBucket => ({
29428
- discriminator: 'shopify_item_event_bucket',
29429
- range: factories['io.flow.common.v0.models.datetime_range'](),
29430
- count: factories.long(),
29431
- data: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_item_event_data']()),
29432
- }),
29433
-
29434
- 'io.flow.shopify.v0.models.shopify_item_event_data': (): io.flow.shopify.v0.models.ShopifyItemEventData => ({
29435
- created_at: factories.date_time_iso_8601(),
29436
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
29437
- item: factories['io.flow.common.v0.models.catalog_item_summary'](),
29438
- }),
29439
-
29440
- 'io.flow.shopify.v0.models.shopify_line': (): io.flow.shopify.v0.models.ShopifyLine => ({
29441
- variant_id: factories.long(),
29442
- quantity: factories.long(),
29443
- price: factories['io.flow.shopify.v0.models.shopify_price'](),
29444
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
29445
- price_source: factories['io.flow.common.v0.unions.price_source'](),
29446
- }),
29447
-
29448
- 'io.flow.shopify.v0.models.shopify_local_cart_item_metadata': (): io.flow.shopify.v0.models.ShopifyLocalCartItemMetadata => ({
29449
- line_price: factories['io.flow.common.v0.models.price_with_base'](),
29450
- price: factories['io.flow.common.v0.models.price_with_base'](),
29451
- }),
29452
-
29453
- 'io.flow.shopify.v0.models.shopify_local_cart_metadata': (): io.flow.shopify.v0.models.ShopifyLocalCartMetadata => ({
29454
- total_price: factories['io.flow.common.v0.models.price_with_base'](),
29455
- promotions: factories['io.flow.experience.v0.models.promotions'](),
29456
- rules: factories['io.flow.experience.v0.models.order_rules_summary'](),
29457
- subtotal: factories['io.flow.common.v0.models.price_with_base'](),
29458
- vat: factories['io.flow.common.v0.models.price_with_base'](),
29459
- duty: factories['io.flow.common.v0.models.price_with_base'](),
29460
- discount: factories['io.flow.common.v0.models.price_with_base'](),
29461
- }),
29462
-
29463
- 'io.flow.shopify.v0.models.shopify_local_price_metadata': (): io.flow.shopify.v0.models.ShopifyLocalPriceMetadata => ({
29464
- price: factories['io.flow.common.v0.models.price_with_base'](),
29465
- }),
29466
-
29467
- 'io.flow.shopify.v0.models.shopify_localization_setting': (): io.flow.shopify.v0.models.ShopifyLocalizationSetting => ({
29468
- id: factories.string(),
29469
- method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
29470
- datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
29471
- }),
29472
-
29473
- 'io.flow.shopify.v0.models.shopify_localization_setting_form': (): io.flow.shopify.v0.models.ShopifyLocalizationSettingForm => ({
29474
- method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
29475
- datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
29476
- }),
29477
-
29478
- 'io.flow.shopify.v0.models.shopify_localized_order': (): io.flow.shopify.v0.models.ShopifyLocalizedOrder => ({
29479
- id: factories.long(),
29480
- lines: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_line']()),
29481
- prices: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_price']()),
29482
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
29483
- allocation_details: arrayOf(() => factories['io.flow.experience.v0.unions.allocation_detail']()),
29484
- merchant_of_record: factories['io.flow.common.v0.enums.order_merchant_of_record'](),
29485
- merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
29486
- incoterm: factories['io.flow.common.v0.enums.incoterm'](),
29487
- flow_order_id: factories.string(),
29488
- tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
29489
- geo: factories['io.flow.experience.v0.models.order_geo'](),
29490
- }),
29491
-
29492
- 'io.flow.shopify.v0.models.shopify_localized_variant': (): io.flow.shopify.v0.models.ShopifyLocalizedVariant => ({
29493
- id: factories.long(),
29494
- handle: factories.string(),
29495
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
29496
- prices: factories['io.flow.shopify.v0.models.shopify_localized_variant_prices'](),
29497
- status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
29498
- inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
29499
- }),
29500
-
29501
- 'io.flow.shopify.v0.models.shopify_localized_variant_prices': (): io.flow.shopify.v0.models.ShopifyLocalizedVariantPrices => ({
29502
- item: factories['io.flow.shopify.v0.models.shopify_price'](),
29503
- compare_at: factories['io.flow.shopify.v0.models.shopify_price'](),
29504
- vat: factories['io.flow.shopify.v0.models.shopify_price'](),
29505
- duty: factories['io.flow.shopify.v0.models.shopify_price'](),
29506
- }),
29507
-
29508
- 'io.flow.shopify.v0.models.shopify_location_flow_center_mapping': (): io.flow.shopify.v0.models.ShopifyLocationFlowCenterMapping => ({
29509
- id: factories.string(),
29510
- shopify_location: factories['io.flow.shopify.v0.models.shopify_location_reference'](),
29511
- flow_center: factories['io.flow.shopify.v0.models.flow_center_reference'](),
29512
- }),
29513
-
29514
- 'io.flow.shopify.v0.models.shopify_location_flow_center_mapping_form': (): io.flow.shopify.v0.models.ShopifyLocationFlowCenterMappingForm => ({
29515
- shopify_location_id: factories.long(),
29516
- flow_center_key: factories.string(),
29517
- }),
29518
-
29519
- 'io.flow.shopify.v0.models.shopify_location_reference': (): io.flow.shopify.v0.models.ShopifyLocationReference => ({
29520
- id: factories.string(),
29521
- }),
29522
-
29523
- 'io.flow.shopify.v0.models.shopify_order_attributes_form': (): io.flow.shopify.v0.models.ShopifyOrderAttributesForm => ({
29524
- attributes: objectOf(() => factories.string()),
29525
- }),
29526
-
29527
- 'io.flow.shopify.v0.models.shopify_order_delivery_metafield': (): io.flow.shopify.v0.models.ShopifyOrderDeliveryMetafield => ({
29528
- key: factories.string(),
29529
-
29530
- items: arrayOf(
29531
- () => factories['io.flow.shopify.v0.models.shopify_order_delivery_metafield_item'](),
29532
- ),
29533
-
29534
- service: factories['io.flow.fulfillment.v0.models.service_summary'](),
29535
- window: factories['io.flow.fulfillment.v0.models.delivery_window'](),
29536
- liability: factories['io.flow.fulfillment.v0.enums.ratecard_owner'](),
29537
- cost: factories['io.flow.common.v0.models.money_with_optional_base'](),
29538
- prices: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_price']()),
29539
- total: factories['io.flow.shopify.v0.models.shopify_price'](),
29540
- merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
29541
- }),
29542
-
29543
- 'io.flow.shopify.v0.models.shopify_order_delivery_metafield_item': (): io.flow.shopify.v0.models.ShopifyOrderDeliveryMetafieldItem => ({
29544
- number: factories.string(),
29545
- quantity: factories.long(),
29546
- }),
29547
-
29548
- 'io.flow.shopify.v0.models.shopify_order_price_attributes_metafield': (): io.flow.shopify.v0.models.ShopifyOrderPriceAttributesMetafield => ({
29549
- item_number: factories.string(),
29550
- price_attributes: objectOf(() => factories['io.flow.common.v0.models.price_with_base']()),
29551
- }),
29552
-
29553
- 'io.flow.shopify.v0.models.shopify_order_romanization_metafield': (): io.flow.shopify.v0.models.ShopifyOrderRomanizationMetafield => ({
29554
- destination: factories['io.flow.experience.v0.models.order_address'](),
29555
- billing: factories['io.flow.common.v0.models.billing_address'](),
29556
- }),
29557
-
29558
- 'io.flow.shopify.v0.models.shopify_price': (): io.flow.shopify.v0.models.ShopifyPrice => ({
29559
- name: factories.string(),
29560
- amount: factories.double(),
29561
- cents: factories.double(),
29562
- currency: factories.string(),
29563
- label: factories.string(),
29564
- includes: factories['io.flow.common.v0.models.included_levies'](),
29565
- local: factories['io.flow.shopify.v0.models.shopify_local_price_metadata'](),
29566
- }),
29567
-
29568
- 'io.flow.shopify.v0.models.shopify_private_app': (): io.flow.shopify.v0.models.ShopifyPrivateApp => ({
29569
- id: factories.string(),
29570
- api_key: factories.string(),
29571
- password: factories.string(),
29572
- }),
29573
-
29574
- 'io.flow.shopify.v0.models.shopify_private_app_form': (): io.flow.shopify.v0.models.ShopifyPrivateAppForm => ({
29575
- api_key: factories.string(),
29576
- password: factories.string(),
29577
- }),
29578
-
29579
- 'io.flow.shopify.v0.models.shopify_sync_status': (): io.flow.shopify.v0.models.ShopifySyncStatus => ({
29580
- sync_check: factories['io.flow.shopify.v0.enums.shopify_sync_check'](),
29581
- range: factories['io.flow.common.v0.models.datetime_range'](),
29582
- interval_seconds: factories.long(),
29583
- total: factories.long(),
29584
- buckets: arrayOf(() => factories['io.flow.shopify.v0.unions.shopify_event_bucket']()),
29585
- }),
29586
-
29587
- 'io.flow.shopify.v0.models.shopify_variant_flow_metafield': (): io.flow.shopify.v0.models.ShopifyVariantFlowMetafield => ({
29588
- prices_item: factories.string(),
29589
- prices_currency: factories.string(),
29590
- prices_includes: factories.string(),
29591
- prices_vat: factories.string(),
29592
- prices_vat_name: factories.string(),
29593
- prices_duty: factories.string(),
29594
- prices_compare_at: factories.string(),
29595
- prices_status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
29596
- inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
29597
- }),
29598
-
29599
- 'io.flow.shopify.v0.models.shopify_variant_inventory_metafield': (): io.flow.shopify.v0.models.ShopifyVariantInventoryMetafield => ({
29600
- experience: factories['io.flow.experience.v0.models.experience_reference'](),
29601
- status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
29602
- }),
29603
-
29604
- 'io.flow.shopify.v0.unions.shopify_cart_add_form': (): io.flow.shopify.v0.unions.ShopifyCartAddForm => {
29605
- const f = faker.helpers.arrayElement([
29606
- () => factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](),
29607
- () => factories['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'](),
29608
- ]);
29609
-
29610
- return f();
29611
- },
29612
-
29613
- 'io.flow.shopify.v0.unions.shopify_event_bucket': (): io.flow.shopify.v0.unions.ShopifyEventBucket => {
29614
- const f = faker.helpers.arrayElement([() => factories['io.flow.shopify.v0.models.shopify_item_event_bucket']()]);
29615
- return f();
29616
- },
29617
-
29618
28368
  'io.flow.stripe.v0.enums.account_type': (): io.flow.stripe.v0.enums.AccountType => faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']),
29619
28369
  'io.flow.stripe.v0.enums.apple_pay_type': (): io.flow.stripe.v0.enums.ApplePayType => faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']),
29620
28370
 
@@ -31943,10 +30693,6 @@ export const makeAccountUpsertedV2 = () => factories['io.flow.internal.v0.models
31943
30693
  export const makeAccountingPendingOrderMetadata = () => factories['io.flow.internal.v0.models.accounting_pending_order_metadata']();
31944
30694
  export const makeActionQuantity = () => factories['io.flow.internal.v0.models.action_quantity']();
31945
30695
  export const makeAdditionalImportTax = () => factories['io.flow.internal.v0.models.additional_import_tax']();
31946
- export const makeAddressConfigurationProvinceSetting = () => factories['io.flow.internal.v0.models.address_configuration_province_setting']();
31947
- export const makeAddressConfigurationSetting = () => factories['io.flow.internal.v0.models.address_configuration_setting']();
31948
- export const makeAddressConfigurationSettingForm = () => factories['io.flow.internal.v0.models.address_configuration_setting_form']();
31949
- export const makeAddressConfigurationSettingProvinceCode = () => factories['io.flow.internal.v0.enums.address_configuration_setting_province_code']();
31950
30696
  export const makeAdjustmentAmount = () => factories['io.flow.internal.v0.unions.adjustment_amount']();
31951
30697
  export const makeAdjustmentAmountFixed = () => factories['io.flow.internal.v0.models.adjustment_amount_fixed']();
31952
30698
  export const makeAdjustmentAmountPercentage = () => factories['io.flow.internal.v0.models.adjustment_amount_percentage']();
@@ -32020,7 +30766,6 @@ export const makeAnshItemForm = () => factories['io.flow.internal.v0.models.ansh
32020
30766
  export const makeAnshItemType = () => factories['io.flow.internal.v0.enums.ansh_item_type']();
32021
30767
  export const makeAnyDangerousGoods = () => factories['io.flow.internal.v0.enums.any_dangerous_goods']();
32022
30768
  export const makeApiCallReferenceId = () => factories['io.flow.internal.v0.enums.api_call_reference_id']();
32023
- export const makeApmContent = () => factories['io.flow.internal.v0.models.apm_content']();
32024
30769
  export const makeApplePayAuthorizationPayload = () => factories['io.flow.internal.v0.models.apple_pay_authorization_payload']();
32025
30770
  export const makeApplicablePreferentialRate = () => factories['io.flow.internal.v0.enums.applicable_preferential_rate']();
32026
30771
  export const makeApplyAtValueForm = () => factories['io.flow.internal.v0.models.apply_at_value_form']();
@@ -32045,6 +30790,8 @@ export const makeBankAccountReference = () => factories['io.flow.internal.v0.mod
32045
30790
  export const makeBankAccountStatus = () => factories['io.flow.internal.v0.enums.bank_account_status']();
32046
30791
  export const makeBankPayment = () => factories['io.flow.internal.v0.models.bank_payment']();
32047
30792
  export const makeBankPaymentDeletedV2 = () => factories['io.flow.internal.v0.models.bank_payment_deleted_v2']();
30793
+ export const makeBankPaymentDetail = () => factories['io.flow.internal.v0.models.bank_payment_detail']();
30794
+ export const makeBankPaymentDetailAttachment = () => factories['io.flow.internal.v0.models.bank_payment_detail_attachment']();
32048
30795
  export const makeBankPaymentForm = () => factories['io.flow.internal.v0.models.bank_payment_form']();
32049
30796
  export const makeBankPaymentOrder = () => factories['io.flow.internal.v0.models.bank_payment_order']();
32050
30797
  export const makeBankPaymentOrderDeleted = () => factories['io.flow.internal.v0.models.bank_payment_order_deleted']();
@@ -32227,7 +30974,6 @@ export const makeChargebackPaymentStatus = () => factories['io.flow.internal.v0.
32227
30974
  export const makeChargebackProcessStatus = () => factories['io.flow.internal.v0.enums.chargeback_process_status']();
32228
30975
  export const makeChargebackUpserted = () => factories['io.flow.internal.v0.models.chargeback_upserted']();
32229
30976
  export const makeChargebackVersion = () => factories['io.flow.internal.v0.models.chargeback_version']();
32230
- export const makeCheckbox = () => factories['io.flow.internal.v0.models.checkbox']();
32231
30977
  export const makeCheckoutAnalytics = () => factories['io.flow.internal.v0.models.checkout_analytics']();
32232
30978
  export const makeCheckoutAsset = () => factories['io.flow.internal.v0.models.checkout_asset']();
32233
30979
  export const makeCheckoutAssetType = () => factories['io.flow.internal.v0.enums.checkout_asset_type']();
@@ -32237,22 +30983,9 @@ export const makeCheckoutBehaviorCustomerInfoEmail = () => factories['io.flow.in
32237
30983
  export const makeCheckoutBehaviorShippingAddress = () => factories['io.flow.internal.v0.models.checkout_behavior_shipping_address']();
32238
30984
  export const makeCheckoutBehaviorShippingMethod = () => factories['io.flow.internal.v0.models.checkout_behavior_shipping_method']();
32239
30985
  export const makeCheckoutConfiguration = () => factories['io.flow.internal.v0.models.checkout_configuration']();
32240
- export const makeCheckoutConfigurationDeleted = () => factories['io.flow.internal.v0.models.checkout_configuration_deleted']();
32241
30986
  export const makeCheckoutConfigurationForm = () => factories['io.flow.internal.v0.models.checkout_configuration_form']();
32242
30987
  export const makeCheckoutConfigurationReference = () => factories['io.flow.internal.v0.models.checkout_configuration_reference']();
32243
- export const makeCheckoutConfigurationUpserted = () => factories['io.flow.internal.v0.models.checkout_configuration_upserted']();
32244
- export const makeCheckoutContent = () => factories['io.flow.internal.v0.models.checkout_content']();
32245
- export const makeCheckoutContentDetails = () => factories['io.flow.internal.v0.models.checkout_content_details']();
32246
- export const makeCheckoutContentSummary = () => factories['io.flow.internal.v0.models.checkout_content_summary']();
32247
- export const makeCheckoutError = () => factories['io.flow.internal.v0.models.checkout_error']();
32248
- export const makeCheckoutErrorCode = () => factories['io.flow.internal.v0.enums.checkout_error_code']();
32249
- export const makeCheckoutMarketingContent = () => factories['io.flow.internal.v0.models.checkout_marketing_content']();
32250
- export const makeCheckoutPayment = () => factories['io.flow.internal.v0.models.checkout_payment']();
32251
- export const makeCheckoutPaymentContent = () => factories['io.flow.internal.v0.models.checkout_payment_content']();
32252
- export const makeCheckoutPlatformData = () => factories['io.flow.internal.v0.models.checkout_platform_data']();
32253
30988
  export const makeCheckoutPromptBehavior = () => factories['io.flow.internal.v0.enums.checkout_prompt_behavior']();
32254
- export const makeCheckoutRedirect = () => factories['io.flow.internal.v0.models.checkout_redirect']();
32255
- export const makeCheckoutRedirectMethod = () => factories['io.flow.internal.v0.enums.checkout_redirect_method']();
32256
30989
  export const makeCheckoutSettings = () => factories['io.flow.internal.v0.models.checkout_settings']();
32257
30990
  export const makeCheckoutShippingMethodPromptBehavior = () => factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior']();
32258
30991
  export const makeCheckoutUrl = () => factories['io.flow.internal.v0.models.checkout_url']();
@@ -32317,24 +31050,6 @@ export const makeConnectReportTransferTransferType = () => factories['io.flow.in
32317
31050
  export const makeConsoleLabelRequestForm = () => factories['io.flow.internal.v0.models.console_label_request_form']();
32318
31051
  export const makeConsoleLabelValidationForm = () => factories['io.flow.internal.v0.unions.console_label_validation_form']();
32319
31052
  export const makeConsoleMarkUnresolvableForm = () => factories['io.flow.internal.v0.models.console_mark_unresolvable_form']();
32320
- export const makeConsumerOptinActivity = () => factories['io.flow.internal.v0.models.consumer_optin_activity']();
32321
- export const makeContentElementType = () => factories['io.flow.internal.v0.enums.content_element_type']();
32322
- export const makeContentItem = () => factories['io.flow.internal.v0.unions.content_item']();
32323
- export const makeContentLabel = () => factories['io.flow.internal.v0.models.content_label']();
32324
- export const makeContentSchema = () => factories['io.flow.internal.v0.models.content_schema']();
32325
- export const makeContentSchemaElement = () => factories['io.flow.internal.v0.models.content_schema_element']();
32326
- export const makeContentSchemaForm = () => factories['io.flow.internal.v0.models.content_schema_form']();
32327
- export const makeContentSchemaSummary = () => factories['io.flow.internal.v0.models.content_schema_summary']();
32328
- export const makeContentStatus = () => factories['io.flow.internal.v0.enums.content_status']();
32329
- export const makeContentType = () => factories['io.flow.internal.v0.enums.content_type']();
32330
- export const makeContentTypeCast = () => factories['io.flow.internal.v0.enums.content_type_cast']();
32331
- export const makeCountryPickerCountry = () => factories['io.flow.internal.v0.models.country_picker_country']();
32332
- export const makeCountryPickerCountryData = () => factories['io.flow.internal.v0.models.country_picker_country_data']();
32333
- export const makeCountryPickerCurrency = () => factories['io.flow.internal.v0.models.country_picker_currency']();
32334
- export const makeCountryPickerData = () => factories['io.flow.internal.v0.models.country_picker_data']();
32335
- export const makeCountryPickerDeliveryWindow = () => factories['io.flow.internal.v0.models.country_picker_delivery_window']();
32336
- export const makeCountryPickerExperienceData = () => factories['io.flow.internal.v0.models.country_picker_experience_data']();
32337
- export const makeCountryPickerPaymentMethod = () => factories['io.flow.internal.v0.models.country_picker_payment_method']();
32338
31053
  export const makeCourthouseProductSummary = () => factories['io.flow.internal.v0.models.courthouse_product_summary']();
32339
31054
  export const makeCrossdockTrackingStatus = () => factories['io.flow.internal.v0.enums.crossdock_tracking_status']();
32340
31055
  export const makeCryptoAccount = () => factories['io.flow.internal.v0.models.crypto_account']();
@@ -32357,6 +31072,7 @@ export const makeCustomsProductLabels = () => factories['io.flow.internal.v0.mod
32357
31072
  export const makeDailyValue = () => factories['io.flow.internal.v0.models.daily_value']();
32358
31073
  export const makeDailyValueDeleted = () => factories['io.flow.internal.v0.models.daily_value_deleted']();
32359
31074
  export const makeDailyValueUpserted = () => factories['io.flow.internal.v0.models.daily_value_upserted']();
31075
+ export const makeDatabase = () => factories['io.flow.internal.v0.models.database']();
32360
31076
  export const makeDebugAccountingTransaction = () => factories['io.flow.internal.v0.models.debug_accounting_transaction']();
32361
31077
  export const makeDebugAccountingTransactionType = () => factories['io.flow.internal.v0.enums.debug_accounting_transaction_type']();
32362
31078
  export const makeDebugAdjustment = () => factories['io.flow.internal.v0.models.debug_adjustment']();
@@ -32396,7 +31112,6 @@ export const makeDeminimisAdjustmentType = () => factories['io.flow.internal.v0.
32396
31112
  export const makeDestinationError = () => factories['io.flow.internal.v0.models.destination_error']();
32397
31113
  export const makeDhl = () => factories['io.flow.internal.v0.models.dhl']();
32398
31114
  export const makeDhlEcommerce = () => factories['io.flow.internal.v0.models.dhl_ecommerce']();
32399
- export const makeDict = () => factories['io.flow.internal.v0.models.dict']();
32400
31115
  export const makeDimensionEstimateOpsInput = () => factories['io.flow.internal.v0.models.dimension_estimate_ops_input']();
32401
31116
  export const makeDiscount = () => factories['io.flow.internal.v0.models.discount']();
32402
31117
  export const makeDiscountCode = () => factories['io.flow.internal.v0.models.discount_code']();
@@ -32544,9 +31259,6 @@ export const makeFinanceBankAccount = () => factories['io.flow.internal.v0.model
32544
31259
  export const makeFinanceBankAccountOwner = () => factories['io.flow.internal.v0.models.finance_bank_account_owner']();
32545
31260
  export const makeFinanceBankPayment = () => factories['io.flow.internal.v0.models.finance_bank_payment']();
32546
31261
  export const makeFinancialMerchantCategory = () => factories['io.flow.internal.v0.models.financial_merchant_category']();
32547
- export const makeFinancialReportingResponsibleParty = () => factories['io.flow.internal.v0.enums.financial_reporting_responsible_party']();
32548
- export const makeFinancialReportingStatement = () => factories['io.flow.internal.v0.models.financial_reporting_statement']();
32549
- export const makeFinancialReportingStatementForm = () => factories['io.flow.internal.v0.models.financial_reporting_statement_form']();
32550
31262
  export const makeFiservAccount = () => factories['io.flow.internal.v0.models.fiserv_account']();
32551
31263
  export const makeFiservAccountModificationForm = () => factories['io.flow.internal.v0.models.fiserv_account_modification_form']();
32552
31264
  export const makeFiservAccountPutForm = () => factories['io.flow.internal.v0.models.fiserv_account_put_form']();
@@ -32558,7 +31270,6 @@ export const makeFiservMerchantModificationForm = () => factories['io.flow.inter
32558
31270
  export const makeFiservMerchantPutForm = () => factories['io.flow.internal.v0.models.fiserv_merchant_put_form']();
32559
31271
  export const makeFlexeWebhook = () => factories['io.flow.internal.v0.models.flexe_webhook']();
32560
31272
  export const makeFlowAccount = () => factories['io.flow.internal.v0.models.flow_account']();
32561
- export const makeFlowApp = () => factories['io.flow.internal.v0.enums.flow_app']();
32562
31273
  export const makeFlowBillingStatement = () => factories['io.flow.internal.v0.models.flow_billing_statement']();
32563
31274
  export const makeFlowChannelOrganization = () => factories['io.flow.internal.v0.models.flow_channel_organization']();
32564
31275
  export const makeFlowLabProject = () => factories['io.flow.internal.v0.models.flow_lab_project']();
@@ -32567,7 +31278,6 @@ export const makeFlowLabProjectPutForm = () => factories['io.flow.internal.v0.mo
32567
31278
  export const makeFlowLabelSetting = () => factories['io.flow.internal.v0.models.flow_label_setting']();
32568
31279
  export const makeFlowLabelSettingForm = () => factories['io.flow.internal.v0.models.flow_label_setting_form']();
32569
31280
  export const makeFlowShopValidationError = () => factories['io.flow.internal.v0.models.flow_shop_validation_error']();
32570
- export const makeFormat = () => factories['io.flow.internal.v0.enums.format']();
32571
31281
  export const makeFraudAuthorizationSummary = () => factories['io.flow.internal.v0.models.fraud_authorization_summary']();
32572
31282
  export const makeFraudPendingReview = () => factories['io.flow.internal.v0.models.fraud_pending_review']();
32573
31283
  export const makeFraudPendingReviewAuthorization = () => factories['io.flow.internal.v0.models.fraud_pending_review_authorization']();
@@ -32603,12 +31313,6 @@ export const makeFraudSummary = () => factories['io.flow.internal.v0.models.frau
32603
31313
  export const makeFtpFileDeleted = () => factories['io.flow.internal.v0.models.ftp_file_deleted']();
32604
31314
  export const makeFtpFileToProcessUploaded = () => factories['io.flow.internal.v0.models.ftp_file_to_process_uploaded']();
32605
31315
  export const makeFtpFileUpserted = () => factories['io.flow.internal.v0.models.ftp_file_upserted']();
32606
- export const makeFtpIntent = () => factories['io.flow.internal.v0.enums.ftp_intent']();
32607
- export const makeFtpProtocol = () => factories['io.flow.internal.v0.enums.ftp_protocol']();
32608
- export const makeFtpSetting = () => factories['io.flow.internal.v0.models.ftp_setting']();
32609
- export const makeFtpSettingForm = () => factories['io.flow.internal.v0.models.ftp_setting_form']();
32610
- export const makeFtpSettingVersion = () => factories['io.flow.internal.v0.models.ftp_setting_version']();
32611
- export const makeFtpSettingsPaths = () => factories['io.flow.internal.v0.models.ftp_settings_paths']();
32612
31316
  export const makeFuelSurchargeServiceFeeAmountByWeightPutForm = () => factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form']();
32613
31317
  export const makeFuelSurchargeServiceFeePercentPutForm = () => factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form']();
32614
31318
  export const makeFuelSurchargeServiceFeePutForm = () => factories['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form']();
@@ -32644,6 +31348,7 @@ export const makeFxRevenueRecognitionRate = () => factories['io.flow.internal.v0
32644
31348
  export const makeFxRevenueRecognitionSource = () => factories['io.flow.internal.v0.models.fx_revenue_recognition_source']();
32645
31349
  export const makeGeIngestionFileStatus = () => factories['io.flow.internal.v0.enums.ge_ingestion_file_status']();
32646
31350
  export const makeGeRevenueShareTransaction = () => factories['io.flow.internal.v0.models.ge_revenue_share_transaction']();
31351
+ export const makeGeRevenueShareTransactionType = () => factories['io.flow.internal.v0.enums.ge_revenue_share_transaction_type']();
32647
31352
  export const makeGenerateLoad = () => factories['io.flow.internal.v0.unions.generate_load']();
32648
31353
  export const makeGenerateLoadMultipleOrgs = () => factories['io.flow.internal.v0.models.generate_load_multiple_orgs']();
32649
31354
  export const makeGenerateLoadSingleOrg = () => factories['io.flow.internal.v0.models.generate_load_single_org']();
@@ -32675,7 +31380,9 @@ export const makeHarmonizationThresholdForm = () => factories['io.flow.internal.
32675
31380
  export const makeHarmonizationUnclassifiedStatistics = () => factories['io.flow.internal.v0.models.harmonization_unclassified_statistics']();
32676
31381
  export const makeHarmonizeFullyRequestV2 = () => factories['io.flow.internal.v0.models.harmonize_fully_request_v2']();
32677
31382
  export const makeHarmonizedItemsHs6Export = () => factories['io.flow.internal.v0.models.harmonized_items_hs6_export']();
32678
- export const makeHref = () => factories['io.flow.internal.v0.models.href']();
31383
+ export const makeHoseinItem = () => factories['io.flow.internal.v0.models.hosein_item']();
31384
+ export const makeHoseinItemForm = () => factories['io.flow.internal.v0.models.hosein_item_form']();
31385
+ export const makeHoseinItemType = () => factories['io.flow.internal.v0.enums.hosein_item_type']();
32679
31386
  export const makeHs6 = () => factories['io.flow.internal.v0.models.hs6']();
32680
31387
  export const makeHs6Metadata = () => factories['io.flow.internal.v0.models.hs6_metadata']();
32681
31388
  export const makeHttpMethod = () => factories['io.flow.internal.v0.enums.http_method']();
@@ -32683,7 +31390,6 @@ export const makeImportCompleted = () => factories['io.flow.internal.v0.models.i
32683
31390
  export const makeImportFailed = () => factories['io.flow.internal.v0.models.import_failed']();
32684
31391
  export const makeIndexTaskType = () => factories['io.flow.internal.v0.unions.index_task_type']();
32685
31392
  export const makeInlineAuthorizationParameters = () => factories['io.flow.internal.v0.unions.inline_authorization_parameters']();
32686
- export const makeInstallForm = () => factories['io.flow.internal.v0.models.install_form']();
32687
31393
  export const makeInternalAdyenAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_adyen_authorization_details']();
32688
31394
  export const makeInternalAfterpayAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_afterpay_authorization_details']();
32689
31395
  export const makeInternalAuthorization = () => factories['io.flow.internal.v0.models.internal_authorization']();
@@ -32718,9 +31424,6 @@ export const makeInvoiceInfoForm = () => factories['io.flow.internal.v0.models.i
32718
31424
  export const makeInvoiceLine = () => factories['io.flow.internal.v0.models.invoice_line']();
32719
31425
  export const makeInvoiceLineItem = () => factories['io.flow.internal.v0.models.invoice_line_item']();
32720
31426
  export const makeInvoiceTransaction = () => factories['io.flow.internal.v0.models.invoice_transaction']();
32721
- export const makeIssuer = () => factories['io.flow.internal.v0.models.issuer']();
32722
- export const makeIssuerDeleted = () => factories['io.flow.internal.v0.models.issuer_deleted']();
32723
- export const makeIssuerUpserted = () => factories['io.flow.internal.v0.models.issuer_upserted']();
32724
31427
  export const makeItemClassification = () => factories['io.flow.internal.v0.models.item_classification']();
32725
31428
  export const makeItemClassificationAction = () => factories['io.flow.internal.v0.enums.item_classification_action']();
32726
31429
  export const makeItemClassificationForm = () => factories['io.flow.internal.v0.models.item_classification_form']();
@@ -32753,6 +31456,9 @@ export const makeItemSummary = () => factories['io.flow.internal.v0.models.item_
32753
31456
  export const makeItemType = () => factories['io.flow.internal.v0.enums.item_type']();
32754
31457
  export const makeItemValuesForm = () => factories['io.flow.internal.v0.models.item_values_form']();
32755
31458
  export const makeJeanDemoItem = () => factories['io.flow.internal.v0.models.jean_demo_item']();
31459
+ export const makeJournal = () => factories['io.flow.internal.v0.models.journal']();
31460
+ export const makeJournalFailure = () => factories['io.flow.internal.v0.models.journal_failure']();
31461
+ export const makeJournalOperation = () => factories['io.flow.internal.v0.enums.journal_operation']();
32756
31462
  export const makeKey = () => factories['io.flow.internal.v0.models.key']();
32757
31463
  export const makeKeyReference = () => factories['io.flow.internal.v0.models.key_reference']();
32758
31464
  export const makeKeywordType = () => factories['io.flow.internal.v0.enums.keyword_type']();
@@ -32800,7 +31506,6 @@ export const makeLabelTransaction = () => factories['io.flow.internal.v0.models.
32800
31506
  export const makeLabelTransactionDeleted = () => factories['io.flow.internal.v0.models.label_transaction_deleted']();
32801
31507
  export const makeLabelTransactionType = () => factories['io.flow.internal.v0.enums.label_transaction_type']();
32802
31508
  export const makeLabelTransactionUpserted = () => factories['io.flow.internal.v0.models.label_transaction_upserted']();
32803
- export const makeLabeledContent = () => factories['io.flow.internal.v0.models.labeled_content']();
32804
31509
  export const makeLabelsPrediction = () => factories['io.flow.internal.v0.models.labels_prediction']();
32805
31510
  export const makeLandedCostItem = () => factories['io.flow.internal.v0.models.landed_cost_item']();
32806
31511
  export const makeLandmark = () => factories['io.flow.internal.v0.models.landmark']();
@@ -32817,21 +31522,9 @@ export const makeLiabilityRemittancePlanUpserted = () => factories['io.flow.inte
32817
31522
  export const makeLiabilityType = () => factories['io.flow.internal.v0.enums.liability_type']();
32818
31523
  export const makeLineActionForm = () => factories['io.flow.internal.v0.models.line_action_form']();
32819
31524
  export const makeLineActionQuantities = () => factories['io.flow.internal.v0.models.line_action_quantities']();
32820
- export const makeLoad = () => factories['io.flow.internal.v0.models.load']();
32821
- export const makeLocalizableContent = () => factories['io.flow.internal.v0.unions.localizable_content']();
32822
- export const makeLocalizableContentReference = () => factories['io.flow.internal.v0.models.localizable_content_reference']();
32823
- export const makeLocalization = () => factories['io.flow.internal.v0.models.localization']();
32824
- export const makeLocalizationForm = () => factories['io.flow.internal.v0.models.localization_form']();
32825
- export const makeLocalizationRef = () => factories['io.flow.internal.v0.models.localization_ref']();
32826
- export const makeLocalizationUpserted = () => factories['io.flow.internal.v0.models.localization_upserted']();
32827
- export const makeLocalizedContent = () => factories['io.flow.internal.v0.models.localized_content']();
32828
- export const makeLocalizedContentElement = () => factories['io.flow.internal.v0.models.localized_content_element']();
32829
- export const makeLocalizedContentForm = () => factories['io.flow.internal.v0.models.localized_content_form']();
32830
- export const makeLocalizedContentUpserted = () => factories['io.flow.internal.v0.models.localized_content_upserted']();
32831
31525
  export const makeLocalizedItemPricesExportRequest = () => factories['io.flow.internal.v0.models.localized_item_prices_export_request']();
32832
31526
  export const makeLocalizedItemsExportSettings = () => factories['io.flow.internal.v0.models.localized_items_export_settings']();
32833
31527
  export const makeLocalizedPriceBookItemData = () => factories['io.flow.internal.v0.models.localized_price_book_item_data']();
32834
- export const makeLocation = () => factories['io.flow.internal.v0.models.location']();
32835
31528
  export const makeLogisticsCapabilities = () => factories['io.flow.internal.v0.models.logistics_capabilities']();
32836
31529
  export const makeLogisticsCapabilitiesDeleted = () => factories['io.flow.internal.v0.models.logistics_capabilities_deleted']();
32837
31530
  export const makeLogisticsCapabilitiesForm = () => factories['io.flow.internal.v0.models.logistics_capabilities_form']();
@@ -32840,13 +31533,11 @@ export const makeLogisticsCapability = () => factories['io.flow.internal.v0.enum
32840
31533
  export const makeLogisticsPayoutRequest = () => factories['io.flow.internal.v0.models.logistics_payout_request']();
32841
31534
  export const makeLogisticsPayoutRequestForm = () => factories['io.flow.internal.v0.models.logistics_payout_request_form']();
32842
31535
  export const makeLogisticsPayoutResolutionMethod = () => factories['io.flow.internal.v0.enums.logistics_payout_resolution_method']();
32843
- export const makeLogo = () => factories['io.flow.internal.v0.models.logo']();
32844
31536
  export const makeLostChargeback = () => factories['io.flow.internal.v0.models.lost_chargeback']();
32845
31537
  export const makeLoyaltyProgram = () => factories['io.flow.internal.v0.models.loyalty_program']();
32846
31538
  export const makeLoyaltyProgramMessage = () => factories['io.flow.internal.v0.models.loyalty_program_message']();
32847
31539
  export const makeLoyaltyProgramReward = () => factories['io.flow.internal.v0.models.loyalty_program_reward']();
32848
31540
  export const makeLoyaltyProgramRewards = () => factories['io.flow.internal.v0.models.loyalty_program_rewards']();
32849
- export const makeMagentoInstallForm = () => factories['io.flow.internal.v0.models.magento_install_form']();
32850
31541
  export const makeMainTransaction = () => factories['io.flow.internal.v0.models.main_transaction']();
32851
31542
  export const makeMainTransactionDeleted = () => factories['io.flow.internal.v0.models.main_transaction_deleted']();
32852
31543
  export const makeMainTransactionDeletedV2 = () => factories['io.flow.internal.v0.models.main_transaction_deleted_v2']();
@@ -32918,14 +31609,6 @@ export const makeOnboardingStateForm = () => factories['io.flow.internal.v0.mode
32918
31609
  export const makeOnboardingStateSource = () => factories['io.flow.internal.v0.enums.onboarding_state_source']();
32919
31610
  export const makeOneTimeTokenRedemptionForm = () => factories['io.flow.internal.v0.models.one_time_token_redemption_form']();
32920
31611
  export const makeOnlineAuthorizationCompleted = () => factories['io.flow.internal.v0.models.online_authorization_completed']();
32921
- export const makeOptinAttribute = () => factories['io.flow.internal.v0.models.optin_attribute']();
32922
- export const makeOptinAttributeForm = () => factories['io.flow.internal.v0.models.optin_attribute_form']();
32923
- export const makeOptinPrompt = () => factories['io.flow.internal.v0.models.optin_prompt']();
32924
- export const makeOptinPromptCheckoutDisplay = () => factories['io.flow.internal.v0.models.optin_prompt_checkout_display']();
32925
- export const makeOptinPromptCopy = () => factories['io.flow.internal.v0.models.optin_prompt_copy']();
32926
- export const makeOptinPromptCopyForm = () => factories['io.flow.internal.v0.models.optin_prompt_copy_form']();
32927
- export const makeOptinPromptDisplay = () => factories['io.flow.internal.v0.unions.optin_prompt_display']();
32928
- export const makeOptinPromptForm = () => factories['io.flow.internal.v0.models.optin_prompt_form']();
32929
31612
  export const makeOrderAction = () => factories['io.flow.internal.v0.enums.order_action']();
32930
31613
  export const makeOrderActionForm = () => factories['io.flow.internal.v0.unions.order_action_form']();
32931
31614
  export const makeOrderActionability = () => factories['io.flow.internal.v0.models.order_actionability']();
@@ -32964,7 +31647,6 @@ export const makeOrderRevenueRegionDataPoint = () => factories['io.flow.internal
32964
31647
  export const makeOrderRevenueTimelineChart = () => factories['io.flow.internal.v0.models.order_revenue_timeline_chart']();
32965
31648
  export const makeOrderRevenueTimelineDataPoint = () => factories['io.flow.internal.v0.models.order_revenue_timeline_data_point']();
32966
31649
  export const makeOrderServiceChangeCsvForm = () => factories['io.flow.internal.v0.models.order_service_change_csv_form']();
32967
- export const makeOrderSubmissionForm = () => factories['io.flow.internal.v0.models.order_submission_form']();
32968
31650
  export const makeOrderSummary = () => factories['io.flow.internal.v0.models.order_summary']();
32969
31651
  export const makeOrderTaxAndDutyInclusivitySetting = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting']();
32970
31652
  export const makeOrderTaxAndDutyInclusivitySettingDeleted = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted']();
@@ -33084,6 +31766,7 @@ export const makePartnerTrackingSubscriptionUpserted = () => factories['io.flow.
33084
31766
  export const makePassphrase = () => factories['io.flow.internal.v0.models.passphrase']();
33085
31767
  export const makePassphraseForm = () => factories['io.flow.internal.v0.models.passphrase_form']();
33086
31768
  export const makePassphraseSummary = () => factories['io.flow.internal.v0.models.passphrase_summary']();
31769
+ export const makePaymentIs = () => factories['io.flow.internal.v0.models.payment_is']();
33087
31770
  export const makePaymentMethodDetail = () => factories['io.flow.internal.v0.models.payment_method_detail']();
33088
31771
  export const makePaymentMethodOption = () => factories['io.flow.internal.v0.models.payment_method_option']();
33089
31772
  export const makePaymentOrganizationSettings = () => factories['io.flow.internal.v0.models.payment_organization_settings']();
@@ -33127,6 +31810,7 @@ export const makePaypalRefundUpserted = () => factories['io.flow.internal.v0.mod
33127
31810
  export const makePendingBankPayment = () => factories['io.flow.internal.v0.models.pending_bank_payment']();
33128
31811
  export const makePendingBankPaymentDetail = () => factories['io.flow.internal.v0.models.pending_bank_payment_detail']();
33129
31812
  export const makePendingOrder = () => factories['io.flow.internal.v0.models.pending_order']();
31813
+ export const makePendingRecordType = () => factories['io.flow.internal.v0.enums.pending_record_type']();
33130
31814
  export const makePhraseClassified = () => factories['io.flow.internal.v0.models.phrase_classified']();
33131
31815
  export const makePhrasePropagated = () => factories['io.flow.internal.v0.models.phrase_propagated']();
33132
31816
  export const makePlatformFee = () => factories['io.flow.internal.v0.unions.platform_fee']();
@@ -33184,13 +31868,11 @@ export const makeProductRestrictionStateInserted = () => factories['io.flow.inte
33184
31868
  export const makeProductRestrictionStateUpdated = () => factories['io.flow.internal.v0.models.product_restriction_state_updated']();
33185
31869
  export const makeProductReviewHistory = () => factories['io.flow.internal.v0.models.product_review_history']();
33186
31870
  export const makeProductSellabilityInternal = () => factories['io.flow.internal.v0.models.product_sellability_internal']();
31871
+ export const makeProductSellabilityInternalForm = () => factories['io.flow.internal.v0.models.product_sellability_internal_form']();
31872
+ export const makeProductSellabilityInternalResult = () => factories['io.flow.internal.v0.models.product_sellability_internal_result']();
33187
31873
  export const makeProductSellabilityResult = () => factories['io.flow.internal.v0.models.product_sellability_result']();
33188
31874
  export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
33189
31875
  export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
33190
- export const makePromptAction = () => factories['io.flow.internal.v0.enums.prompt_action']();
33191
- export const makePromptCheckoutDisplayPosition = () => factories['io.flow.internal.v0.enums.prompt_checkout_display_position']();
33192
- export const makePromptOptions = () => factories['io.flow.internal.v0.enums.prompt_options']();
33193
- export const makePromptTarget = () => factories['io.flow.internal.v0.enums.prompt_target']();
33194
31876
  export const makeProofOfPosting = () => factories['io.flow.internal.v0.unions.proof_of_posting']();
33195
31877
  export const makeProofOfPostingExternallyFulfilled = () => factories['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled']();
33196
31878
  export const makeProofOfPostingFulfilled = () => factories['io.flow.internal.v0.models.proof_of_posting_fulfilled']();
@@ -33258,9 +31940,6 @@ export const makeRatecardStandardConfigurationUpserted = () => factories['io.flo
33258
31940
  export const makeRatecardStandardSettings = () => factories['io.flow.internal.v0.models.ratecard_standard_settings']();
33259
31941
  export const makeRatesChanged = () => factories['io.flow.internal.v0.models.rates_changed']();
33260
31942
  export const makeRatesNamesSummary = () => factories['io.flow.internal.v0.models.rates_names_summary']();
33261
- export const makeReboundConfiguration = () => factories['io.flow.internal.v0.models.rebound_configuration']();
33262
- export const makeReboundConfigurationForm = () => factories['io.flow.internal.v0.models.rebound_configuration_form']();
33263
- export const makeReboundConfigurationStatus = () => factories['io.flow.internal.v0.enums.rebound_configuration_status']();
33264
31943
  export const makeRecordReference = () => factories['io.flow.internal.v0.models.record_reference']();
33265
31944
  export const makeRedirect = () => factories['io.flow.internal.v0.models.redirect']();
33266
31945
  export const makeRedirectActionCompleted = () => factories['io.flow.internal.v0.models.redirect_action_completed']();
@@ -33327,6 +32006,7 @@ export const makeRequeueRequestForm = () => factories['io.flow.internal.v0.model
33327
32006
  export const makeRescreenRestrictionsProducts = () => factories['io.flow.internal.v0.models.rescreen_restrictions_products']();
33328
32007
  export const makeResponsibleParty = () => factories['io.flow.internal.v0.enums.responsible_party']();
33329
32008
  export const makeRestrictionAction = () => factories['io.flow.internal.v0.enums.restriction_action']();
32009
+ export const makeRestrictionBlanketOrganizationExemption = () => factories['io.flow.internal.v0.models.restriction_blanket_organization_exemption']();
33330
32010
  export const makeRestrictionCategory = () => factories['io.flow.internal.v0.models.restriction_category']();
33331
32011
  export const makeRestrictionDecision = () => factories['io.flow.internal.v0.enums.restriction_decision']();
33332
32012
  export const makeRestrictionFilter = () => factories['io.flow.internal.v0.models.restriction_filter']();
@@ -33350,6 +32030,7 @@ export const makeRestrictionProductDecisionForm = () => factories['io.flow.inter
33350
32030
  export const makeRestrictionProductRequestForm = () => factories['io.flow.internal.v0.models.restriction_product_request_form']();
33351
32031
  export const makeRestrictionProductSummary = () => factories['io.flow.internal.v0.models.restriction_product_summary']();
33352
32032
  export const makeRestrictionRule = () => factories['io.flow.internal.v0.models.restriction_rule']();
32033
+ export const makeRestrictionRuleCommunityExemption = () => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption']();
33353
32034
  export const makeRestrictionRuleDecisionForm = () => factories['io.flow.internal.v0.models.restriction_rule_decision_form']();
33354
32035
  export const makeRestrictionRuleDeleted = () => factories['io.flow.internal.v0.models.restriction_rule_deleted']();
33355
32036
  export const makeRestrictionRuleEffect = () => factories['io.flow.internal.v0.models.restriction_rule_effect']();
@@ -33394,8 +32075,12 @@ export const makeRoutingAccount = () => factories['io.flow.internal.v0.models.ro
33394
32075
  export const makeRoutingEntity = () => factories['io.flow.internal.v0.unions.routing_entity']();
33395
32076
  export const makeRoutingMerchant = () => factories['io.flow.internal.v0.models.routing_merchant']();
33396
32077
  export const makeRoutingProcessor = () => factories['io.flow.internal.v0.models.routing_processor']();
32078
+ export const makeSalesPaymentRecord = () => factories['io.flow.internal.v0.models.sales_payment_record']();
33397
32079
  export const makeSandboxSetup = () => factories['io.flow.internal.v0.models.sandbox_setup']();
33398
32080
  export const makeSandboxSetupForm = () => factories['io.flow.internal.v0.models.sandbox_setup_form']();
32081
+ export const makeSarveshItem = () => factories['io.flow.internal.v0.models.sarvesh_item']();
32082
+ export const makeSarveshItemForm = () => factories['io.flow.internal.v0.models.sarvesh_item_form']();
32083
+ export const makeSarveshItemType = () => factories['io.flow.internal.v0.enums.sarvesh_item_type']();
33399
32084
  export const makeScheduledPayment = () => factories['io.flow.internal.v0.models.scheduled_payment']();
33400
32085
  export const makeScreen = () => factories['io.flow.internal.v0.models.screen']();
33401
32086
  export const makeScreenForm = () => factories['io.flow.internal.v0.models.screen_form']();
@@ -33416,30 +32101,16 @@ export const makeShipmentCostSummary = () => factories['io.flow.internal.v0.mode
33416
32101
  export const makeShippingLane = () => factories['io.flow.internal.v0.models.shipping_lane']();
33417
32102
  export const makeShippingMethodReference = () => factories['io.flow.internal.v0.models.shipping_method_reference']();
33418
32103
  export const makeShippingPricing = () => factories['io.flow.internal.v0.models.shipping_pricing']();
33419
- export const makeShop = () => factories['io.flow.internal.v0.models.shop']();
33420
- export const makeShopForm = () => factories['io.flow.internal.v0.models.shop_form']();
33421
- export const makeShopVersion = () => factories['io.flow.internal.v0.models.shop_version']();
33422
32104
  export const makeShopifyCatalogPublication = () => factories['io.flow.internal.v0.models.shopify_catalog_publication']();
33423
32105
  export const makeShopifyChannelOrganizationToken = () => factories['io.flow.internal.v0.models.shopify_channel_organization_token']();
33424
32106
  export const makeShopifyChannelOrganizationTokens = () => factories['io.flow.internal.v0.models.shopify_channel_organization_tokens']();
33425
- export const makeShopifyCheckInventoryError = () => factories['io.flow.internal.v0.models.shopify_check_inventory_error']();
33426
- export const makeShopifyCheckInventoryErrorCode = () => factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code']();
33427
- export const makeShopifyCodeForm = () => factories['io.flow.internal.v0.models.shopify_code_form']();
33428
32107
  export const makeShopifyDispute = () => factories['io.flow.internal.v0.models.shopify_dispute']();
33429
32108
  export const makeShopifyDisputeDeleted = () => factories['io.flow.internal.v0.models.shopify_dispute_deleted']();
33430
32109
  export const makeShopifyDisputeUpserted = () => factories['io.flow.internal.v0.models.shopify_dispute_upserted']();
33431
- export const makeShopifyExperienceShortId = () => factories['io.flow.internal.v0.models.shopify_experience_short_id']();
33432
- export const makeShopifyExperienceShortIdDeleted = () => factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted']();
33433
- export const makeShopifyExperienceShortIdUpserted = () => factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted']();
33434
- export const makeShopifyGiftCardBalance = () => factories['io.flow.internal.v0.models.shopify_gift_card_balance']();
33435
- export const makeShopifyGiftCardBalanceForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_balance_form']();
33436
- export const makeShopifyGiftCardPaymentForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_payment_form']();
33437
- export const makeShopifyGiftCardRedemption = () => factories['io.flow.internal.v0.models.shopify_gift_card_redemption']();
33438
- export const makeShopifyGiftCardRedemptionForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_redemption_form']();
33439
- export const makeShopifyGiftCardReversal = () => factories['io.flow.internal.v0.models.shopify_gift_card_reversal']();
33440
- export const makeShopifyGiftCardReversalForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_reversal_form']();
33441
- export const makeShopifyGrantStatus = () => factories['io.flow.internal.v0.enums.shopify_grant_status']();
33442
- export const makeShopifyGrantsCheck = () => factories['io.flow.internal.v0.models.shopify_grants_check']();
32110
+ export const makeShopifyHs10Code = () => factories['io.flow.internal.v0.models.shopify_hs10_code']();
32111
+ export const makeShopifyHs10Codes = () => factories['io.flow.internal.v0.models.shopify_hs10_codes']();
32112
+ export const makeShopifyHs10CodesDeleted = () => factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted']();
32113
+ export const makeShopifyHs10CodesUpserted = () => factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted']();
33443
32114
  export const makeShopifyIncotermConfiguration = () => factories['io.flow.internal.v0.enums.shopify_incoterm_configuration']();
33444
32115
  export const makeShopifyIncotermIncludes = () => factories['io.flow.internal.v0.models.shopify_incoterm_includes']();
33445
32116
  export const makeShopifyIncotermSummaryErrorData = () => factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data']();
@@ -33501,30 +32172,20 @@ export const makeShopifyMonitoringOrderMonitorType = () => factories['io.flow.in
33501
32172
  export const makeShopifyMonitoringTrackingField = () => factories['io.flow.internal.v0.enums.shopify_monitoring_tracking_field']();
33502
32173
  export const makeShopifyMonitoringTrackingNumber = () => factories['io.flow.internal.v0.models.shopify_monitoring_tracking_number']();
33503
32174
  export const makeShopifyMonitoringTrackingUrl = () => factories['io.flow.internal.v0.models.shopify_monitoring_tracking_url']();
33504
- export const makeShopifyOrderAuthorization = () => factories['io.flow.internal.v0.models.shopify_order_authorization']();
33505
32175
  export const makeShopifyOrderCancelForm = () => factories['io.flow.internal.v0.models.shopify_order_cancel_form']();
33506
32176
  export const makeShopifyOrderCancelResponse = () => factories['io.flow.internal.v0.models.shopify_order_cancel_response']();
33507
- export const makeShopifyOrderContent = () => factories['io.flow.internal.v0.models.shopify_order_content']();
33508
32177
  export const makeShopifyOrderDestinationForm = () => factories['io.flow.internal.v0.models.shopify_order_destination_form']();
33509
- export const makeShopifyOrderDetail = () => factories['io.flow.internal.v0.models.shopify_order_detail']();
33510
- export const makeShopifyOrderDiscountContent = () => factories['io.flow.internal.v0.models.shopify_order_discount_content']();
33511
32178
  export const makeShopifyOrderFulfillmentsSnapshot = () => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot']();
33512
32179
  export const makeShopifyOrderFulfillmentsSnapshotDeleted = () => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted']();
33513
32180
  export const makeShopifyOrderFulfillmentsSnapshotUpserted = () => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted']();
33514
- export const makeShopifyOrderInventoryCheck = () => factories['io.flow.internal.v0.models.shopify_order_inventory_check']();
33515
- export const makeShopifyOrderLineAttribute = () => factories['io.flow.internal.v0.models.shopify_order_line_attribute']();
33516
- export const makeShopifyOrderLineContent = () => factories['io.flow.internal.v0.models.shopify_order_line_content']();
33517
32181
  export const makeShopifyOrderRiskAssessment = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment']();
33518
32182
  export const makeShopifyOrderRiskAssessmentDeleted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted']();
33519
32183
  export const makeShopifyOrderRiskAssessmentUpserted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted']();
33520
32184
  export const makeShopifyOrderTransaction = () => factories['io.flow.internal.v0.models.shopify_order_transaction']();
33521
32185
  export const makeShopifyOrderTransactionDeleted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_deleted']();
33522
32186
  export const makeShopifyOrderTransactionUpserted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_upserted']();
33523
- export const makeShopifyOrganizationSettings = () => factories['io.flow.internal.v0.models.shopify_organization_settings']();
33524
- export const makeShopifyOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.shopify_organization_settings_form']();
33525
32187
  export const makeShopifyPartnerWebhook = () => factories['io.flow.internal.v0.models.shopify_partner_webhook']();
33526
32188
  export const makeShopifyPartnerWebhookRaw = () => factories['io.flow.internal.v0.models.shopify_partner_webhook_raw']();
33527
- export const makeShopifyPaymentSummary = () => factories['io.flow.internal.v0.models.shopify_payment_summary']();
33528
32189
  export const makeShopifyPlanType = () => factories['io.flow.internal.v0.enums.shopify_plan_type']();
33529
32190
  export const makeShopifyProductBundle = () => factories['io.flow.internal.v0.models.shopify_product_bundle']();
33530
32191
  export const makeShopifyProductBundleDeleted = () => factories['io.flow.internal.v0.models.shopify_product_bundle_deleted']();
@@ -33540,37 +32201,13 @@ export const makeShopifyProductUpdateDeleted = () => factories['io.flow.internal
33540
32201
  export const makeShopifyProductUpdateUpserted = () => factories['io.flow.internal.v0.models.shopify_product_update_upserted']();
33541
32202
  export const makeShopifyProductUpdateWebhookEvent = () => factories['io.flow.internal.v0.models.shopify_product_update_webhook_event']();
33542
32203
  export const makeShopifyProductWrapper = () => factories['io.flow.internal.v0.models.shopify_product_wrapper']();
33543
- export const makeShopifyPromoForm = () => factories['io.flow.internal.v0.models.shopify_promo_form']();
33544
- export const makeShopifyPromotion = () => factories['io.flow.internal.v0.models.shopify_promotion']();
33545
- export const makeShopifyPromotionAttributeValue = () => factories['io.flow.internal.v0.models.shopify_promotion_attribute_value']();
33546
- export const makeShopifyPromotionBehavior = () => factories['io.flow.internal.v0.enums.shopify_promotion_behavior']();
33547
- export const makeShopifyPromotionFixedAmount = () => factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount']();
33548
- export const makeShopifyPromotionForm = () => factories['io.flow.internal.v0.models.shopify_promotion_form']();
33549
- export const makeShopifyPromotionItemEntitlement = () => factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement']();
33550
- export const makeShopifyPromotionItemPrerequisite = () => factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite']();
33551
- export const makeShopifyPromotionMaxAmount = () => factories['io.flow.internal.v0.models.shopify_promotion_max_amount']();
33552
- export const makeShopifyPromotionMaxLimit = () => factories['io.flow.internal.v0.models.shopify_promotion_max_limit']();
33553
- export const makeShopifyPromotionOffer = () => factories['io.flow.internal.v0.models.shopify_promotion_offer']();
33554
- export const makeShopifyPromotionOfferAllocationMethod = () => factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method']();
33555
- export const makeShopifyPromotionOfferDiscount = () => factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount']();
33556
- export const makeShopifyPromotionOfferEntitlement = () => factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement']();
33557
- export const makeShopifyPromotionOfferMax = () => factories['io.flow.internal.v0.unions.shopify_promotion_offer_max']();
33558
- export const makeShopifyPromotionOrderEntitlement = () => factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement']();
33559
- export const makeShopifyPromotionOrderEntitlementComponent = () => factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component']();
33560
- export const makeShopifyPromotionOrderPrerequisite = () => factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite']();
33561
- export const makeShopifyPromotionPercent = () => factories['io.flow.internal.v0.models.shopify_promotion_percent']();
33562
- export const makeShopifyPromotionPrerequisite = () => factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite']();
33563
- export const makeShopifyPromotionRule = () => factories['io.flow.internal.v0.models.shopify_promotion_rule']();
33564
- export const makeShopifyPromotionStatus = () => factories['io.flow.internal.v0.enums.shopify_promotion_status']();
32204
+ export const makeShopifyReportFileDeleted = () => factories['io.flow.internal.v0.models.shopify_report_file_deleted']();
32205
+ export const makeShopifyReportFileUpserted = () => factories['io.flow.internal.v0.models.shopify_report_file_upserted']();
33565
32206
  export const makeShopifyService = () => factories['io.flow.internal.v0.enums.shopify_service']();
33566
- export const makeShopifyShopDeleted = () => factories['io.flow.internal.v0.models.shopify_shop_deleted']();
33567
32207
  export const makeShopifyShopStatistics = () => factories['io.flow.internal.v0.models.shopify_shop_statistics']();
33568
- export const makeShopifyShopUpserted = () => factories['io.flow.internal.v0.models.shopify_shop_upserted']();
33569
32208
  export const makeShopifyStoreDetail = () => factories['io.flow.internal.v0.models.shopify_store_detail']();
33570
32209
  export const makeShopifyStripeEvent = () => factories['io.flow.internal.v0.models.shopify_stripe_event']();
33571
- export const makeShopifyWebhook = () => factories['io.flow.internal.v0.models.shopify_webhook']();
33572
- export const makeShopifyWebhookEvent = () => factories['io.flow.internal.v0.models.shopify_webhook_event']();
33573
- export const makeShopifyWebhookForm = () => factories['io.flow.internal.v0.models.shopify_webhook_form']();
32210
+ export const makeShopperBreakdown = () => factories['io.flow.internal.v0.models.shopper_breakdown']();
33574
32211
  export const makeShopperFees = () => factories['io.flow.internal.v0.models.shopper_fees']();
33575
32212
  export const makeShopperFreight = () => factories['io.flow.internal.v0.models.shopper_freight']();
33576
32213
  export const makeShopperLine = () => factories['io.flow.internal.v0.models.shopper_line']();
@@ -33603,11 +32240,8 @@ export const makeStandaloneAttachment = () => factories['io.flow.internal.v0.mod
33603
32240
  export const makeStandaloneAttachmentDeleted = () => factories['io.flow.internal.v0.models.standalone_attachment_deleted']();
33604
32241
  export const makeStandaloneAttachmentUpserted = () => factories['io.flow.internal.v0.models.standalone_attachment_upserted']();
33605
32242
  export const makeStatementCreationMetadata = () => factories['io.flow.internal.v0.models.statement_creation_metadata']();
33606
- export const makeStatementStatus = () => factories['io.flow.internal.v0.enums.statement_status']();
33607
32243
  export const makeStatementTransferTransactionLocation = () => factories['io.flow.internal.v0.enums.statement_transfer_transaction_location']();
33608
32244
  export const makeStatisticType = () => factories['io.flow.internal.v0.enums.statistic_type']();
33609
- export const makeStoreConnection = () => factories['io.flow.internal.v0.models.store_connection']();
33610
- export const makeStoreConnectionForm = () => factories['io.flow.internal.v0.models.store_connection_form']();
33611
32245
  export const makeStringFeatureDefaultValue = () => factories['io.flow.internal.v0.models.string_feature_default_value']();
33612
32246
  export const makeStringFeatureRule = () => factories['io.flow.internal.v0.models.string_feature_rule']();
33613
32247
  export const makeStringFeatureRuleForm = () => factories['io.flow.internal.v0.models.string_feature_rule_form']();
@@ -33682,6 +32316,7 @@ export const makeTaxTransactionDeleted = () => factories['io.flow.internal.v0.mo
33682
32316
  export const makeTaxTransactionType = () => factories['io.flow.internal.v0.enums.tax_transaction_type']();
33683
32317
  export const makeTaxTransactionUpserted = () => factories['io.flow.internal.v0.models.tax_transaction_upserted']();
33684
32318
  export const makeTaxonomyCategory = () => factories['io.flow.internal.v0.models.taxonomy_category']();
32319
+ export const makeTaxonomyCategoryClassificationAlignment = () => factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment']();
33685
32320
  export const makeTaxonomyCategoryHs6Ref = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref']();
33686
32321
  export const makeTaxonomyCategoryHs6RefDeleted = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted']();
33687
32322
  export const makeTaxonomyCategoryHs6RefUpserted = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted']();
@@ -33776,11 +32411,8 @@ export const makeUserStatusForm = () => factories['io.flow.internal.v0.models.us
33776
32411
  export const makeUserStatusRule = () => factories['io.flow.internal.v0.models.user_status_rule']();
33777
32412
  export const makeUserStatusRuleForm = () => factories['io.flow.internal.v0.models.user_status_rule_form']();
33778
32413
  export const makeUserUpsertedV2 = () => factories['io.flow.internal.v0.models.user_upserted_v2']();
33779
- export const makeV1Checkout = () => factories['io.flow.internal.v0.models.v1_checkout']();
33780
32414
  export const makeValidatedAddress = () => factories['io.flow.internal.v0.models.validated_address']();
33781
32415
  export const makeValidatedShippingData = () => factories['io.flow.internal.v0.models.validated_shipping_data']();
33782
- export const makeValidationCharacterLength = () => factories['io.flow.internal.v0.models.validation_character_length']();
33783
- export const makeValidationRule = () => factories['io.flow.internal.v0.unions.validation_rule']();
33784
32416
  export const makeViesResult = () => factories['io.flow.internal.v0.models.vies_result']();
33785
32417
  export const makeVirtualCardTransaction = () => factories['io.flow.internal.v0.models.virtual_card_transaction']();
33786
32418
  export const makeWasteElectricalAndElectronicEquipmentComplianceData = () => factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data']();