@flowio/api-internal-factories 0.0.113 → 0.0.115

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.
@@ -87,6 +87,7 @@ const factories = {
87
87
  ]),
88
88
 
89
89
  'io.flow.adyen.v0.enums.http_redirect_method': (): io.flow.adyen.v0.enums.HttpRedirectMethod => faker.helpers.arrayElement(['GET', 'POST']),
90
+ 'io.flow.adyen.v0.enums.lifecycle_stage': (): io.flow.adyen.v0.enums.LifecycleStage => faker.helpers.arrayElement(['INQUIRY', 'CHARGEBACK']),
90
91
  'io.flow.adyen.v0.enums.operation': (): io.flow.adyen.v0.enums.Operation => faker.helpers.arrayElement(['cancel', 'capture', 'refund']),
91
92
 
92
93
  'io.flow.adyen.v0.enums.payment_method': (): io.flow.adyen.v0.enums.PaymentMethod => faker.helpers.arrayElement([
@@ -339,6 +340,7 @@ const factories = {
339
340
  paymentMethod: factories['io.flow.adyen.v0.enums.payment_method'](),
340
341
  reason: factories.string(),
341
342
  success: factories.string(),
343
+ lifecycleStage: factories['io.flow.adyen.v0.enums.lifecycle_stage'](),
342
344
  }),
343
345
 
344
346
  'io.flow.adyen.v0.models.modification_request': (): io.flow.adyen.v0.models.ModificationRequest => ({
@@ -1966,6 +1968,7 @@ const factories = {
1966
1968
  'order_contains_gift_card',
1967
1969
  'order_contains_restricted_goods',
1968
1970
  'missing_order_information',
1971
+ 'missing_classification_information',
1969
1972
  'unsupported_payment_information',
1970
1973
  'unsupported_shop_currency',
1971
1974
  'unsupported_free_order',
@@ -2027,6 +2030,7 @@ const factories = {
2027
2030
  next_action_from: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'](),
2028
2031
  order_created_at: factories.date_time_iso_8601(),
2029
2032
  order_updated_at: factories.date_time_iso_8601(),
2033
+ order_edit_summary: factories['io.flow.channel.internal.v0.models.order_edit_summary'](),
2030
2034
  }),
2031
2035
 
2032
2036
  'io.flow.channel.internal.v0.models.channel_order_acceptance_details': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceDetails => ({
@@ -2056,6 +2060,11 @@ const factories = {
2056
2060
  placeholder: factories.string(),
2057
2061
  }),
2058
2062
 
2063
+ 'io.flow.channel.internal.v0.models.order_edit_summary': (): io.flow.channel.internal.v0.models.OrderEditSummary => ({
2064
+ external_order_edit_reference: factories.string(),
2065
+ edited_at: factories.date_time_iso_8601(),
2066
+ }),
2067
+
2059
2068
  'io.flow.channel.v0.enums.channel_currency_capability': (): io.flow.channel.v0.enums.ChannelCurrencyCapability => faker.helpers.arrayElement(['payment_authorizations', 'settlement_currency']),
2060
2069
 
2061
2070
  'io.flow.channel.v0.models.channel': (): io.flow.channel.v0.models.Channel => ({
@@ -2188,7 +2197,7 @@ const factories = {
2188
2197
 
2189
2198
  'io.flow.common.v0.enums.delivered_duty': (): io.flow.common.v0.enums.DeliveredDuty => faker.helpers.arrayElement(['paid', 'unpaid']),
2190
2199
  'io.flow.common.v0.enums.discount_target': (): io.flow.common.v0.enums.DiscountTarget => faker.helpers.arrayElement(['item', 'shipping']),
2191
- 'io.flow.common.v0.enums.entity_identifier_type': (): io.flow.common.v0.enums.EntityIdentifierType => faker.helpers.arrayElement(['ioss', 'voec']),
2200
+ 'io.flow.common.v0.enums.entity_identifier_type': (): io.flow.common.v0.enums.EntityIdentifierType => faker.helpers.arrayElement(['ioss', 'voec', 'zaz']),
2192
2201
  'io.flow.common.v0.enums.environment': (): io.flow.common.v0.enums.Environment => faker.helpers.arrayElement(['sandbox', 'production']),
2193
2202
  'io.flow.common.v0.enums.exception_type': (): io.flow.common.v0.enums.ExceptionType => faker.helpers.arrayElement(['open', 'closed']),
2194
2203
  'io.flow.common.v0.enums.goods_supply': (): io.flow.common.v0.enums.GoodsSupply => faker.helpers.arrayElement(['export', 'intra_community', 'local']),
@@ -2968,6 +2977,7 @@ const factories = {
2968
2977
  'io.flow.experience.v0.enums.experience_country_status': (): io.flow.experience.v0.enums.ExperienceCountryStatus => faker.helpers.arrayElement(['enabled', 'disabled']),
2969
2978
  'io.flow.experience.v0.enums.experience_payment_method_tag': (): io.flow.experience.v0.enums.ExperiencePaymentMethodTag => faker.helpers.arrayElement(['display']),
2970
2979
  'io.flow.experience.v0.enums.experience_status': (): io.flow.experience.v0.enums.ExperienceStatus => faker.helpers.arrayElement(['draft', 'active', 'archiving', 'archived']),
2980
+ 'io.flow.experience.v0.enums.incoterm_configuration': (): io.flow.experience.v0.enums.IncotermConfiguration => faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']),
2971
2981
 
2972
2982
  'io.flow.experience.v0.enums.order_error_code': (): io.flow.experience.v0.enums.OrderErrorCode => faker.helpers.arrayElement([
2973
2983
  'generic_error',
@@ -3559,6 +3569,17 @@ const factories = {
3559
3569
  attributes: objectOf(() => factories.string()),
3560
3570
  }),
3561
3571
 
3572
+ 'io.flow.experience.v0.models.incoterm_includes': (): io.flow.experience.v0.models.IncotermIncludes => ({
3573
+ duties: factories.boolean(),
3574
+ taxes: factories.boolean(),
3575
+ }),
3576
+
3577
+ 'io.flow.experience.v0.models.incoterm_summary': (): io.flow.experience.v0.models.IncotermSummary => ({
3578
+ configuration: factories['io.flow.experience.v0.enums.incoterm_configuration'](),
3579
+ includes: factories['io.flow.experience.v0.models.incoterm_includes'](),
3580
+ reason: factories.string(),
3581
+ }),
3582
+
3562
3583
  'io.flow.experience.v0.models.item_margin': (): io.flow.experience.v0.models.ItemMargin => ({
3563
3584
  id: factories.string(),
3564
3585
  key: factories.string(),
@@ -3667,6 +3688,8 @@ const factories = {
3667
3688
  destination_contact_details: arrayOf(
3668
3689
  () => factories['io.flow.experience.v0.models.destination_contact_detail'](),
3669
3690
  ),
3691
+
3692
+ incoterm_summary: factories['io.flow.experience.v0.models.incoterm_summary'](),
3670
3693
  }),
3671
3694
 
3672
3695
  'io.flow.experience.v0.models.order_address': (): io.flow.experience.v0.models.OrderAddress => ({
@@ -7053,6 +7076,7 @@ const factories = {
7053
7076
  'prr-b186129720f0446eb452a68518437c95',
7054
7077
  ]),
7055
7078
 
7079
+ 'io.flow.internal.v0.enums.bank_account_status': (): io.flow.internal.v0.enums.BankAccountStatus => faker.helpers.arrayElement(['on_hold', 'not_on_hold']),
7056
7080
  'io.flow.internal.v0.enums.bank_payment_promise_completed_method': (): io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod => faker.helpers.arrayElement(['credit', 'time']),
7057
7081
  'io.flow.internal.v0.enums.bank_payment_status_code': (): io.flow.internal.v0.enums.BankPaymentStatusCode => faker.helpers.arrayElement(['scheduled', 'sent', 'failed']),
7058
7082
 
@@ -7190,10 +7214,12 @@ const factories = {
7190
7214
  'negative_balance_number_accounts',
7191
7215
  'negative_balance_number_accounts_with_order_in_past_30_days',
7192
7216
  'negative_balance_number_accounts_without_order_in_past_30_days',
7217
+ 'negative_balance_number_offboarded_accounts',
7193
7218
  'negative_balance_number_active_accounts_with_balance_over_1000',
7194
7219
  'negative_balance_total',
7195
7220
  'negative_balance_total_with_order_in_past_30_days',
7196
7221
  'negative_balance_total_without_order_in_past_30_days',
7222
+ 'negative_balance_total_offboarded_accounts',
7197
7223
  'negative_balance_single_account_max',
7198
7224
  'negative_balance_single_active_account_max',
7199
7225
  'negative_balance_fee_total',
@@ -7212,6 +7238,31 @@ const factories = {
7212
7238
  'negative_balance_failed_count',
7213
7239
  'negative_balance_failed_total',
7214
7240
  'negative_debit_success_rate',
7241
+ 'current_attempt_merchant_count',
7242
+ 'current_attempt_amount_total',
7243
+ 'current_attempt_failed_merchant_count',
7244
+ 'current_attempt_failed_amount_total',
7245
+ 'current_attempt_success_ratio',
7246
+ 'first_attempt_merchant_count',
7247
+ 'first_attempt_amount_total',
7248
+ 'first_attempt_failed_merchant_count',
7249
+ 'first_attempt_failed_amount_total',
7250
+ 'first_attempt_success_ratio',
7251
+ 'second_attempt_merchant_count',
7252
+ 'second_attempt_amount_total',
7253
+ 'second_attempt_failed_merchant_count',
7254
+ 'second_attempt_failed_amount_total',
7255
+ 'second_attempt_success_ratio',
7256
+ 'third_attempt_merchant_count',
7257
+ 'third_attempt_amount_total',
7258
+ 'third_attempt_failed_merchant_count',
7259
+ 'third_attempt_failed_amount_total',
7260
+ 'third_attempt_success_ratio',
7261
+ 'fourth_plus_attempt_merchant_count',
7262
+ 'fourth_plus_attempt_amount_total',
7263
+ 'fourth_plus_attempt_failed_merchant_count',
7264
+ 'fourth_plus_attempt_failed_amount_total',
7265
+ 'fourth_plus_attempt_success_ratio',
7215
7266
  ]),
7216
7267
 
7217
7268
  'io.flow.internal.v0.enums.billing_statement_attachment_key': (): io.flow.internal.v0.enums.BillingStatementAttachmentKey => faker.helpers.arrayElement([
@@ -7260,19 +7311,11 @@ const factories = {
7260
7311
  'trueup',
7261
7312
  'carrier_charge',
7262
7313
  'tax_refund',
7314
+ 'duty_refund',
7263
7315
  ]),
7264
7316
 
7265
7317
  'io.flow.internal.v0.enums.browser_bundle_error_code': (): io.flow.internal.v0.enums.BrowserBundleErrorCode => faker.helpers.arrayElement(['generic_error', 'country_invalid']),
7266
-
7267
- 'io.flow.internal.v0.enums.calculator_engine': (): io.flow.internal.v0.enums.CalculatorEngine => faker.helpers.arrayElement([
7268
- 'flow_rate_and_rule',
7269
- 'dtce',
7270
- 'dtce_two_calls',
7271
- 'dtce_with_deminimis',
7272
- 'dtce_merged_with_tax',
7273
- 'dtce_with_inclusive_pricing',
7274
- ]),
7275
-
7318
+ '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']),
7276
7319
  'io.flow.internal.v0.enums.carrier_charge_transaction_type': (): io.flow.internal.v0.enums.CarrierChargeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']),
7277
7320
  'io.flow.internal.v0.enums.carrier_charge_type': (): io.flow.internal.v0.enums.CarrierChargeType => faker.helpers.arrayElement(['label', 'tax', 'other']),
7278
7321
  'io.flow.internal.v0.enums.carrier_file_type': (): io.flow.internal.v0.enums.CarrierFileType => faker.helpers.arrayElement(['freight', 'tax']),
@@ -7308,6 +7351,7 @@ const factories = {
7308
7351
  'order_contains_gift_card',
7309
7352
  'order_contains_restricted_goods',
7310
7353
  'missing_order_information',
7354
+ 'missing_classification_information',
7311
7355
  'unsupported_payment_information',
7312
7356
  'unsupported_shop_currency',
7313
7357
  'unsupported_free_order',
@@ -7380,18 +7424,6 @@ const factories = {
7380
7424
  'io.flow.internal.v0.enums.content_status': (): io.flow.internal.v0.enums.ContentStatus => faker.helpers.arrayElement(['draft', 'live', 'archived']),
7381
7425
  'io.flow.internal.v0.enums.content_type': (): io.flow.internal.v0.enums.ContentType => faker.helpers.arrayElement(['text', 'html']),
7382
7426
  'io.flow.internal.v0.enums.content_type_cast': (): io.flow.internal.v0.enums.ContentTypeCast => faker.helpers.arrayElement(['markdown_to_html', 'markdown_to_text']),
7383
-
7384
- 'io.flow.internal.v0.enums.cost_type': (): io.flow.internal.v0.enums.CostType => faker.helpers.arrayElement([
7385
- 'payment_processing',
7386
- 'fx',
7387
- 'negative_balance',
7388
- 'solution',
7389
- 'hosting',
7390
- 'duty_guarantee',
7391
- 'transfer',
7392
- 'fraud',
7393
- ]),
7394
-
7395
7427
  'io.flow.internal.v0.enums.crossdock_tracking_status': (): io.flow.internal.v0.enums.CrossdockTrackingStatus => faker.helpers.arrayElement(['notified', 'received', 'shipped']),
7396
7428
  'io.flow.internal.v0.enums.debug_accounting_transaction_type': (): io.flow.internal.v0.enums.DebugAccountingTransactionType => faker.helpers.arrayElement(['fulfillment']),
7397
7429
  'io.flow.internal.v0.enums.delivered_duty_option_message_type': (): io.flow.internal.v0.enums.DeliveredDutyOptionMessageType => faker.helpers.arrayElement(['warning', 'notification']),
@@ -7431,7 +7463,6 @@ const factories = {
7431
7463
 
7432
7464
  'io.flow.internal.v0.enums.duty_simple_expression_type': (): io.flow.internal.v0.enums.DutySimpleExpressionType => faker.helpers.arrayElement(['free', 'percent', 'per_uom', 'flat']),
7433
7465
  'io.flow.internal.v0.enums.duty_transaction_type': (): io.flow.internal.v0.enums.DutyTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'duty']),
7434
- 'io.flow.internal.v0.enums.eldar_item_type': (): io.flow.internal.v0.enums.EldarItemType => faker.helpers.arrayElement(['digital', 'physical']),
7435
7466
  'io.flow.internal.v0.enums.empty_attribute': (): io.flow.internal.v0.enums.EmptyAttribute => faker.helpers.arrayElement(['irrelevant']),
7436
7467
  'io.flow.internal.v0.enums.erp_file_type': (): io.flow.internal.v0.enums.ErpFileType => faker.helpers.arrayElement(['vendor']),
7437
7468
 
@@ -7448,8 +7479,6 @@ const factories = {
7448
7479
  'adyen_refund_upserted',
7449
7480
  'adyen_dispute_upserted',
7450
7481
  'adyen_dispute_deleted',
7451
- 'index_assignment_upserted',
7452
- 'index_assignment_deleted',
7453
7482
  'fulfillment_upserted',
7454
7483
  'fulfillment_deleted',
7455
7484
  'merchant_upserted',
@@ -7550,13 +7579,6 @@ const factories = {
7550
7579
  'dispute_upserted',
7551
7580
  'dispute_deleted',
7552
7581
  'duty_rates_published_v2',
7553
- 'duty_rate_request',
7554
- 'duty_rate_bulk_request',
7555
- 'duty_raw_upserted',
7556
- 'duty_raw_bulk_upserted',
7557
- 'duty_rate_upserted',
7558
- 'duty_rate_response',
7559
- 'duty_rate_bulk_response',
7560
7582
  'item_sales_margin_deleted',
7561
7583
  'item_sales_margin_upserted',
7562
7584
  'order_attribute_deleted',
@@ -7628,7 +7650,6 @@ const factories = {
7628
7650
  'harmonization_codes_import',
7629
7651
  'item_classification_created',
7630
7652
  'harmonize_fully_request_v2',
7631
- 'hybris_catalog_items_import_request',
7632
7653
  'import_completed',
7633
7654
  'import_failed',
7634
7655
  'time_to_classify_upserted',
@@ -7692,6 +7713,8 @@ const factories = {
7692
7713
  'partner_organization_settings_deleted',
7693
7714
  'unassigned_merchant_guid_upserted',
7694
7715
  'unassigned_merchant_guid_deleted',
7716
+ 'partner_tracking_subscription_upserted',
7717
+ 'partner_tracking_subscription_deleted',
7695
7718
  'internal_authorization_upserted',
7696
7719
  'internal_authorization_deleted',
7697
7720
  'afterpay_authorization_upserted',
@@ -7718,7 +7741,8 @@ const factories = {
7718
7741
  'paypal_execution_upserted',
7719
7742
  'paypal_refund_deleted',
7720
7743
  'paypal_refund_upserted',
7721
- 'pricing_indicator',
7744
+ 'paypal_dispute_upserted',
7745
+ 'paypal_dispute_deleted',
7722
7746
  'product_restriction_rule_decision_upserted',
7723
7747
  'product_restriction_rule_decision_deleted',
7724
7748
  'order_rates_published_v3',
@@ -7743,6 +7767,8 @@ const factories = {
7743
7767
  'organization_restriction_status_deleted',
7744
7768
  'screening_status_change_upserted',
7745
7769
  'screening_status_change_deleted',
7770
+ 'restrictions_dailyops_upserted',
7771
+ 'restrictions_dailyops_deleted',
7746
7772
  'shopify_shop_upserted',
7747
7773
  'shopify_shop_deleted',
7748
7774
  'shopify_experience_short_id_upserted',
@@ -7765,6 +7791,10 @@ const factories = {
7765
7791
  'order_tax_and_duty_inclusivity_setting_deleted',
7766
7792
  'shopify_product_bundle_upserted',
7767
7793
  'shopify_product_bundle_deleted',
7794
+ 'shopify_markets_order_edit_summary_published',
7795
+ 'shopify_incoterm_summary_error_published',
7796
+ 'shopify_markets_best_selling_product_upserted',
7797
+ 'shopify_markets_best_selling_product_deleted',
7768
7798
  'shopify_monitoring_order_monitor_event_upserted',
7769
7799
  'shopify_monitoring_order_monitor_event_deleted',
7770
7800
  'shopify_order_fulfillments_snapshot_upserted',
@@ -7781,28 +7811,6 @@ const factories = {
7781
7811
  'stripe_dispute_deleted',
7782
7812
  'liability_remittance_plan_upserted',
7783
7813
  'liability_remittance_plan_deleted',
7784
- 'svitlana_item_upserted',
7785
- 'svitlana_item_deleted',
7786
- 'colm_item_upserted',
7787
- 'colm_item_deleted',
7788
- 'eldar_item_upserted',
7789
- 'eldar_item_deleted',
7790
- 'harinath_item_upserted',
7791
- 'harinath_item_deleted',
7792
- 'konstantin_item_upserted',
7793
- 'konstantin_item_deleted',
7794
- 'matias_item_upserted',
7795
- 'matias_item_deleted',
7796
- 'michaelyan_item_upserted',
7797
- 'michaelyan_item_deleted',
7798
- 'miljenko_item_upserted',
7799
- 'miljenko_item_deleted',
7800
- 'shruti_demo_item_upserted',
7801
- 'shruti_demo_item_deleted',
7802
- 'tam_item_upserted',
7803
- 'tam_item_deleted',
7804
- 'thiago_item_upserted',
7805
- 'thiago_item_deleted',
7806
7814
  'tracking_processing_error_upserted',
7807
7815
  'tracking_processing_error_deleted',
7808
7816
  'tracking_label_event_upserted_v2',
@@ -7815,10 +7823,12 @@ const factories = {
7815
7823
  'tracking_assurance_analysis_deleted',
7816
7824
  'tracking_assurance_job_upserted',
7817
7825
  'tracking_assurance_job_deleted',
7826
+ 'tracking_subscription_upserted',
7827
+ 'tracking_subscription_deleted',
7828
+ 'tracking_carrier_return_label_upserted',
7829
+ 'tracking_carrier_return_label_deleted',
7818
7830
  'tracking_label_dimensions_upserted',
7819
7831
  'tracking_label_dimensions_deleted',
7820
- 'tracking_request_upserted',
7821
- 'tracking_response_upserted',
7822
7832
  'user_upserted_v2',
7823
7833
  'user_deleted_v2',
7824
7834
  ]),
@@ -7861,11 +7871,8 @@ const factories = {
7861
7871
  'sync_product_catalog',
7862
7872
  ]),
7863
7873
 
7864
- 'io.flow.internal.v0.enums.harinath_item_type': (): io.flow.internal.v0.enums.HarinathItemType => faker.helpers.arrayElement(['digital', 'physical']),
7865
7874
  'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'legacy_model', 'enterprise_model']),
7866
7875
  'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
7867
- 'io.flow.internal.v0.enums.inventory_check_service': (): io.flow.internal.v0.enums.InventoryCheckService => faker.helpers.arrayElement(['sfcc', 'gymboree']),
7868
- 'io.flow.internal.v0.enums.inventory_reservation': (): io.flow.internal.v0.enums.InventoryReservation => faker.helpers.arrayElement(['synchronous-on-submit']),
7869
7876
  'io.flow.internal.v0.enums.item_classification_action': (): io.flow.internal.v0.enums.ItemClassificationAction => faker.helpers.arrayElement(['ACCEPT', 'MANUAL', 'REJECT']),
7870
7877
 
7871
7878
  'io.flow.internal.v0.enums.item_classification_status': (): io.flow.internal.v0.enums.ItemClassificationStatus => faker.helpers.arrayElement([
@@ -7887,7 +7894,6 @@ const factories = {
7887
7894
  'io.flow.internal.v0.enums.item_quantity_action': (): io.flow.internal.v0.enums.ItemQuantityAction => faker.helpers.arrayElement(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']),
7888
7895
  'io.flow.internal.v0.enums.item_type': (): io.flow.internal.v0.enums.ItemType => faker.helpers.arrayElement(['standard', 'multi_product']),
7889
7896
  'io.flow.internal.v0.enums.keyword_type': (): io.flow.internal.v0.enums.KeywordType => faker.helpers.arrayElement(['positive', 'negative']),
7890
- 'io.flow.internal.v0.enums.konstantin_item_type': (): io.flow.internal.v0.enums.KonstantinItemType => faker.helpers.arrayElement(['physical', 'digital']),
7891
7897
  'io.flow.internal.v0.enums.label_billing_strategy': (): io.flow.internal.v0.enums.LabelBillingStrategy => faker.helpers.arrayElement(['quote', 'carrier']),
7892
7898
  'io.flow.internal.v0.enums.label_cancellation_error_code': (): io.flow.internal.v0.enums.LabelCancellationErrorCode => faker.helpers.arrayElement(['already_used', 'carrier_unsupported']),
7893
7899
  'io.flow.internal.v0.enums.label_creation_status': (): io.flow.internal.v0.enums.LabelCreationStatus => faker.helpers.arrayElement(['success', 'error', 'pending', 'cancelled']),
@@ -7930,6 +7936,7 @@ const factories = {
7930
7936
  'carrier_credit',
7931
7937
  'negative_balance_guarantee',
7932
7938
  'bank_payment_failure',
7939
+ 'non_fraud_chargeback',
7933
7940
  ]),
7934
7941
 
7935
7942
  'io.flow.internal.v0.enums.marketing_gateway_account_connection_status': (): io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus => faker.helpers.arrayElement([
@@ -7984,17 +7991,6 @@ const factories = {
7984
7991
  ['google', 'facebook_primary', 'facebook_country_override', 'supplemental'],
7985
7992
  ),
7986
7993
 
7987
- 'io.flow.internal.v0.enums.matias_item_type': (): io.flow.internal.v0.enums.MatiasItemType => faker.helpers.arrayElement(['physical', 'digital']),
7988
-
7989
- 'io.flow.internal.v0.enums.merchant_cohort': (): io.flow.internal.v0.enums.MerchantCohort => faker.helpers.arrayElement([
7990
- 'channel_merchant_pre_cutoff',
7991
- 'channel_merchant_post_cutoff',
7992
- 'global_e_merchant_pre_cutoff',
7993
- 'global_e_merchant_post_cutoff',
7994
- ]),
7995
-
7996
- 'io.flow.internal.v0.enums.michaelyan_item_type': (): io.flow.internal.v0.enums.MichaelyanItemType => faker.helpers.arrayElement(['physical', 'digital']),
7997
- 'io.flow.internal.v0.enums.miljenko_item_type': (): io.flow.internal.v0.enums.MiljenkoItemType => faker.helpers.arrayElement(['physical', 'digital']),
7998
7994
  'io.flow.internal.v0.enums.mixed_bag_weight': (): io.flow.internal.v0.enums.MixedBagWeight => faker.helpers.arrayElement(['0', '1', '2']),
7999
7995
 
8000
7996
  'io.flow.internal.v0.enums.nature_of_sale': (): io.flow.internal.v0.enums.NatureOfSale => faker.helpers.arrayElement([
@@ -8094,7 +8090,6 @@ const factories = {
8094
8090
  'io.flow.internal.v0.enums.organization_restriction_screening_status': (): io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus => faker.helpers.arrayElement(['in_review', 'fully_reviewed', 'rejected', 'unscreened']),
8095
8091
  'io.flow.internal.v0.enums.output_style': (): io.flow.internal.v0.enums.OutputStyle => faker.helpers.arrayElement(['flow', 'shopify_p1']),
8096
8092
  'io.flow.internal.v0.enums.owner': (): io.flow.internal.v0.enums.Owner => faker.helpers.arrayElement(['flow', 'organization']),
8097
- 'io.flow.internal.v0.enums.party': (): io.flow.internal.v0.enums.Party => faker.helpers.arrayElement(['merchant', 'channel_partner', 'global_e']),
8098
8093
 
8099
8094
  'io.flow.internal.v0.enums.payment_summary_status': (): io.flow.internal.v0.enums.PaymentSummaryStatus => faker.helpers.arrayElement([
8100
8095
  'authorized',
@@ -8113,8 +8108,6 @@ const factories = {
8113
8108
  'io.flow.internal.v0.enums.payment_term': (): io.flow.internal.v0.enums.PaymentTerm => faker.helpers.arrayElement(['net7', 'net15', 'net30']),
8114
8109
  'io.flow.internal.v0.enums.preferred_billing_schedule': (): io.flow.internal.v0.enums.PreferredBillingSchedule => faker.helpers.arrayElement(['monthly', 'bi-monthly']),
8115
8110
  'io.flow.internal.v0.enums.price_selector': (): io.flow.internal.v0.enums.PriceSelector => faker.helpers.arrayElement(['minimum', 'maximum']),
8116
- 'io.flow.internal.v0.enums.pricing_indicator_status': (): io.flow.internal.v0.enums.PricingIndicatorStatus => faker.helpers.arrayElement(['complete', 'in_progress']),
8117
- 'io.flow.internal.v0.enums.principal_type': (): io.flow.internal.v0.enums.PrincipalType => faker.helpers.arrayElement(['total_order_value', 'product_order_value', 'label_value']),
8118
8111
 
8119
8112
  'io.flow.internal.v0.enums.processing_transaction_type': (): io.flow.internal.v0.enums.ProcessingTransactionType => faker.helpers.arrayElement([
8120
8113
  'adjustment',
@@ -8138,16 +8131,6 @@ const factories = {
8138
8131
 
8139
8132
  'io.flow.internal.v0.enums.processor_entity_status': (): io.flow.internal.v0.enums.ProcessorEntityStatus => faker.helpers.arrayElement(['active', 'draft', 'archived']),
8140
8133
  'io.flow.internal.v0.enums.product_status': (): io.flow.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft']),
8141
-
8142
- 'io.flow.internal.v0.enums.profit_stream_key': (): io.flow.internal.v0.enums.ProfitStreamKey => faker.helpers.arrayElement([
8143
- 'pre_profit_share',
8144
- 'channel_pre_cutoff',
8145
- 'channel_post_cutoff',
8146
- 'global_e_pre_cutoff',
8147
- 'global_e_post_cutoff',
8148
- 'duty_assurance',
8149
- ]),
8150
-
8151
8134
  'io.flow.internal.v0.enums.prompt_action': (): io.flow.internal.v0.enums.PromptAction => faker.helpers.arrayElement(['prompt_displayed', 'consent_granted', 'consent_denied']),
8152
8135
  'io.flow.internal.v0.enums.prompt_checkout_display_position': (): io.flow.internal.v0.enums.PromptCheckoutDisplayPosition => faker.helpers.arrayElement(['email', 'submission']),
8153
8136
  'io.flow.internal.v0.enums.prompt_options': (): io.flow.internal.v0.enums.PromptOptions => faker.helpers.arrayElement(['notice_only', 'require_consent', 'consent_by_default']),
@@ -8191,6 +8174,7 @@ const factories = {
8191
8174
  'payments',
8192
8175
  'reconcile_not_recorded',
8193
8176
  'products_record',
8177
+ 'disputes',
8194
8178
  ]),
8195
8179
 
8196
8180
  'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
@@ -8207,14 +8191,12 @@ const factories = {
8207
8191
  'io.flow.internal.v0.enums.restriction_decision': (): io.flow.internal.v0.enums.RestrictionDecision => faker.helpers.arrayElement(['accept', 'escalate', 'reject', 'review']),
8208
8192
  'io.flow.internal.v0.enums.restriction_status': (): io.flow.internal.v0.enums.RestrictionStatus => faker.helpers.arrayElement(['pending', 'in_review', 'escalated', 'accepted', 'restricted']),
8209
8193
  'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
8210
- 'io.flow.internal.v0.enums.revenue_type': (): io.flow.internal.v0.enums.RevenueType => faker.helpers.arrayElement(['mor', 'fx', 'duty_assurance']),
8211
8194
  'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
8212
8195
  'io.flow.internal.v0.enums.risk_evaluation': (): io.flow.internal.v0.enums.RiskEvaluation => faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']),
8213
- 'io.flow.internal.v0.enums.serial_reservation_error': (): io.flow.internal.v0.enums.SerialReservationError => faker.helpers.arrayElement(['duration_too_long', 'items_not_found', 'reservation_expired']),
8214
- 'io.flow.internal.v0.enums.service_name': (): io.flow.internal.v0.enums.ServiceName => faker.helpers.arrayElement(['catalog', 'demandware', 'metric']),
8215
8196
  'io.flow.internal.v0.enums.session_country_status': (): io.flow.internal.v0.enums.SessionCountryStatus => faker.helpers.arrayElement(['enabled', 'disabled']),
8216
8197
  'io.flow.internal.v0.enums.shopify_check_inventory_error_code': (): io.flow.internal.v0.enums.ShopifyCheckInventoryErrorCode => faker.helpers.arrayElement(['inventory_out_of_stock']),
8217
8198
  'io.flow.internal.v0.enums.shopify_grant_status': (): io.flow.internal.v0.enums.ShopifyGrantStatus => faker.helpers.arrayElement(['pass', 'fail']),
8199
+ 'io.flow.internal.v0.enums.shopify_incoterm_configuration': (): io.flow.internal.v0.enums.ShopifyIncotermConfiguration => faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']),
8218
8200
 
8219
8201
  'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
8220
8202
  'aerosols',
@@ -8278,7 +8260,6 @@ const factories = {
8278
8260
  'io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component': (): io.flow.internal.v0.enums.ShopifyPromotionOrderEntitlementComponent => faker.helpers.arrayElement(['subtotal', 'shipping', 'vat', 'duty']),
8279
8261
  'io.flow.internal.v0.enums.shopify_promotion_status': (): io.flow.internal.v0.enums.ShopifyPromotionStatus => faker.helpers.arrayElement(['active', 'inactive']),
8280
8262
  'io.flow.internal.v0.enums.shopify_service': (): io.flow.internal.v0.enums.ShopifyService => faker.helpers.arrayElement(['payment', 'duty_tax_calculator']),
8281
- 'io.flow.internal.v0.enums.shruti_demo_type': (): io.flow.internal.v0.enums.ShrutiDemoType => faker.helpers.arrayElement(['digital', 'physical']),
8282
8263
  'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
8283
8264
  'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
8284
8265
  'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task', 'invariant']),
@@ -8303,8 +8284,6 @@ const factories = {
8303
8284
 
8304
8285
  'io.flow.internal.v0.enums.subscription_frequency': (): io.flow.internal.v0.enums.SubscriptionFrequency => faker.helpers.arrayElement(['yearly', 'monthly']),
8305
8286
  'io.flow.internal.v0.enums.suggestion_action': (): io.flow.internal.v0.enums.SuggestionAction => faker.helpers.arrayElement(['accept', 'validate', 'review']),
8306
- 'io.flow.internal.v0.enums.svitlana_type': (): io.flow.internal.v0.enums.SvitlanaType => faker.helpers.arrayElement(['physical', 'digital']),
8307
- 'io.flow.internal.v0.enums.tam_item_type': (): io.flow.internal.v0.enums.TamItemType => faker.helpers.arrayElement(['physical', 'digital']),
8308
8287
  'io.flow.internal.v0.enums.tariff_eligibility_type': (): io.flow.internal.v0.enums.TariffEligibilityType => faker.helpers.arrayElement(['rex']),
8309
8288
 
8310
8289
  'io.flow.internal.v0.enums.task_processor_key': (): io.flow.internal.v0.enums.TaskProcessorKey => faker.helpers.arrayElement([
@@ -8327,7 +8306,6 @@ const factories = {
8327
8306
  'io.flow.internal.v0.enums.tax_calculation_error_code': (): io.flow.internal.v0.enums.TaxCalculationErrorCode => faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']),
8328
8307
  'io.flow.internal.v0.enums.tax_party': (): io.flow.internal.v0.enums.TaxParty => faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']),
8329
8308
  'io.flow.internal.v0.enums.tax_transaction_type': (): io.flow.internal.v0.enums.TaxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'tax', 'refund']),
8330
- 'io.flow.internal.v0.enums.thiago_item_type': (): io.flow.internal.v0.enums.ThiagoItemType => faker.helpers.arrayElement(['digital', 'physical']),
8331
8309
  'io.flow.internal.v0.enums.tracking_integration_type': (): io.flow.internal.v0.enums.TrackingIntegrationType => faker.helpers.arrayElement(['api', 'bulk', 'aftership']),
8332
8310
  'io.flow.internal.v0.enums.tracking_label_dimensions_source': (): io.flow.internal.v0.enums.TrackingLabelDimensionsSource => faker.helpers.arrayElement(['aftership', 'carrier_api']),
8333
8311
 
@@ -8510,8 +8488,6 @@ const factories = {
8510
8488
  enable_fee_reversals: factories.boolean(),
8511
8489
  record_reason_for_transactions_pending_payout: factories.boolean(),
8512
8490
  enable_negative_debits: factories.boolean(),
8513
- setup_completed_at: factories.date_time_iso_8601(),
8514
- cohort: factories['io.flow.internal.v0.enums.merchant_cohort'](),
8515
8491
  }),
8516
8492
 
8517
8493
  'io.flow.internal.v0.models.account_settings_deleted': (): io.flow.internal.v0.models.AccountSettingsDeleted => ({
@@ -8537,6 +8513,11 @@ const factories = {
8537
8513
  transfers: factories['io.flow.common.v0.models.price'](),
8538
8514
  balance: factories['io.flow.common.v0.models.price'](),
8539
8515
  pending: factories['io.flow.common.v0.models.price'](),
8516
+ additional_balances: factories['io.flow.internal.v0.models.account_statistics_additional_balances'](),
8517
+ }),
8518
+
8519
+ 'io.flow.internal.v0.models.account_statistics_additional_balances': (): io.flow.internal.v0.models.AccountStatisticsAdditionalBalances => ({
8520
+ on_hold: factories['io.flow.common.v0.models.price'](),
8540
8521
  }),
8541
8522
 
8542
8523
  'io.flow.internal.v0.models.account_summary': (): io.flow.internal.v0.models.AccountSummary => ({
@@ -9097,12 +9078,6 @@ const factories = {
9097
9078
  count: factories.long(),
9098
9079
  }),
9099
9080
 
9100
- 'io.flow.internal.v0.models.algolia_index_assignment': (): io.flow.internal.v0.models.AlgoliaIndexAssignment => ({
9101
- id: factories.string(),
9102
- name: factories.string(),
9103
- application_id: factories.string(),
9104
- }),
9105
-
9106
9081
  'io.flow.internal.v0.models.all_items_export': (): io.flow.internal.v0.models.AllItemsExport => ({
9107
9082
  discriminator: 'all_items_export',
9108
9083
  event_id: factories.string(),
@@ -9229,6 +9204,13 @@ const factories = {
9229
9204
  action: factories['io.flow.internal.v0.enums.restriction_status'](),
9230
9205
  }),
9231
9206
 
9207
+ 'io.flow.internal.v0.models.bank_account': (): io.flow.internal.v0.models.BankAccount => ({
9208
+ status: factories['io.flow.internal.v0.enums.bank_account_status'](),
9209
+ hold_created_at: factories.date_time_iso_8601(),
9210
+ updated_at: factories.date_time_iso_8601(),
9211
+ last4: factories.string(),
9212
+ }),
9213
+
9232
9214
  'io.flow.internal.v0.models.bank_account_reference': (): io.flow.internal.v0.models.BankAccountReference => ({
9233
9215
  id: factories.string(),
9234
9216
  }),
@@ -9785,7 +9767,7 @@ const factories = {
9785
9767
 
9786
9768
  'io.flow.internal.v0.models.call_record': (): io.flow.internal.v0.models.CallRecord => ({
9787
9769
  id: factories.string(),
9788
- request_body: factories.json(),
9770
+ request_body: factories.string(),
9789
9771
  }),
9790
9772
 
9791
9773
  'io.flow.internal.v0.models.carrier_account': (): io.flow.internal.v0.models.CarrierAccount => ({
@@ -10276,6 +10258,7 @@ const factories = {
10276
10258
  next_action_from: factories['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'](),
10277
10259
  order_created_at: factories.date_time_iso_8601(),
10278
10260
  order_updated_at: factories.date_time_iso_8601(),
10261
+ order_edit_summary: factories['io.flow.internal.v0.models.order_edit_summary'](),
10279
10262
  }),
10280
10263
 
10281
10264
  'io.flow.internal.v0.models.channel_order_acceptance_deleted': (): io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted => ({
@@ -10975,13 +10958,6 @@ const factories = {
10975
10958
  added_on: factories.date_iso_8601(),
10976
10959
  }),
10977
10960
 
10978
- 'io.flow.internal.v0.models.colm_item_deleted': (): io.flow.internal.v0.models.ColmItemDeleted => ({
10979
- discriminator: 'colm_item_deleted',
10980
- event_id: factories.string(),
10981
- timestamp: factories.date_time_iso_8601(),
10982
- id: factories.string(),
10983
- }),
10984
-
10985
10961
  'io.flow.internal.v0.models.colm_item_form': (): io.flow.internal.v0.models.ColmItemForm => ({
10986
10962
  number: factories.string(),
10987
10963
  amount: factories['io.flow.common.v0.models.price'](),
@@ -10990,13 +10966,6 @@ const factories = {
10990
10966
  added_on: factories.date_iso_8601(),
10991
10967
  }),
10992
10968
 
10993
- 'io.flow.internal.v0.models.colm_item_upserted': (): io.flow.internal.v0.models.ColmItemUpserted => ({
10994
- discriminator: 'colm_item_upserted',
10995
- event_id: factories.string(),
10996
- timestamp: factories.date_time_iso_8601(),
10997
- item: factories['io.flow.internal.v0.models.colm_item'](),
10998
- }),
10999
-
11000
10969
  'io.flow.internal.v0.models.commercial_invoice_comparison': (): io.flow.internal.v0.models.CommercialInvoiceComparison => ({
11001
10970
  urls: arrayOf(() => factories.string()),
11002
10971
  }),
@@ -11141,17 +11110,6 @@ const factories = {
11141
11110
  description: factories.string(),
11142
11111
  }),
11143
11112
 
11144
- 'io.flow.internal.v0.models.cost': (): io.flow.internal.v0.models.Cost => ({
11145
- source: factories['io.flow.internal.v0.models.cost_rule'](),
11146
- amount: factories.decimal(),
11147
- }),
11148
-
11149
- 'io.flow.internal.v0.models.cost_rule': (): io.flow.internal.v0.models.CostRule => ({
11150
- type: factories['io.flow.internal.v0.enums.cost_type'](),
11151
- rule: factories['io.flow.internal.v0.unions.money_rule'](),
11152
- bearer: factories['io.flow.internal.v0.enums.party'](),
11153
- }),
11154
-
11155
11113
  'io.flow.internal.v0.models.country_picker_country': (): io.flow.internal.v0.models.CountryPickerCountry => ({
11156
11114
  iso_3166_2: factories.string(),
11157
11115
  iso_3166_3: factories.string(),
@@ -11404,6 +11362,11 @@ const factories = {
11404
11362
  transaction_id: factories.string(),
11405
11363
  }),
11406
11364
 
11365
+ 'io.flow.internal.v0.models.debug_banking_details': (): io.flow.internal.v0.models.DebugBankingDetails => ({
11366
+ merchant: factories['io.flow.internal.v0.models.merchant_details'](),
11367
+ account: factories['io.flow.internal.v0.models.bank_account'](),
11368
+ }),
11369
+
11407
11370
  'io.flow.internal.v0.models.debug_details': (): io.flow.internal.v0.models.DebugDetails => ({
11408
11371
  labels: arrayOf(() => factories['io.flow.internal.v0.models.debug_label']()),
11409
11372
 
@@ -11455,6 +11418,7 @@ const factories = {
11455
11418
  debug: factories['io.flow.internal.v0.models.debug_details'](),
11456
11419
  transactions: arrayOf(() => factories['io.flow.billing.v0.models.transaction']()),
11457
11420
  reporting: factories['io.flow.internal.v0.models.reporting_details'](),
11421
+ banking: factories['io.flow.internal.v0.models.debug_banking_details'](),
11458
11422
  }),
11459
11423
 
11460
11424
  'io.flow.internal.v0.models.debug_order_transaction_form': (): io.flow.internal.v0.models.DebugOrderTransactionForm => ({
@@ -11599,13 +11563,6 @@ const factories = {
11599
11563
  destination: factories['io.flow.common.v0.models.address'](),
11600
11564
  }),
11601
11565
 
11602
- 'io.flow.internal.v0.models.details': (): io.flow.internal.v0.models.Details => ({
11603
- catalog_item: factories['io.flow.common.v0.models.catalog_item_summary'](),
11604
- experience: factories['io.flow.common.v0.models.experience_summary'](),
11605
- upserted_at: factories.date_time_iso_8601(),
11606
- time_elapsed_since_upserted: factories.long(),
11607
- }),
11608
-
11609
11566
  'io.flow.internal.v0.models.dhl': (): io.flow.internal.v0.models.Dhl => ({
11610
11567
  discriminator: 'dhl',
11611
11568
  export_account_number: factories.string(),
@@ -11689,8 +11646,10 @@ const factories = {
11689
11646
  billable: factories['io.flow.internal.v0.enums.dispute_billable'](),
11690
11647
  defense_outcome: factories['io.flow.internal.v0.enums.dispute_defense_outcome'](),
11691
11648
  details: factories['io.flow.internal.v0.unions.dispute_details'](),
11649
+ payment_method: factories['io.flow.reference.v0.models.payment_method'](),
11692
11650
  issued_at: factories.date_time_iso_8601(),
11693
11651
  expires_at: factories.date_time_iso_8601(),
11652
+ defended_at: factories.date_time_iso_8601(),
11694
11653
  created_at: factories.date_time_iso_8601(),
11695
11654
  updated_at: factories.date_time_iso_8601(),
11696
11655
  }),
@@ -11771,6 +11730,18 @@ const factories = {
11771
11730
  status: factories['io.flow.internal.v0.enums.dispute_status'](),
11772
11731
  }),
11773
11732
 
11733
+ 'io.flow.internal.v0.models.dispute_record': (): io.flow.internal.v0.models.DisputeRecord => ({
11734
+ id: factories.string(),
11735
+ organization: factories['io.flow.internal.v0.models.reporting_organization_summary'](),
11736
+ authorization: factories['io.flow.internal.v0.models.reporting_authorization_reference'](),
11737
+ order: factories['io.flow.internal.v0.models.reporting_order_summary'](),
11738
+ status: factories['io.flow.internal.v0.enums.dispute_status'](),
11739
+ processor: factories['io.flow.internal.v0.enums.dispute_processor'](),
11740
+ reporting_category: factories['io.flow.internal.v0.enums.dispute_reporting_category'](),
11741
+ defense_outcome: factories['io.flow.internal.v0.enums.dispute_defense_outcome'](),
11742
+ chargeback_amount: factories['io.flow.common.v0.models.money_with_base'](),
11743
+ }),
11744
+
11774
11745
  'io.flow.internal.v0.models.dispute_status_form': (): io.flow.internal.v0.models.DisputeStatusForm => ({
11775
11746
  status: factories['io.flow.internal.v0.enums.dispute_status'](),
11776
11747
  }),
@@ -11843,65 +11814,17 @@ const factories = {
11843
11814
  created_at: factories.date_time_iso_8601(),
11844
11815
  }),
11845
11816
 
11846
- 'io.flow.internal.v0.models.duty_rate_bulk_request': (): io.flow.internal.v0.models.DutyRateBulkRequest => ({
11847
- discriminator: 'duty_rate_bulk_request',
11848
- event_id: factories.string(),
11849
- timestamp: factories.date_time_iso_8601(),
11850
- context: factories['io.flow.internal.v0.models.duty_rate_context'](),
11851
- origin: factories.string(),
11852
- destination_tariff_code: objectOf(() => factories.string()),
11853
- }),
11854
-
11855
- 'io.flow.internal.v0.models.duty_rate_bulk_response': (): io.flow.internal.v0.models.DutyRateBulkResponse => ({
11856
- discriminator: 'duty_rate_bulk_response',
11857
- event_id: factories.string(),
11858
- timestamp: factories.date_time_iso_8601(),
11859
- context: factories['io.flow.internal.v0.models.duty_rate_context'](),
11860
- duty_rate: arrayOf(() => factories['io.flow.internal.v0.models.duty_rate']()),
11861
- }),
11862
-
11863
- 'io.flow.internal.v0.models.duty_rate_context': (): io.flow.internal.v0.models.DutyRateContext => ({
11864
- phrase_id: factories.string(),
11865
- item_number: factories.string(),
11866
- product_id: factories.string(),
11867
- }),
11868
-
11869
11817
  'io.flow.internal.v0.models.duty_rate_item_summary': (): io.flow.internal.v0.models.DutyRateItemSummary => ({
11870
11818
  number: factories.string(),
11871
11819
  product_id: factories.string(),
11872
11820
  }),
11873
11821
 
11874
- 'io.flow.internal.v0.models.duty_rate_request': (): io.flow.internal.v0.models.DutyRateRequest => ({
11875
- discriminator: 'duty_rate_request',
11876
- event_id: factories.string(),
11877
- timestamp: factories.date_time_iso_8601(),
11878
- destination: factories.string(),
11879
- origin: factories.string(),
11880
- tariff_code: factories.string(),
11881
- }),
11882
-
11883
- 'io.flow.internal.v0.models.duty_rate_response': (): io.flow.internal.v0.models.DutyRateResponse => ({
11884
- discriminator: 'duty_rate_response',
11885
- event_id: factories.string(),
11886
- timestamp: factories.date_time_iso_8601(),
11887
- duty_rate: factories['io.flow.internal.v0.models.duty_rate'](),
11888
- }),
11889
-
11890
11822
  'io.flow.internal.v0.models.duty_rate_summary': (): io.flow.internal.v0.models.DutyRateSummary => ({
11891
11823
  tariff_code: factories.string(),
11892
11824
  origin: factories.string(),
11893
11825
  destination: factories.string(),
11894
11826
  }),
11895
11827
 
11896
- 'io.flow.internal.v0.models.duty_rate_upserted': (): io.flow.internal.v0.models.DutyRateUpserted => ({
11897
- discriminator: 'duty_rate_upserted',
11898
- event_id: factories.string(),
11899
- timestamp: factories.date_time_iso_8601(),
11900
- source_event: factories['io.flow.internal.v0.models.duty_raw_upserted'](),
11901
- duty_rate: factories['io.flow.internal.v0.models.duty_rate'](),
11902
- unparsable_rates: arrayOf(() => factories.string()),
11903
- }),
11904
-
11905
11828
  'io.flow.internal.v0.models.duty_rates_data_summary': (): io.flow.internal.v0.models.DutyRatesDataSummary => ({
11906
11829
  id: factories.string(),
11907
11830
  item_summary: factories['io.flow.internal.v0.models.duty_rate_item_summary'](),
@@ -11930,21 +11853,6 @@ const factories = {
11930
11853
  created_at: factories.date_time_iso_8601(),
11931
11854
  }),
11932
11855
 
11933
- 'io.flow.internal.v0.models.duty_raw_bulk_upserted': (): io.flow.internal.v0.models.DutyRawBulkUpserted => ({
11934
- discriminator: 'duty_raw_bulk_upserted',
11935
- event_id: factories.string(),
11936
- timestamp: factories.date_time_iso_8601(),
11937
- context: factories['io.flow.internal.v0.models.duty_rate_context'](),
11938
- duty_raw: arrayOf(() => factories['io.flow.internal.v0.models.duty_raw']()),
11939
- }),
11940
-
11941
- 'io.flow.internal.v0.models.duty_raw_upserted': (): io.flow.internal.v0.models.DutyRawUpserted => ({
11942
- discriminator: 'duty_raw_upserted',
11943
- event_id: factories.string(),
11944
- timestamp: factories.date_time_iso_8601(),
11945
- duty_raw: factories['io.flow.internal.v0.models.duty_raw'](),
11946
- }),
11947
-
11948
11856
  'io.flow.internal.v0.models.duty_simple_expression': (): io.flow.internal.v0.models.DutySimpleExpression => ({
11949
11857
  discriminator: 'duty_simple_expression',
11950
11858
  type: factories['io.flow.internal.v0.enums.duty_simple_expression_type'](),
@@ -11979,37 +11887,6 @@ const factories = {
11979
11887
  duty_transaction: factories['io.flow.internal.v0.models.duty_transaction'](),
11980
11888
  }),
11981
11889
 
11982
- 'io.flow.internal.v0.models.eldar_item': (): io.flow.internal.v0.models.EldarItem => ({
11983
- id: factories.string(),
11984
- number: factories.string(),
11985
- amount: factories['io.flow.common.v0.models.price'](),
11986
- description: factories.string(),
11987
- type: factories['io.flow.internal.v0.enums.eldar_item_type'](),
11988
- added_on: factories.date_time_iso_8601(),
11989
- }),
11990
-
11991
- 'io.flow.internal.v0.models.eldar_item_deleted': (): io.flow.internal.v0.models.EldarItemDeleted => ({
11992
- discriminator: 'eldar_item_deleted',
11993
- event_id: factories.string(),
11994
- timestamp: factories.date_time_iso_8601(),
11995
- id: factories.string(),
11996
- }),
11997
-
11998
- 'io.flow.internal.v0.models.eldar_item_form': (): io.flow.internal.v0.models.EldarItemForm => ({
11999
- number: factories.string(),
12000
- amount: factories['io.flow.common.v0.models.price'](),
12001
- description: factories.string(),
12002
- type: factories['io.flow.internal.v0.enums.eldar_item_type'](),
12003
- added_on: factories.date_time_iso_8601(),
12004
- }),
12005
-
12006
- 'io.flow.internal.v0.models.eldar_item_upserted': (): io.flow.internal.v0.models.EldarItemUpserted => ({
12007
- discriminator: 'eldar_item_upserted',
12008
- event_id: factories.string(),
12009
- timestamp: factories.date_time_iso_8601(),
12010
- item: factories['io.flow.internal.v0.models.eldar_item'](),
12011
- }),
12012
-
12013
11890
  'io.flow.internal.v0.models.email_form': (): io.flow.internal.v0.models.EmailForm => ({
12014
11891
  to: arrayOf(() => factories.string()),
12015
11892
  cc: arrayOf(() => factories.string()),
@@ -13382,37 +13259,6 @@ const factories = {
13382
13259
  tracker_id: factories.string(),
13383
13260
  }),
13384
13261
 
13385
- 'io.flow.internal.v0.models.harinath_item': (): io.flow.internal.v0.models.HarinathItem => ({
13386
- id: factories.string(),
13387
- number: factories.string(),
13388
- amount: factories['io.flow.common.v0.models.price'](),
13389
- description: factories.string(),
13390
- type: factories['io.flow.internal.v0.enums.harinath_item_type'](),
13391
- added_on: factories.date_time_iso_8601(),
13392
- }),
13393
-
13394
- 'io.flow.internal.v0.models.harinath_item_deleted': (): io.flow.internal.v0.models.HarinathItemDeleted => ({
13395
- discriminator: 'harinath_item_deleted',
13396
- event_id: factories.string(),
13397
- timestamp: factories.date_time_iso_8601(),
13398
- id: factories.string(),
13399
- }),
13400
-
13401
- 'io.flow.internal.v0.models.harinath_item_form': (): io.flow.internal.v0.models.HarinathItemForm => ({
13402
- number: factories.string(),
13403
- amount: factories['io.flow.common.v0.models.price'](),
13404
- description: factories.string(),
13405
- type: factories['io.flow.internal.v0.enums.harinath_item_type'](),
13406
- added_on: factories.date_time_iso_8601(),
13407
- }),
13408
-
13409
- 'io.flow.internal.v0.models.harinath_item_upserted': (): io.flow.internal.v0.models.HarinathItemUpserted => ({
13410
- discriminator: 'harinath_item_upserted',
13411
- event_id: factories.string(),
13412
- timestamp: factories.date_time_iso_8601(),
13413
- item: factories['io.flow.internal.v0.models.harinath_item'](),
13414
- }),
13415
-
13416
13262
  'io.flow.internal.v0.models.harmonization_classification_statistics_data': (): io.flow.internal.v0.models.HarmonizationClassificationStatisticsData => ({
13417
13263
  statistics: factories['io.flow.internal.v0.models.classification_statistics'](),
13418
13264
  }),
@@ -13543,21 +13389,6 @@ const factories = {
13543
13389
  description: factories.string(),
13544
13390
  }),
13545
13391
 
13546
- 'io.flow.internal.v0.models.hybris_catalog_items_import_request': (): io.flow.internal.v0.models.HybrisCatalogItemsImportRequest => ({
13547
- discriminator: 'hybris_catalog_items_import_request',
13548
- event_id: factories.string(),
13549
- timestamp: factories.date_time_iso_8601(),
13550
- organization: factories.string(),
13551
- request: factories['io.flow.internal.v0.models.hybris_catalog_items_import_request_data'](),
13552
- }),
13553
-
13554
- 'io.flow.internal.v0.models.hybris_catalog_items_import_request_data': (): io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData => ({
13555
- id: factories.string(),
13556
- import_id: factories.string(),
13557
- source_url: factories.string(),
13558
- filename: factories.string(),
13559
- }),
13560
-
13561
13392
  'io.flow.internal.v0.models.import_completed': (): io.flow.internal.v0.models.ImportCompleted => ({
13562
13393
  discriminator: 'import_completed',
13563
13394
  event_id: factories.string(),
@@ -13576,22 +13407,6 @@ const factories = {
13576
13407
  error: factories.string(),
13577
13408
  }),
13578
13409
 
13579
- 'io.flow.internal.v0.models.index_assignment_deleted': (): io.flow.internal.v0.models.IndexAssignmentDeleted => ({
13580
- discriminator: 'index_assignment_deleted',
13581
- event_id: factories.string(),
13582
- timestamp: factories.date_time_iso_8601(),
13583
- organization: factories.string(),
13584
- id: factories.string(),
13585
- }),
13586
-
13587
- 'io.flow.internal.v0.models.index_assignment_upserted': (): io.flow.internal.v0.models.IndexAssignmentUpserted => ({
13588
- discriminator: 'index_assignment_upserted',
13589
- event_id: factories.string(),
13590
- timestamp: factories.date_time_iso_8601(),
13591
- organization: factories.string(),
13592
- assignment: factories['io.flow.internal.v0.models.algolia_index_assignment'](),
13593
- }),
13594
-
13595
13410
  'io.flow.internal.v0.models.install_form': (): io.flow.internal.v0.models.InstallForm => ({
13596
13411
  token: factories.string(),
13597
13412
  }),
@@ -13731,19 +13546,7 @@ const factories = {
13731
13546
  inventory_item_id: factories.long(),
13732
13547
  shopify_shop_id: factories.long(),
13733
13548
  shopify_inventory_item: factories['io.flow.shopify.external.v0.models.shopify_inventory_item_summary'](),
13734
- }),
13735
-
13736
- 'io.flow.internal.v0.models.inventory_organization_settings': (): io.flow.internal.v0.models.InventoryOrganizationSettings => ({
13737
- id: factories.string(),
13738
- inventory_reservation: factories['io.flow.internal.v0.enums.inventory_reservation'](),
13739
- inventory_check_service: factories['io.flow.internal.v0.enums.inventory_check_service'](),
13740
- inventory_check_service_root_url: factories.string(),
13741
- }),
13742
-
13743
- 'io.flow.internal.v0.models.inventory_organization_settings_form': (): io.flow.internal.v0.models.InventoryOrganizationSettingsForm => ({
13744
- inventory_reservation: factories['io.flow.internal.v0.enums.inventory_reservation'](),
13745
- inventory_check_service: factories['io.flow.internal.v0.enums.inventory_check_service'](),
13746
- inventory_check_service_root_url: factories.string(),
13549
+ deleted_at: factories.date_time_iso_8601(),
13747
13550
  }),
13748
13551
 
13749
13552
  'io.flow.internal.v0.models.invoice': (): io.flow.internal.v0.models.Invoice => ({
@@ -13927,10 +13730,6 @@ const factories = {
13927
13730
  values: arrayOf(() => factories.string()),
13928
13731
  }),
13929
13732
 
13930
- 'io.flow.internal.v0.models.item_form': (): io.flow.internal.v0.models.ItemForm => ({
13931
- amount: factories.decimal(),
13932
- }),
13933
-
13934
13733
  'io.flow.internal.v0.models.item_form_import_request': (): io.flow.internal.v0.models.ItemFormImportRequest => ({
13935
13734
  discriminator: 'item_form_import_request',
13936
13735
  event_id: factories.string(),
@@ -14115,37 +13914,6 @@ const factories = {
14115
13914
  descriptive_asset_urls: factories.string(),
14116
13915
  }),
14117
13916
 
14118
- 'io.flow.internal.v0.models.konstantin_item': (): io.flow.internal.v0.models.KonstantinItem => ({
14119
- id: factories.string(),
14120
- number: factories.string(),
14121
- amount: factories['io.flow.common.v0.models.price'](),
14122
- description: factories.string(),
14123
- type: factories['io.flow.internal.v0.enums.konstantin_item_type'](),
14124
- added_on: factories.date_time_iso_8601(),
14125
- }),
14126
-
14127
- 'io.flow.internal.v0.models.konstantin_item_deleted': (): io.flow.internal.v0.models.KonstantinItemDeleted => ({
14128
- discriminator: 'konstantin_item_deleted',
14129
- event_id: factories.string(),
14130
- timestamp: factories.date_time_iso_8601(),
14131
- id: factories.string(),
14132
- }),
14133
-
14134
- 'io.flow.internal.v0.models.konstantin_item_form': (): io.flow.internal.v0.models.KonstantinItemForm => ({
14135
- number: factories.string(),
14136
- amount: factories['io.flow.common.v0.models.price'](),
14137
- description: factories.string(),
14138
- type: factories['io.flow.internal.v0.enums.konstantin_item_type'](),
14139
- added_on: factories.date_time_iso_8601(),
14140
- }),
14141
-
14142
- 'io.flow.internal.v0.models.konstantin_item_upserted': (): io.flow.internal.v0.models.KonstantinItemUpserted => ({
14143
- discriminator: 'konstantin_item_upserted',
14144
- event_id: factories.string(),
14145
- timestamp: factories.date_time_iso_8601(),
14146
- item: factories['io.flow.internal.v0.models.konstantin_item'](),
14147
- }),
14148
-
14149
13917
  'io.flow.internal.v0.models.lab_project_settings': (): io.flow.internal.v0.models.LabProjectSettings => ({
14150
13918
  id: factories.string(),
14151
13919
  flow_lab_project_key: factories.string(),
@@ -15185,37 +14953,6 @@ const factories = {
15185
14953
  id: factories.string(),
15186
14954
  }),
15187
14955
 
15188
- 'io.flow.internal.v0.models.matias_item': (): io.flow.internal.v0.models.MatiasItem => ({
15189
- id: factories.string(),
15190
- number: factories.string(),
15191
- amount: factories['io.flow.common.v0.models.price'](),
15192
- description: factories.string(),
15193
- type: factories['io.flow.internal.v0.enums.matias_item_type'](),
15194
- added_on: factories.date_time_iso_8601(),
15195
- }),
15196
-
15197
- 'io.flow.internal.v0.models.matias_item_deleted': (): io.flow.internal.v0.models.MatiasItemDeleted => ({
15198
- discriminator: 'matias_item_deleted',
15199
- event_id: factories.string(),
15200
- timestamp: factories.date_time_iso_8601(),
15201
- id: factories.string(),
15202
- }),
15203
-
15204
- 'io.flow.internal.v0.models.matias_item_form': (): io.flow.internal.v0.models.MatiasItemForm => ({
15205
- number: factories.string(),
15206
- amount: factories['io.flow.common.v0.models.price'](),
15207
- description: factories.string(),
15208
- type: factories['io.flow.internal.v0.enums.matias_item_type'](),
15209
- added_on: factories.date_time_iso_8601(),
15210
- }),
15211
-
15212
- 'io.flow.internal.v0.models.matias_item_upserted': (): io.flow.internal.v0.models.MatiasItemUpserted => ({
15213
- discriminator: 'matias_item_upserted',
15214
- event_id: factories.string(),
15215
- timestamp: factories.date_time_iso_8601(),
15216
- item: factories['io.flow.internal.v0.models.matias_item'](),
15217
- }),
15218
-
15219
14956
  'io.flow.internal.v0.models.merchant': (): io.flow.internal.v0.models.Merchant => ({
15220
14957
  id: factories.string(),
15221
14958
  account: factories['io.flow.internal.v0.models.account_reference'](),
@@ -15241,6 +14978,10 @@ const factories = {
15241
14978
  id: factories.string(),
15242
14979
  }),
15243
14980
 
14981
+ 'io.flow.internal.v0.models.merchant_details': (): io.flow.internal.v0.models.MerchantDetails => ({
14982
+ name: factories.string(),
14983
+ }),
14984
+
15244
14985
  'io.flow.internal.v0.models.merchant_fees': (): io.flow.internal.v0.models.MerchantFees => ({
15245
14986
  duty_guarantee: factories.decimal(),
15246
14987
  mor: factories.decimal(),
@@ -15368,77 +15109,12 @@ const factories = {
15368
15109
  proposition: factories['io.flow.internal.v0.models.metadata_proposition'](),
15369
15110
  }),
15370
15111
 
15371
- 'io.flow.internal.v0.models.michaelyan_item': (): io.flow.internal.v0.models.MichaelyanItem => ({
15372
- id: factories.string(),
15373
- number: factories.string(),
15374
- amount: factories['io.flow.common.v0.models.price'](),
15375
- description: factories.string(),
15376
- type: factories['io.flow.internal.v0.enums.michaelyan_item_type'](),
15377
- added_on: factories.date_time_iso_8601(),
15378
- }),
15379
-
15380
- 'io.flow.internal.v0.models.michaelyan_item_deleted': (): io.flow.internal.v0.models.MichaelyanItemDeleted => ({
15381
- discriminator: 'michaelyan_item_deleted',
15382
- event_id: factories.string(),
15383
- timestamp: factories.date_time_iso_8601(),
15384
- id: factories.string(),
15385
- }),
15386
-
15387
- 'io.flow.internal.v0.models.michaelyan_item_form': (): io.flow.internal.v0.models.MichaelyanItemForm => ({
15388
- number: factories.string(),
15389
- amount: factories['io.flow.common.v0.models.price'](),
15390
- description: factories.string(),
15391
- type: factories['io.flow.internal.v0.enums.michaelyan_item_type'](),
15392
- added_on: factories.date_time_iso_8601(),
15393
- }),
15394
-
15395
- 'io.flow.internal.v0.models.michaelyan_item_upserted': (): io.flow.internal.v0.models.MichaelyanItemUpserted => ({
15396
- discriminator: 'michaelyan_item_upserted',
15397
- event_id: factories.string(),
15398
- timestamp: factories.date_time_iso_8601(),
15399
- item: factories['io.flow.internal.v0.models.michaelyan_item'](),
15400
- }),
15401
-
15402
- 'io.flow.internal.v0.models.miljenko_item': (): io.flow.internal.v0.models.MiljenkoItem => ({
15403
- id: factories.string(),
15404
- number: factories.string(),
15405
- amount: factories['io.flow.common.v0.models.price'](),
15406
- description: factories.string(),
15407
- type: factories['io.flow.internal.v0.enums.miljenko_item_type'](),
15408
- added_on: factories.date_time_iso_8601(),
15409
- }),
15410
-
15411
- 'io.flow.internal.v0.models.miljenko_item_deleted': (): io.flow.internal.v0.models.MiljenkoItemDeleted => ({
15412
- discriminator: 'miljenko_item_deleted',
15413
- event_id: factories.string(),
15414
- timestamp: factories.date_time_iso_8601(),
15415
- id: factories.string(),
15416
- }),
15417
-
15418
- 'io.flow.internal.v0.models.miljenko_item_form': (): io.flow.internal.v0.models.MiljenkoItemForm => ({
15419
- number: factories.string(),
15420
- amount: factories['io.flow.common.v0.models.price'](),
15421
- description: factories.string(),
15422
- type: factories['io.flow.internal.v0.enums.miljenko_item_type'](),
15423
- added_on: factories.date_time_iso_8601(),
15424
- }),
15425
-
15426
- 'io.flow.internal.v0.models.miljenko_item_upserted': (): io.flow.internal.v0.models.MiljenkoItemUpserted => ({
15427
- discriminator: 'miljenko_item_upserted',
15428
- event_id: factories.string(),
15429
- timestamp: factories.date_time_iso_8601(),
15430
- item: factories['io.flow.internal.v0.models.miljenko_item'](),
15431
- }),
15432
-
15433
- 'io.flow.internal.v0.models.money_percentage': (): io.flow.internal.v0.models.MoneyPercentage => ({
15434
- discriminator: 'percentage',
15435
- percent: factories.decimal(),
15436
- }),
15437
-
15438
15112
  'io.flow.internal.v0.models.negative_debit_metrics': (): io.flow.internal.v0.models.NegativeDebitMetrics => ({
15439
15113
  current_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15114
+ first_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15440
15115
  second_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15441
15116
  third_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15117
+ forth_plus_attempts: factories['io.flow.internal.v0.models.attempt_statistics'](),
15442
15118
  }),
15443
15119
 
15444
15120
  'io.flow.internal.v0.models.next_billing_statement': (): io.flow.internal.v0.models.NextBillingStatement => ({
@@ -15730,6 +15406,11 @@ const factories = {
15730
15406
  disputes: arrayOf(() => factories['io.flow.internal.v0.models.dispute_detail']()),
15731
15407
  }),
15732
15408
 
15409
+ 'io.flow.internal.v0.models.order_edit_summary': (): io.flow.internal.v0.models.OrderEditSummary => ({
15410
+ external_order_edit_reference: factories.string(),
15411
+ edited_at: factories.date_time_iso_8601(),
15412
+ }),
15413
+
15733
15414
  'io.flow.internal.v0.models.order_fulfillment_deleted': (): io.flow.internal.v0.models.OrderFulfillmentDeleted => ({
15734
15415
  discriminator: 'order_fulfillment_deleted',
15735
15416
  event_id: factories.string(),
@@ -16203,6 +15884,8 @@ const factories = {
16203
15884
  product_count: factories.long(),
16204
15885
  restricted_product_count: factories.long(),
16205
15886
  last_order_submitted_at: factories.date_time_iso_8601(),
15887
+ matching_positive_keywords: arrayOf(() => factories.string()),
15888
+ product_categories: arrayOf(() => factories.string()),
16206
15889
  }),
16207
15890
 
16208
15891
  'io.flow.internal.v0.models.organization_metadata_deleted': (): io.flow.internal.v0.models.OrganizationMetadataDeleted => ({
@@ -16618,6 +16301,20 @@ const factories = {
16618
16301
  partner_organization_settings: factories['io.flow.internal.v0.models.partner_organization_settings'](),
16619
16302
  }),
16620
16303
 
16304
+ 'io.flow.internal.v0.models.partner_tracking_subscription_deleted': (): io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted => ({
16305
+ discriminator: 'partner_tracking_subscription_deleted',
16306
+ event_id: factories.string(),
16307
+ timestamp: factories.date_time_iso_8601(),
16308
+ id: factories.string(),
16309
+ }),
16310
+
16311
+ 'io.flow.internal.v0.models.partner_tracking_subscription_upserted': (): io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted => ({
16312
+ discriminator: 'partner_tracking_subscription_upserted',
16313
+ event_id: factories.string(),
16314
+ timestamp: factories.date_time_iso_8601(),
16315
+ partner_tracking_subscription: factories['io.flow.partner.v0.models.partner_tracking_subscription'](),
16316
+ }),
16317
+
16621
16318
  'io.flow.internal.v0.models.passphrase': (): io.flow.internal.v0.models.Passphrase => ({
16622
16319
  id: factories.string(),
16623
16320
  tribe: factories['io.flow.internal.v0.models.tribe'](),
@@ -16780,6 +16477,20 @@ const factories = {
16780
16477
  payer_id: factories.string(),
16781
16478
  }),
16782
16479
 
16480
+ 'io.flow.internal.v0.models.paypal_dispute_deleted': (): io.flow.internal.v0.models.PaypalDisputeDeleted => ({
16481
+ discriminator: 'paypal_dispute_deleted',
16482
+ event_id: factories.string(),
16483
+ timestamp: factories.date_time_iso_8601(),
16484
+ id: factories.string(),
16485
+ }),
16486
+
16487
+ 'io.flow.internal.v0.models.paypal_dispute_upserted': (): io.flow.internal.v0.models.PaypalDisputeUpserted => ({
16488
+ discriminator: 'paypal_dispute_upserted',
16489
+ event_id: factories.string(),
16490
+ timestamp: factories.date_time_iso_8601(),
16491
+ dispute: factories['io.flow.internal.v0.models.paypal_internal_dispute'](),
16492
+ }),
16493
+
16783
16494
  'io.flow.internal.v0.models.paypal_execution_deleted': (): io.flow.internal.v0.models.PaypalExecutionDeleted => ({
16784
16495
  discriminator: 'paypal_execution_deleted',
16785
16496
  event_id: factories.string(),
@@ -16794,6 +16505,47 @@ const factories = {
16794
16505
  execution: factories['io.flow.internal.v0.models.paypal_internal_execution'](),
16795
16506
  }),
16796
16507
 
16508
+ 'io.flow.internal.v0.models.paypal_internal_dispute': (): io.flow.internal.v0.models.PaypalInternalDispute => ({
16509
+ id: factories.string(),
16510
+ dispute_id: factories.string(),
16511
+ create_time: factories.date_time_iso_8601(),
16512
+ update_time: factories.date_time_iso_8601(),
16513
+ buyer_transaction_id: factories.string(),
16514
+ seller_transaction_id: factories.string(),
16515
+ transaction_reference_id: factories.string(),
16516
+ transaction_create_time: factories.date_time_iso_8601(),
16517
+ transaction_status: factories.string(),
16518
+ transaction_gross_amount: factories.string(),
16519
+ transaction_gross_currency: factories.string(),
16520
+ transaction_invoice_number: factories.string(),
16521
+ transaction_custom: factories.string(),
16522
+ buyer_name: factories.string(),
16523
+ seller_merchant_id: factories.string(),
16524
+ seller_merchant_name: factories.string(),
16525
+ items: arrayOf(() => factories.object()),
16526
+ other_disputed_transactions: arrayOf(() => factories.object()),
16527
+ reason: factories.string(),
16528
+ status: factories.string(),
16529
+ dispute_amount: factories.string(),
16530
+ dispute_currency: factories.string(),
16531
+ dispute_outcome_code: factories.string(),
16532
+ dispute_outcome_amount_refunded: factories.string(),
16533
+ dispute_outcome_currency: factories.string(),
16534
+ dispute_life_cycle_stage: factories.string(),
16535
+ dispute_channel: factories.string(),
16536
+ messages: arrayOf(() => factories.object()),
16537
+ evidences: arrayOf(() => factories.object()),
16538
+ buyer_response_due_date: factories.date_time_iso_8601(),
16539
+ seller_response_due_date: factories.date_time_iso_8601(),
16540
+ offer: factories.object(),
16541
+ communication_details: factories.object(),
16542
+ links: arrayOf(() => factories.object()),
16543
+ previous_status: factories.string(),
16544
+ updated_by_user_id: factories.string(),
16545
+ created_at: factories.date_time_iso_8601(),
16546
+ updated_at: factories.date_time_iso_8601(),
16547
+ }),
16548
+
16797
16549
  'io.flow.internal.v0.models.paypal_internal_execution': (): io.flow.internal.v0.models.PaypalInternalExecution => ({
16798
16550
  id: factories.string(),
16799
16551
  currency: factories.string(),
@@ -17030,52 +16782,11 @@ const factories = {
17030
16782
  quote_request: factories['io.flow.internal.v0.models.quote_request'](),
17031
16783
  }),
17032
16784
 
17033
- 'io.flow.internal.v0.models.pricing_indicator': (): io.flow.internal.v0.models.PricingIndicator => ({
17034
- discriminator: 'pricing_indicator',
17035
- event_id: factories.string(),
17036
- timestamp: factories.date_time_iso_8601(),
17037
- organization: factories.string(),
17038
- published_from: factories['io.flow.internal.v0.enums.service_name'](),
17039
- status: factories['io.flow.internal.v0.enums.pricing_indicator_status'](),
17040
- event_identifier: factories.string(),
17041
- details: factories['io.flow.internal.v0.models.details'](),
17042
- }),
17043
-
17044
- 'io.flow.internal.v0.models.pricing_indicator_dynamo': (): io.flow.internal.v0.models.PricingIndicatorDynamo => ({
17045
- organization_id: factories.string(),
17046
- item_number: factories.string(),
17047
- experience_key: factories.string(),
17048
- upserted_at: factories.date_time_iso_8601(),
17049
- time_elapsed_since_upserted: factories.long(),
17050
- event_identifier: factories.string(),
17051
- status: factories['io.flow.pricing.indicator.internal.event.v0.enums.pricing_indicator_status'](),
17052
- published_at: factories.date_time_iso_8601(),
17053
- published_from: factories['io.flow.pricing.indicator.internal.event.v0.enums.service_name'](),
17054
- expiration_time_in_epoch: factories.long(),
17055
- catalog_item: factories['io.flow.common.v0.models.catalog_item_summary'](),
17056
- experience: factories['io.flow.common.v0.models.experience_summary'](),
17057
- }),
17058
-
17059
- 'io.flow.internal.v0.models.principal': (): io.flow.internal.v0.models.Principal => ({
17060
- type: factories['io.flow.internal.v0.enums.principal_type'](),
17061
- amount: factories.decimal(),
17062
- }),
17063
-
17064
16785
  'io.flow.internal.v0.models.prioritized_center_reference': (): io.flow.internal.v0.models.PrioritizedCenterReference => ({
17065
16786
  center_key: factories.string(),
17066
16787
  position: factories.long(),
17067
16788
  }),
17068
16789
 
17069
- 'io.flow.internal.v0.models.processed_payment_summary': (): io.flow.internal.v0.models.ProcessedPaymentSummary => ({
17070
- type: factories['io.flow.reference.v0.enums.payment_method_capability'](),
17071
- amount: factories.decimal(),
17072
- currency: factories['io.flow.reference.v0.models.currency'](),
17073
- method: factories['io.flow.reference.v0.models.payment_method'](),
17074
- card_issuer_country: factories['io.flow.reference.v0.models.country'](),
17075
- shipping_address_country: factories['io.flow.reference.v0.models.country'](),
17076
- billing_address_country: factories['io.flow.reference.v0.models.country'](),
17077
- }),
17078
-
17079
16790
  'io.flow.internal.v0.models.processing_transaction': (): io.flow.internal.v0.models.ProcessingTransaction => ({
17080
16791
  discriminator: 'processing_transaction',
17081
16792
  merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
@@ -17286,49 +16997,6 @@ const factories = {
17286
16997
  quantity: factories.long(),
17287
16998
  }),
17288
16999
 
17289
- 'io.flow.internal.v0.models.profit': (): io.flow.internal.v0.models.Profit => ({
17290
- key: factories['io.flow.internal.v0.enums.profit_stream_key'](),
17291
- principal: factories['io.flow.internal.v0.models.principal'](),
17292
- revenue: arrayOf(() => factories['io.flow.internal.v0.models.revenue']()),
17293
- costs: arrayOf(() => factories['io.flow.internal.v0.models.cost']()),
17294
- amount: factories.decimal(),
17295
- splits: arrayOf(() => factories['io.flow.internal.v0.models.profit_split']()),
17296
- }),
17297
-
17298
- 'io.flow.internal.v0.models.profit_share': (): io.flow.internal.v0.models.ProfitShare => ({
17299
- order: factories['io.flow.internal.v0.models.profit_share_order_reference'](),
17300
- profits: arrayOf(() => factories['io.flow.internal.v0.models.profit']()),
17301
- }),
17302
-
17303
- 'io.flow.internal.v0.models.profit_share_order_reference': (): io.flow.internal.v0.models.ProfitShareOrderReference => ({
17304
- organization: factories['io.flow.common.v0.models.organization_reference'](),
17305
- number: factories.string(),
17306
- }),
17307
-
17308
- 'io.flow.internal.v0.models.profit_share_plan': (): io.flow.internal.v0.models.ProfitSharePlan => ({
17309
- order: factories['io.flow.internal.v0.models.profit_share_order_reference'](),
17310
- streams: arrayOf(() => factories['io.flow.internal.v0.models.profit_stream']()),
17311
- }),
17312
-
17313
- 'io.flow.internal.v0.models.profit_split': (): io.flow.internal.v0.models.ProfitSplit => ({
17314
- rule: factories['io.flow.internal.v0.models.profit_split_rule'](),
17315
- amount: factories.decimal(),
17316
- }),
17317
-
17318
- 'io.flow.internal.v0.models.profit_split_rule': (): io.flow.internal.v0.models.ProfitSplitRule => ({
17319
- payee: factories['io.flow.internal.v0.enums.party'](),
17320
- rule: factories['io.flow.internal.v0.unions.money_rule'](),
17321
- }),
17322
-
17323
- 'io.flow.internal.v0.models.profit_stream': (): io.flow.internal.v0.models.ProfitStream => ({
17324
- key: factories['io.flow.internal.v0.enums.profit_stream_key'](),
17325
- description: factories.string(),
17326
- principal: factories['io.flow.internal.v0.enums.principal_type'](),
17327
- revenue: arrayOf(() => factories['io.flow.internal.v0.models.revenue_rule']()),
17328
- costs: arrayOf(() => factories['io.flow.internal.v0.models.cost_rule']()),
17329
- splits: arrayOf(() => factories['io.flow.internal.v0.models.profit_split_rule']()),
17330
- }),
17331
-
17332
17000
  'io.flow.internal.v0.models.proof_of_posting_externally_fulfilled': (): io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled => ({
17333
17001
  discriminator: 'external',
17334
17002
  external_fulfillment_proof_id: factories.string(),
@@ -17896,6 +17564,11 @@ const factories = {
17896
17564
  from: factories.date_time_iso_8601(),
17897
17565
  to: factories.date_time_iso_8601(),
17898
17566
  payment_type: factories['io.flow.internal.v0.enums.report_payment_type'](),
17567
+
17568
+ organizations: arrayOf(
17569
+ () => factories['io.flow.internal.v0.models.report_organization_reference'](),
17570
+ ),
17571
+
17899
17572
  orders: arrayOf(() => factories['io.flow.internal.v0.models.report_order_reference']()),
17900
17573
  recipients: arrayOf(() => factories.string()),
17901
17574
  }),
@@ -17909,6 +17582,10 @@ const factories = {
17909
17582
  order_number: factories.string(),
17910
17583
  }),
17911
17584
 
17585
+ 'io.flow.internal.v0.models.report_organization_reference': (): io.flow.internal.v0.models.ReportOrganizationReference => ({
17586
+ organization_id: factories.string(),
17587
+ }),
17588
+
17912
17589
  'io.flow.internal.v0.models.report_owner': (): io.flow.internal.v0.models.ReportOwner => ({
17913
17590
  name: factories.string(),
17914
17591
  }),
@@ -17986,10 +17663,6 @@ const factories = {
17986
17663
  refund_records: arrayOf(() => factories.object()),
17987
17664
  }),
17988
17665
 
17989
- 'io.flow.internal.v0.models.reporting_entity': (): io.flow.internal.v0.models.ReportingEntity => ({
17990
- id: factories.string(),
17991
- }),
17992
-
17993
17666
  'io.flow.internal.v0.models.reporting_fulfillment': (): io.flow.internal.v0.models.ReportingFulfillment => ({
17994
17667
  id: factories.string(),
17995
17668
  sequence_number: factories.long(),
@@ -18072,6 +17745,7 @@ const factories = {
18072
17745
  discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
18073
17746
  total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
18074
17747
  tax_refund: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
17748
+ duty_refund: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
18075
17749
  }),
18076
17750
 
18077
17751
  'io.flow.internal.v0.models.reporting_monetary_value': (): io.flow.internal.v0.models.ReportingMonetaryValue => ({
@@ -18419,6 +18093,48 @@ const factories = {
18419
18093
  count: factories.long(),
18420
18094
  }),
18421
18095
 
18096
+ 'io.flow.internal.v0.models.restrictions_dailyops': (): io.flow.internal.v0.models.RestrictionsDailyops => ({
18097
+ id: factories.string(),
18098
+ report_date: factories.date_iso_8601(),
18099
+ num_orgs_setup_complete_with_pvs: factories.decimal(),
18100
+ num_products_setup_complete_with_pvs: factories.decimal(),
18101
+ num_orgs_transacting_with_pvs: factories.decimal(),
18102
+ num_products_transacting_with_pvs: factories.decimal(),
18103
+ oldest_pv_product_date_setup_complete: factories.date_iso_8601(),
18104
+ oldest_pv_product_date_transacting: factories.date_iso_8601(),
18105
+ num_orgs_setup_complete_prs: factories.decimal(),
18106
+ num_products_setup_complete_prs: factories.decimal(),
18107
+ num_orgs_transacting_prs: factories.decimal(),
18108
+ num_products_transacting_prs: factories.decimal(),
18109
+ oldest_pr_product_date_setup_complete: factories.date_iso_8601(),
18110
+ oldest_pr_date_transacting: factories.date_iso_8601(),
18111
+ percent_products_reviewed_transacting: factories.decimal(),
18112
+ num_pv_inflow_net_new: factories.decimal(),
18113
+ num_pv_outflow_human_decisions: factories.decimal(),
18114
+ num_pv_outflow_auto_review_decisions: factories.decimal(),
18115
+ num_pv_outflow_side_effect_decisions: factories.decimal(),
18116
+ num_pr_inflow_net_new: factories.decimal(),
18117
+ num_pr_outflow_human_decisions: factories.decimal(),
18118
+ num_pr_outflow_auto_review_decisions: factories.decimal(),
18119
+ num_pr_outflow_side_effect_decisions: factories.decimal(),
18120
+ num_pending_decisions_transacting: factories.decimal(),
18121
+ }),
18122
+
18123
+ 'io.flow.internal.v0.models.restrictions_dailyops_deleted': (): io.flow.internal.v0.models.RestrictionsDailyopsDeleted => ({
18124
+ discriminator: 'restrictions_dailyops_deleted',
18125
+ event_id: factories.string(),
18126
+ timestamp: factories.date_time_iso_8601(),
18127
+ organization: factories.string(),
18128
+ id: factories.string(),
18129
+ }),
18130
+
18131
+ 'io.flow.internal.v0.models.restrictions_dailyops_upserted': (): io.flow.internal.v0.models.RestrictionsDailyopsUpserted => ({
18132
+ discriminator: 'restrictions_dailyops_upserted',
18133
+ event_id: factories.string(),
18134
+ timestamp: factories.date_time_iso_8601(),
18135
+ restrictions_dailyops: factories['io.flow.internal.v0.models.restrictions_dailyops'](),
18136
+ }),
18137
+
18422
18138
  'io.flow.internal.v0.models.resync_by_destinations': (): io.flow.internal.v0.models.ResyncByDestinations => ({
18423
18139
  destinations: arrayOf(() => factories['io.flow.reference.v0.models.country']()),
18424
18140
  }),
@@ -18505,18 +18221,12 @@ const factories = {
18505
18221
  refund: factories['io.flow.payment.v0.models.refund_reference'](),
18506
18222
  }),
18507
18223
 
18508
- 'io.flow.internal.v0.models.revenue': (): io.flow.internal.v0.models.Revenue => ({
18509
- source: factories['io.flow.internal.v0.models.revenue_rule'](),
18510
- amount: factories.decimal(),
18511
- }),
18512
-
18513
18224
  'io.flow.internal.v0.models.revenue_record': (): io.flow.internal.v0.models.RevenueRecord => ({
18514
18225
  id: factories.string(),
18515
18226
  organization: factories['io.flow.internal.v0.models.reporting_organization_summary'](),
18516
18227
  parent: factories['io.flow.internal.v0.models.record_reference'](),
18517
18228
  type: factories['io.flow.internal.v0.enums.revenue_record_type'](),
18518
18229
  order: factories['io.flow.internal.v0.models.reporting_order_summary'](),
18519
- entity: factories['io.flow.internal.v0.models.reporting_entity'](),
18520
18230
  vendor: factories['io.flow.internal.v0.models.reporting_vendor'](),
18521
18231
  currencies: factories['io.flow.internal.v0.models.reporting_currencies'](),
18522
18232
  conversion_rate: factories['io.flow.internal.v0.models.reporting_conversion_rates'](),
@@ -18544,11 +18254,6 @@ const factories = {
18544
18254
  revenue_record: factories['io.flow.internal.v0.models.revenue_record'](),
18545
18255
  }),
18546
18256
 
18547
- 'io.flow.internal.v0.models.revenue_rule': (): io.flow.internal.v0.models.RevenueRule => ({
18548
- type: factories['io.flow.internal.v0.enums.revenue_type'](),
18549
- rule: factories['io.flow.internal.v0.unions.money_rule'](),
18550
- }),
18551
-
18552
18257
  'io.flow.internal.v0.models.routing_account': (): io.flow.internal.v0.models.RoutingAccount => ({
18553
18258
  discriminator: 'routing_account',
18554
18259
  processor: factories['io.flow.internal.v0.enums.processor'](),
@@ -18845,6 +18550,49 @@ const factories = {
18845
18550
  placeholder: factories.string(),
18846
18551
  }),
18847
18552
 
18553
+ 'io.flow.internal.v0.models.shopify_incoterm_includes': (): io.flow.internal.v0.models.ShopifyIncotermIncludes => ({
18554
+ duties: factories.boolean(),
18555
+ taxes: factories.boolean(),
18556
+ }),
18557
+
18558
+ 'io.flow.internal.v0.models.shopify_incoterm_summary_error_data': (): io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData => ({
18559
+ id: factories.string(),
18560
+ shopify_order_id: factories.string(),
18561
+ order_number: factories.string(),
18562
+ configuration: factories['io.flow.internal.v0.enums.shopify_incoterm_configuration'](),
18563
+ includes: factories['io.flow.internal.v0.models.shopify_incoterm_includes'](),
18564
+ reason: factories.string(),
18565
+ order_submitted_at: factories.date_time_iso_8601(),
18566
+ }),
18567
+
18568
+ 'io.flow.internal.v0.models.shopify_incoterm_summary_error_published': (): io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished => ({
18569
+ discriminator: 'shopify_incoterm_summary_error_published',
18570
+ event_id: factories.string(),
18571
+ timestamp: factories.date_time_iso_8601(),
18572
+ organization: factories.string(),
18573
+ data: factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data'](),
18574
+ }),
18575
+
18576
+ 'io.flow.internal.v0.models.shopify_markets_best_selling_product': (): io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct => ({
18577
+ id: factories.string(),
18578
+ }),
18579
+
18580
+ 'io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted': (): io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted => ({
18581
+ discriminator: 'shopify_markets_best_selling_product_deleted',
18582
+ event_id: factories.string(),
18583
+ timestamp: factories.date_time_iso_8601(),
18584
+ organization: factories.string(),
18585
+ id: factories.string(),
18586
+ }),
18587
+
18588
+ 'io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted': (): io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted => ({
18589
+ discriminator: 'shopify_markets_best_selling_product_upserted',
18590
+ event_id: factories.string(),
18591
+ timestamp: factories.date_time_iso_8601(),
18592
+ organization: factories.string(),
18593
+ shopify_markets_best_selling_product: factories['io.flow.internal.v0.models.shopify_markets_best_selling_product'](),
18594
+ }),
18595
+
18848
18596
  'io.flow.internal.v0.models.shopify_markets_discrepancy': (): io.flow.internal.v0.models.ShopifyMarketsDiscrepancy => ({
18849
18597
  organization_id: factories.string(),
18850
18598
  count: factories.long(),
@@ -18896,6 +18644,19 @@ const factories = {
18896
18644
  shopify_markets_order: factories['io.flow.internal.v0.models.shopify_markets_order'](),
18897
18645
  }),
18898
18646
 
18647
+ 'io.flow.internal.v0.models.shopify_markets_order_edit_summary_data': (): io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData => ({
18648
+ channel_order_acceptance: factories['io.flow.internal.v0.models.channel_order_acceptance'](),
18649
+ edited_at: factories.date_time_iso_8601(),
18650
+ }),
18651
+
18652
+ 'io.flow.internal.v0.models.shopify_markets_order_edit_summary_published': (): io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished => ({
18653
+ discriminator: 'shopify_markets_order_edit_summary_published',
18654
+ event_id: factories.string(),
18655
+ timestamp: factories.date_time_iso_8601(),
18656
+ organization: factories.string(),
18657
+ data: factories['io.flow.internal.v0.models.shopify_markets_order_edit_summary_data'](),
18658
+ }),
18659
+
18899
18660
  'io.flow.internal.v0.models.shopify_markets_order_upserted': (): io.flow.internal.v0.models.ShopifyMarketsOrderUpserted => ({
18900
18661
  discriminator: 'shopify_markets_order_upserted',
18901
18662
  event_id: factories.string(),
@@ -19209,6 +18970,14 @@ const factories = {
19209
18970
  send_inventory_update: factories.boolean(),
19210
18971
  }),
19211
18972
 
18973
+ 'io.flow.internal.v0.models.shopify_partner_webhook': (): io.flow.internal.v0.models.ShopifyPartnerWebhook => ({
18974
+ placeholder: factories.boolean(),
18975
+ }),
18976
+
18977
+ 'io.flow.internal.v0.models.shopify_partner_webhook_raw': (): io.flow.internal.v0.models.ShopifyPartnerWebhookRaw => ({
18978
+ placeholder: factories.boolean(),
18979
+ }),
18980
+
19212
18981
  'io.flow.internal.v0.models.shopify_payment_summary': (): io.flow.internal.v0.models.ShopifyPaymentSummary => ({
19213
18982
  description: factories.string(),
19214
18983
  address: factories['io.flow.common.v0.models.address'](),
@@ -19434,37 +19203,6 @@ const factories = {
19434
19203
  total: factories.decimal(),
19435
19204
  }),
19436
19205
 
19437
- 'io.flow.internal.v0.models.shruti_demo_item': (): io.flow.internal.v0.models.ShrutiDemoItem => ({
19438
- id: factories.string(),
19439
- number: factories.string(),
19440
- amount: factories['io.flow.common.v0.models.price'](),
19441
- description: factories.string(),
19442
- type: factories['io.flow.internal.v0.enums.shruti_demo_type'](),
19443
- added_on: factories.date_time_iso_8601(),
19444
- }),
19445
-
19446
- 'io.flow.internal.v0.models.shruti_demo_item_deleted': (): io.flow.internal.v0.models.ShrutiDemoItemDeleted => ({
19447
- discriminator: 'shruti_demo_item_deleted',
19448
- event_id: factories.string(),
19449
- timestamp: factories.date_time_iso_8601(),
19450
- id: factories.string(),
19451
- }),
19452
-
19453
- 'io.flow.internal.v0.models.shruti_demo_item_form': (): io.flow.internal.v0.models.ShrutiDemoItemForm => ({
19454
- number: factories.string(),
19455
- amount: factories['io.flow.common.v0.models.price'](),
19456
- description: factories.string(),
19457
- type: factories['io.flow.internal.v0.enums.shruti_demo_type'](),
19458
- added_on: factories.date_time_iso_8601(),
19459
- }),
19460
-
19461
- 'io.flow.internal.v0.models.shruti_demo_item_upserted': (): io.flow.internal.v0.models.ShrutiDemoItemUpserted => ({
19462
- discriminator: 'shruti_demo_item_upserted',
19463
- event_id: factories.string(),
19464
- timestamp: factories.date_time_iso_8601(),
19465
- item: factories['io.flow.internal.v0.models.shruti_demo_item'](),
19466
- }),
19467
-
19468
19206
  'io.flow.internal.v0.models.simple_account_reference': (): io.flow.internal.v0.models.SimpleAccountReference => ({
19469
19207
  id: factories.string(),
19470
19208
  }),
@@ -19935,70 +19673,6 @@ const factories = {
19935
19673
  values: arrayOf(() => factories['io.flow.internal.v0.models.label_aliases']()),
19936
19674
  }),
19937
19675
 
19938
- 'io.flow.internal.v0.models.svitlana_item': (): io.flow.internal.v0.models.SvitlanaItem => ({
19939
- id: factories.string(),
19940
- number: factories.string(),
19941
- amount: factories.decimal(),
19942
- description: factories.string(),
19943
- type: factories['io.flow.internal.v0.enums.svitlana_type'](),
19944
- added_on: factories.date_time_iso_8601(),
19945
- }),
19946
-
19947
- 'io.flow.internal.v0.models.svitlana_item_deleted': (): io.flow.internal.v0.models.SvitlanaItemDeleted => ({
19948
- discriminator: 'svitlana_item_deleted',
19949
- event_id: factories.string(),
19950
- timestamp: factories.date_time_iso_8601(),
19951
- id: factories.string(),
19952
- }),
19953
-
19954
- 'io.flow.internal.v0.models.svitlana_item_form': (): io.flow.internal.v0.models.SvitlanaItemForm => ({
19955
- number: factories.string(),
19956
- amount: factories.decimal(),
19957
- description: factories.string(),
19958
- type: factories['io.flow.internal.v0.enums.svitlana_type'](),
19959
- }),
19960
-
19961
- 'io.flow.internal.v0.models.svitlana_item_upserted': (): io.flow.internal.v0.models.SvitlanaItemUpserted => ({
19962
- discriminator: 'svitlana_item_upserted',
19963
- event_id: factories.string(),
19964
- timestamp: factories.date_time_iso_8601(),
19965
- item: factories['io.flow.internal.v0.models.svitlana_item'](),
19966
- }),
19967
-
19968
- 'io.flow.internal.v0.models.svitlana_test': (): io.flow.internal.v0.models.SvitlanaTest => ({
19969
- name: factories.string(),
19970
- }),
19971
-
19972
- 'io.flow.internal.v0.models.tam_item': (): io.flow.internal.v0.models.TamItem => ({
19973
- id: factories.string(),
19974
- number: factories.string(),
19975
- amount: factories['io.flow.common.v0.models.price'](),
19976
- description: factories.string(),
19977
- type: factories['io.flow.internal.v0.enums.tam_item_type'](),
19978
- added_on: factories.date_iso_8601(),
19979
- }),
19980
-
19981
- 'io.flow.internal.v0.models.tam_item_deleted': (): io.flow.internal.v0.models.TamItemDeleted => ({
19982
- discriminator: 'tam_item_deleted',
19983
- event_id: factories.string(),
19984
- timestamp: factories.date_time_iso_8601(),
19985
- id: factories.string(),
19986
- }),
19987
-
19988
- 'io.flow.internal.v0.models.tam_item_form': (): io.flow.internal.v0.models.TamItemForm => ({
19989
- number: factories.string(),
19990
- amount: factories['io.flow.common.v0.models.price'](),
19991
- description: factories.string(),
19992
- type: factories['io.flow.internal.v0.enums.tam_item_type'](),
19993
- }),
19994
-
19995
- 'io.flow.internal.v0.models.tam_item_upserted': (): io.flow.internal.v0.models.TamItemUpserted => ({
19996
- discriminator: 'tam_item_upserted',
19997
- event_id: factories.string(),
19998
- timestamp: factories.date_time_iso_8601(),
19999
- item: factories['io.flow.internal.v0.models.tam_item'](),
20000
- }),
20001
-
20002
19676
  'io.flow.internal.v0.models.tariff_code_duty': (): io.flow.internal.v0.models.TariffCodeDuty => ({
20003
19677
  tariff_code: factories.string(),
20004
19678
  duties: objectOf(() => factories['io.flow.internal.v0.models.duties']()),
@@ -20195,37 +19869,6 @@ const factories = {
20195
19869
  name: factories.string(),
20196
19870
  }),
20197
19871
 
20198
- 'io.flow.internal.v0.models.thiago_item': (): io.flow.internal.v0.models.ThiagoItem => ({
20199
- id: factories.string(),
20200
- number: factories.string(),
20201
- amount: factories['io.flow.common.v0.models.price'](),
20202
- description: factories.string(),
20203
- type: factories['io.flow.internal.v0.enums.thiago_item_type'](),
20204
- added_on: factories.date_time_iso_8601(),
20205
- }),
20206
-
20207
- 'io.flow.internal.v0.models.thiago_item_deleted': (): io.flow.internal.v0.models.ThiagoItemDeleted => ({
20208
- discriminator: 'thiago_item_deleted',
20209
- event_id: factories.string(),
20210
- timestamp: factories.date_time_iso_8601(),
20211
- id: factories.string(),
20212
- }),
20213
-
20214
- 'io.flow.internal.v0.models.thiago_item_form': (): io.flow.internal.v0.models.ThiagoItemForm => ({
20215
- number: factories.string(),
20216
- amount: factories['io.flow.common.v0.models.price'](),
20217
- description: factories.string(),
20218
- type: factories['io.flow.internal.v0.enums.thiago_item_type'](),
20219
- added_on: factories.date_time_iso_8601(),
20220
- }),
20221
-
20222
- 'io.flow.internal.v0.models.thiago_item_upserted': (): io.flow.internal.v0.models.ThiagoItemUpserted => ({
20223
- discriminator: 'thiago_item_upserted',
20224
- event_id: factories.string(),
20225
- timestamp: factories.date_time_iso_8601(),
20226
- item: factories['io.flow.internal.v0.models.thiago_item'](),
20227
- }),
20228
-
20229
19872
  'io.flow.internal.v0.models.third_party_logistics_partner': (): io.flow.internal.v0.models.ThirdPartyLogisticsPartner => ({
20230
19873
  warehouse_address: factories['io.flow.common.v0.models.billing_address'](),
20231
19874
  warehouse_url: factories.string(),
@@ -20361,6 +20004,31 @@ const factories = {
20361
20004
  job: factories['io.flow.internal.v0.models.tracking_assurance_job'](),
20362
20005
  }),
20363
20006
 
20007
+ 'io.flow.internal.v0.models.tracking_carrier_return_label': (): io.flow.internal.v0.models.TrackingCarrierReturnLabel => ({
20008
+ id: factories.string(),
20009
+ carrier_tracking_number: factories.string(),
20010
+ alternate_tracking_numbers: arrayOf(() => factories.string()),
20011
+ carrier_id: factories.string(),
20012
+ outbound_label_id: factories.string(),
20013
+ s3file: factories.string(),
20014
+ origin: factories.object(),
20015
+ destination: factories.object(),
20016
+ }),
20017
+
20018
+ 'io.flow.internal.v0.models.tracking_carrier_return_label_deleted': (): io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted => ({
20019
+ discriminator: 'tracking_carrier_return_label_deleted',
20020
+ event_id: factories.string(),
20021
+ timestamp: factories.date_time_iso_8601(),
20022
+ id: factories.string(),
20023
+ }),
20024
+
20025
+ 'io.flow.internal.v0.models.tracking_carrier_return_label_upserted': (): io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted => ({
20026
+ discriminator: 'tracking_carrier_return_label_upserted',
20027
+ event_id: factories.string(),
20028
+ timestamp: factories.date_time_iso_8601(),
20029
+ tracking_carrier_return_label: factories['io.flow.internal.v0.models.tracking_carrier_return_label'](),
20030
+ }),
20031
+
20364
20032
  'io.flow.internal.v0.models.tracking_debug_force_transit_form': (): io.flow.internal.v0.models.TrackingDebugForceTransitForm => ({
20365
20033
  description: factories.string(),
20366
20034
  }),
@@ -20485,14 +20153,6 @@ const factories = {
20485
20153
  credentials: factories['io.flow.internal.v0.unions.carrier_credentials'](),
20486
20154
  }),
20487
20155
 
20488
- 'io.flow.internal.v0.models.tracking_request_upserted': (): io.flow.internal.v0.models.TrackingRequestUpserted => ({
20489
- discriminator: 'tracking_request_upserted',
20490
- event_id: factories.string(),
20491
- timestamp: factories.date_time_iso_8601(),
20492
- organization: factories.string(),
20493
- tracking_request: factories['io.flow.internal.v0.models.tracking_request'](),
20494
- }),
20495
-
20496
20156
  'io.flow.internal.v0.models.tracking_response': (): io.flow.internal.v0.models.TrackingResponse => ({
20497
20157
  carrier: factories.string(),
20498
20158
  carrier_tracking_number: factories.string(),
@@ -20500,12 +20160,32 @@ const factories = {
20500
20160
  tracking_events: arrayOf(() => factories['io.flow.internal.v0.models.tracking_event']()),
20501
20161
  }),
20502
20162
 
20503
- 'io.flow.internal.v0.models.tracking_response_upserted': (): io.flow.internal.v0.models.TrackingResponseUpserted => ({
20504
- discriminator: 'tracking_response_upserted',
20163
+ 'io.flow.internal.v0.models.tracking_subscription': (): io.flow.internal.v0.models.TrackingSubscription => ({
20164
+ id: factories.string(),
20165
+ organization_id: factories.string(),
20166
+ carrier_tracking_number: factories.string(),
20167
+ carrier_id: factories.string(),
20168
+ label_id: factories.string(),
20169
+ label_origin: factories['io.flow.fulfillment.v0.models.shipping_address'](),
20170
+ label_destination: factories['io.flow.fulfillment.v0.models.shipping_address'](),
20171
+ status: factories['io.flow.tracking.v0.enums.tracking_status'](),
20172
+ events: arrayOf(() => factories['io.flow.tracking.v0.models.tracking_event']()),
20173
+ external_reference_key: factories.string(),
20174
+ external_reference_source: factories.string(),
20175
+ }),
20176
+
20177
+ 'io.flow.internal.v0.models.tracking_subscription_deleted': (): io.flow.internal.v0.models.TrackingSubscriptionDeleted => ({
20178
+ discriminator: 'tracking_subscription_deleted',
20505
20179
  event_id: factories.string(),
20506
20180
  timestamp: factories.date_time_iso_8601(),
20507
- organization: factories.string(),
20508
- tracking_response: factories['io.flow.internal.v0.models.tracking_response'](),
20181
+ id: factories.string(),
20182
+ }),
20183
+
20184
+ 'io.flow.internal.v0.models.tracking_subscription_upserted': (): io.flow.internal.v0.models.TrackingSubscriptionUpserted => ({
20185
+ discriminator: 'tracking_subscription_upserted',
20186
+ event_id: factories.string(),
20187
+ timestamp: factories.date_time_iso_8601(),
20188
+ tracking_subscription: factories['io.flow.internal.v0.models.tracking_subscription'](),
20509
20189
  }),
20510
20190
 
20511
20191
  'io.flow.internal.v0.models.tracking_upserted': (): io.flow.internal.v0.models.TrackingUpserted => ({
@@ -21067,8 +20747,6 @@ const factories = {
21067
20747
  () => factories['io.flow.internal.v0.models.adyen_refund_upserted'](),
21068
20748
  () => factories['io.flow.internal.v0.models.adyen_dispute_upserted'](),
21069
20749
  () => factories['io.flow.internal.v0.models.adyen_dispute_deleted'](),
21070
- () => factories['io.flow.internal.v0.models.index_assignment_upserted'](),
21071
- () => factories['io.flow.internal.v0.models.index_assignment_deleted'](),
21072
20750
  () => factories['io.flow.internal.v0.models.fulfillment_upserted'](),
21073
20751
  () => factories['io.flow.internal.v0.models.fulfillment_deleted'](),
21074
20752
  () => factories['io.flow.internal.v0.models.merchant_upserted'](),
@@ -21169,13 +20847,6 @@ const factories = {
21169
20847
  () => factories['io.flow.internal.v0.models.dispute_upserted'](),
21170
20848
  () => factories['io.flow.internal.v0.models.dispute_deleted'](),
21171
20849
  () => factories['io.flow.internal.v0.models.duty_rates_published_v2'](),
21172
- () => factories['io.flow.internal.v0.models.duty_rate_request'](),
21173
- () => factories['io.flow.internal.v0.models.duty_rate_bulk_request'](),
21174
- () => factories['io.flow.internal.v0.models.duty_raw_upserted'](),
21175
- () => factories['io.flow.internal.v0.models.duty_raw_bulk_upserted'](),
21176
- () => factories['io.flow.internal.v0.models.duty_rate_upserted'](),
21177
- () => factories['io.flow.internal.v0.models.duty_rate_response'](),
21178
- () => factories['io.flow.internal.v0.models.duty_rate_bulk_response'](),
21179
20850
  () => factories['io.flow.internal.v0.models.item_sales_margin_deleted'](),
21180
20851
  () => factories['io.flow.internal.v0.models.item_sales_margin_upserted'](),
21181
20852
  () => factories['io.flow.internal.v0.models.order_attribute_deleted'](),
@@ -21247,7 +20918,6 @@ const factories = {
21247
20918
  () => factories['io.flow.internal.v0.models.harmonization_codes_import'](),
21248
20919
  () => factories['io.flow.internal.v0.models.item_classification_created'](),
21249
20920
  () => factories['io.flow.internal.v0.models.harmonize_fully_request_v2'](),
21250
- () => factories['io.flow.internal.v0.models.hybris_catalog_items_import_request'](),
21251
20921
  () => factories['io.flow.internal.v0.models.import_completed'](),
21252
20922
  () => factories['io.flow.internal.v0.models.import_failed'](),
21253
20923
  () => factories['io.flow.internal.v0.models.time_to_classify_upserted'](),
@@ -21311,6 +20981,8 @@ const factories = {
21311
20981
  () => factories['io.flow.internal.v0.models.partner_organization_settings_deleted'](),
21312
20982
  () => factories['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'](),
21313
20983
  () => factories['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'](),
20984
+ () => factories['io.flow.internal.v0.models.partner_tracking_subscription_upserted'](),
20985
+ () => factories['io.flow.internal.v0.models.partner_tracking_subscription_deleted'](),
21314
20986
  () => factories['io.flow.internal.v0.models.internal_authorization_upserted'](),
21315
20987
  () => factories['io.flow.internal.v0.models.internal_authorization_deleted'](),
21316
20988
  () => factories['io.flow.internal.v0.models.afterpay_authorization_upserted'](),
@@ -21337,7 +21009,8 @@ const factories = {
21337
21009
  () => factories['io.flow.internal.v0.models.paypal_execution_upserted'](),
21338
21010
  () => factories['io.flow.internal.v0.models.paypal_refund_deleted'](),
21339
21011
  () => factories['io.flow.internal.v0.models.paypal_refund_upserted'](),
21340
- () => factories['io.flow.internal.v0.models.pricing_indicator'](),
21012
+ () => factories['io.flow.internal.v0.models.paypal_dispute_upserted'](),
21013
+ () => factories['io.flow.internal.v0.models.paypal_dispute_deleted'](),
21341
21014
  () => factories['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'](),
21342
21015
  () => factories['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'](),
21343
21016
  () => factories['io.flow.internal.v0.models.order_rates_published_v3'](),
@@ -21362,6 +21035,8 @@ const factories = {
21362
21035
  () => factories['io.flow.internal.v0.models.organization_restriction_status_deleted'](),
21363
21036
  () => factories['io.flow.internal.v0.models.screening_status_change_upserted'](),
21364
21037
  () => factories['io.flow.internal.v0.models.screening_status_change_deleted'](),
21038
+ () => factories['io.flow.internal.v0.models.restrictions_dailyops_upserted'](),
21039
+ () => factories['io.flow.internal.v0.models.restrictions_dailyops_deleted'](),
21365
21040
  () => factories['io.flow.internal.v0.models.shopify_shop_upserted'](),
21366
21041
  () => factories['io.flow.internal.v0.models.shopify_shop_deleted'](),
21367
21042
  () => factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](),
@@ -21384,6 +21059,10 @@ const factories = {
21384
21059
  () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](),
21385
21060
  () => factories['io.flow.internal.v0.models.shopify_product_bundle_upserted'](),
21386
21061
  () => factories['io.flow.internal.v0.models.shopify_product_bundle_deleted'](),
21062
+ () => factories['io.flow.internal.v0.models.shopify_markets_order_edit_summary_published'](),
21063
+ () => factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_published'](),
21064
+ () => factories['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted'](),
21065
+ () => factories['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'](),
21387
21066
  () => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'](),
21388
21067
  () => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'](),
21389
21068
  () => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](),
@@ -21400,28 +21079,6 @@ const factories = {
21400
21079
  () => factories['io.flow.internal.v0.models.stripe_dispute_deleted'](),
21401
21080
  () => factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](),
21402
21081
  () => factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](),
21403
- () => factories['io.flow.internal.v0.models.svitlana_item_upserted'](),
21404
- () => factories['io.flow.internal.v0.models.svitlana_item_deleted'](),
21405
- () => factories['io.flow.internal.v0.models.colm_item_upserted'](),
21406
- () => factories['io.flow.internal.v0.models.colm_item_deleted'](),
21407
- () => factories['io.flow.internal.v0.models.eldar_item_upserted'](),
21408
- () => factories['io.flow.internal.v0.models.eldar_item_deleted'](),
21409
- () => factories['io.flow.internal.v0.models.harinath_item_upserted'](),
21410
- () => factories['io.flow.internal.v0.models.harinath_item_deleted'](),
21411
- () => factories['io.flow.internal.v0.models.konstantin_item_upserted'](),
21412
- () => factories['io.flow.internal.v0.models.konstantin_item_deleted'](),
21413
- () => factories['io.flow.internal.v0.models.matias_item_upserted'](),
21414
- () => factories['io.flow.internal.v0.models.matias_item_deleted'](),
21415
- () => factories['io.flow.internal.v0.models.michaelyan_item_upserted'](),
21416
- () => factories['io.flow.internal.v0.models.michaelyan_item_deleted'](),
21417
- () => factories['io.flow.internal.v0.models.miljenko_item_upserted'](),
21418
- () => factories['io.flow.internal.v0.models.miljenko_item_deleted'](),
21419
- () => factories['io.flow.internal.v0.models.shruti_demo_item_upserted'](),
21420
- () => factories['io.flow.internal.v0.models.shruti_demo_item_deleted'](),
21421
- () => factories['io.flow.internal.v0.models.tam_item_upserted'](),
21422
- () => factories['io.flow.internal.v0.models.tam_item_deleted'](),
21423
- () => factories['io.flow.internal.v0.models.thiago_item_upserted'](),
21424
- () => factories['io.flow.internal.v0.models.thiago_item_deleted'](),
21425
21082
  () => factories['io.flow.internal.v0.models.tracking_processing_error_upserted'](),
21426
21083
  () => factories['io.flow.internal.v0.models.tracking_processing_error_deleted'](),
21427
21084
  () => factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2'](),
@@ -21434,10 +21091,12 @@ const factories = {
21434
21091
  () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'](),
21435
21092
  () => factories['io.flow.internal.v0.models.tracking_assurance_job_upserted'](),
21436
21093
  () => factories['io.flow.internal.v0.models.tracking_assurance_job_deleted'](),
21094
+ () => factories['io.flow.internal.v0.models.tracking_subscription_upserted'](),
21095
+ () => factories['io.flow.internal.v0.models.tracking_subscription_deleted'](),
21096
+ () => factories['io.flow.internal.v0.models.tracking_carrier_return_label_upserted'](),
21097
+ () => factories['io.flow.internal.v0.models.tracking_carrier_return_label_deleted'](),
21437
21098
  () => factories['io.flow.internal.v0.models.tracking_label_dimensions_upserted'](),
21438
21099
  () => factories['io.flow.internal.v0.models.tracking_label_dimensions_deleted'](),
21439
- () => factories['io.flow.internal.v0.models.tracking_request_upserted'](),
21440
- () => factories['io.flow.internal.v0.models.tracking_response_upserted'](),
21441
21100
  () => factories['io.flow.internal.v0.models.user_upserted_v2'](),
21442
21101
  () => factories['io.flow.internal.v0.models.user_deleted_v2'](),
21443
21102
  ]);
@@ -21685,11 +21344,6 @@ const factories = {
21685
21344
  return f();
21686
21345
  },
21687
21346
 
21688
- 'io.flow.internal.v0.unions.money_rule': (): io.flow.internal.v0.unions.MoneyRule => {
21689
- const f = faker.helpers.arrayElement([() => factories['io.flow.internal.v0.models.money_percentage']()]);
21690
- return f();
21691
- },
21692
-
21693
21347
  'io.flow.internal.v0.unions.optin_prompt_display': (): io.flow.internal.v0.unions.OptinPromptDisplay => {
21694
21348
  const f = faker.helpers.arrayElement([
21695
21349
  () => factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](),
@@ -22280,6 +21934,22 @@ const factories = {
22280
21934
  ]),
22281
21935
 
22282
21936
  'io.flow.label.v0.enums.shipment_recipient': (): io.flow.label.v0.enums.ShipmentRecipient => faker.helpers.arrayElement(['customer', 'return', 'crossdock']),
21937
+
21938
+ 'io.flow.label.v0.enums.shipping_label_error_code': (): io.flow.label.v0.enums.ShippingLabelErrorCode => faker.helpers.arrayElement([
21939
+ 'generic_error',
21940
+ 'cancelled_order',
21941
+ 'carrier_outage',
21942
+ 'catalog_issue',
21943
+ 'invalid_destination',
21944
+ 'invalid_origin',
21945
+ 'invalid_shipping_parameters',
21946
+ 'merchant_error',
21947
+ 'order_not_found',
21948
+ 'order_processing',
21949
+ 'restricted_item',
21950
+ 'unsupported_lane',
21951
+ ]),
21952
+
22283
21953
  'io.flow.label.v0.enums.tracking_number_type': (): io.flow.label.v0.enums.TrackingNumberType => faker.helpers.arrayElement(['flow', 'carrier']),
22284
21954
 
22285
21955
  'io.flow.label.v0.models.additional_services_requested': (): io.flow.label.v0.models.AdditionalServicesRequested => ({
@@ -22421,6 +22091,11 @@ const factories = {
22421
22091
  required: factories.boolean(),
22422
22092
  }),
22423
22093
 
22094
+ 'io.flow.label.v0.models.shipping_label_error': (): io.flow.label.v0.models.ShippingLabelError => ({
22095
+ code: factories['io.flow.label.v0.enums.shipping_label_error_code'](),
22096
+ messages: arrayOf(() => factories.string()),
22097
+ }),
22098
+
22424
22099
  'io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate': (): io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate => ({
22425
22100
  units: factories['io.flow.trueup.v0.models.label_units'](),
22426
22101
  base: factories['io.flow.trueup.v0.models.label_base'](),
@@ -23376,6 +23051,15 @@ const factories = {
23376
23051
  id: factories.string(),
23377
23052
  }),
23378
23053
 
23054
+ 'io.flow.partner.v0.models.partner_tracking_subscription': (): io.flow.partner.v0.models.PartnerTrackingSubscription => ({
23055
+ id: factories.string(),
23056
+ carrier_tracking_number: factories.string(),
23057
+ carrier_id: factories.string(),
23058
+ source: factories.string(),
23059
+ reference_key: factories.string(),
23060
+ created_at: factories.date_time_iso_8601(),
23061
+ }),
23062
+
23379
23063
  'io.flow.partner.v0.models.summary_label_form': (): io.flow.partner.v0.models.SummaryLabelForm => ({
23380
23064
  discriminator: 'summary_label_form',
23381
23065
  organization: factories.string(),
@@ -25335,6 +25019,11 @@ const factories = {
25335
25019
  eci: factories.string(),
25336
25020
  liability_sift: factories.boolean(),
25337
25021
  version: factories.string(),
25022
+ authenticated: factories.boolean(),
25023
+ authenticated_result: factories.string(),
25024
+ offered: factories.boolean(),
25025
+ offered_result: factories.string(),
25026
+ sca_exemption: factories.string(),
25338
25027
  }),
25339
25028
 
25340
25029
  'io.flow.payment.v0.models.threeds_challenge_action_details': (): io.flow.payment.v0.models.ThreedsChallengeActionDetails => ({
@@ -25881,35 +25570,6 @@ const factories = {
25881
25570
  return f();
25882
25571
  },
25883
25572
 
25884
- 'io.flow.pricing.indicator.internal.event.v0.enums.pricing_indicator_status': (): io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus => faker.helpers.arrayElement(['complete', 'in_progress']),
25885
- 'io.flow.pricing.indicator.internal.event.v0.enums.service_name': (): io.flow.pricing.indicator.internal.event.v0.enums.ServiceName => faker.helpers.arrayElement(['catalog', 'demandware', 'metric']),
25886
-
25887
- 'io.flow.pricing.indicator.internal.event.v0.models.details': (): io.flow.pricing.indicator.internal.event.v0.models.Details => ({
25888
- catalog_item: factories['io.flow.common.v0.models.catalog_item_summary'](),
25889
- experience: factories['io.flow.common.v0.models.experience_summary'](),
25890
- upserted_at: factories.date_time_iso_8601(),
25891
- time_elapsed_since_upserted: factories.long(),
25892
- }),
25893
-
25894
- 'io.flow.pricing.indicator.internal.event.v0.models.pricing_indicator': (): io.flow.pricing.indicator.internal.event.v0.models.PricingIndicator => ({
25895
- discriminator: 'pricing_indicator',
25896
- event_id: factories.string(),
25897
- timestamp: factories.date_time_iso_8601(),
25898
- organization: factories.string(),
25899
- published_from: factories['io.flow.pricing.indicator.internal.event.v0.enums.service_name'](),
25900
- status: factories['io.flow.pricing.indicator.internal.event.v0.enums.pricing_indicator_status'](),
25901
- event_identifier: factories.string(),
25902
- details: factories['io.flow.pricing.indicator.internal.event.v0.models.details'](),
25903
- }),
25904
-
25905
- 'io.flow.pricing.indicator.internal.event.v0.unions.pricing_indicator_event': (): io.flow.pricing.indicator.internal.event.v0.unions.PricingIndicatorEvent => {
25906
- const f = faker.helpers.arrayElement([
25907
- () => factories['io.flow.pricing.indicator.internal.event.v0.models.pricing_indicator'](),
25908
- ]);
25909
-
25910
- return f();
25911
- },
25912
-
25913
25573
  'io.flow.query.builder.v0.enums.available_filter_format': (): io.flow.query.builder.v0.enums.AvailableFilterFormat => faker.helpers.arrayElement([
25914
25574
  'boolean',
25915
25575
  'date',
@@ -28137,6 +27797,8 @@ const factories = {
28137
27797
  webhook: factories['io.flow.shopify.external.v0.models.webhook'](),
28138
27798
  }),
28139
27799
 
27800
+ 'io.flow.shopify.markets.internal.event.v0.enums.shopify_incoterm_configuration': (): io.flow.shopify.markets.internal.event.v0.enums.ShopifyIncotermConfiguration => faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']),
27801
+
28140
27802
  'io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted => ({
28141
27803
  discriminator: 'channel_order_summary_deleted',
28142
27804
  event_id: factories.string(),
@@ -28184,6 +27846,45 @@ const factories = {
28184
27846
  order_tax_and_duty_inclusivity_setting: factories['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'](),
28185
27847
  }),
28186
27848
 
27849
+ 'io.flow.shopify.markets.internal.event.v0.models.shopify_incoterm_includes': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermIncludes => ({
27850
+ duties: factories.boolean(),
27851
+ taxes: factories.boolean(),
27852
+ }),
27853
+
27854
+ 'io.flow.shopify.markets.internal.event.v0.models.shopify_incoterm_summary_error_data': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorData => ({
27855
+ id: factories.string(),
27856
+ shopify_order_id: factories.string(),
27857
+ order_number: factories.string(),
27858
+ configuration: factories['io.flow.shopify.markets.internal.event.v0.enums.shopify_incoterm_configuration'](),
27859
+ includes: factories['io.flow.shopify.markets.internal.event.v0.models.shopify_incoterm_includes'](),
27860
+ reason: factories.string(),
27861
+ order_submitted_at: factories.date_time_iso_8601(),
27862
+ }),
27863
+
27864
+ 'io.flow.shopify.markets.internal.event.v0.models.shopify_incoterm_summary_error_published': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished => ({
27865
+ discriminator: 'shopify_incoterm_summary_error_published',
27866
+ event_id: factories.string(),
27867
+ timestamp: factories.date_time_iso_8601(),
27868
+ organization: factories.string(),
27869
+ data: factories['io.flow.shopify.markets.internal.event.v0.models.shopify_incoterm_summary_error_data'](),
27870
+ }),
27871
+
27872
+ 'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted => ({
27873
+ discriminator: 'shopify_markets_best_selling_product_deleted',
27874
+ event_id: factories.string(),
27875
+ timestamp: factories.date_time_iso_8601(),
27876
+ organization: factories.string(),
27877
+ id: factories.string(),
27878
+ }),
27879
+
27880
+ 'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_upserted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted => ({
27881
+ discriminator: 'shopify_markets_best_selling_product_upserted',
27882
+ event_id: factories.string(),
27883
+ timestamp: factories.date_time_iso_8601(),
27884
+ organization: factories.string(),
27885
+ shopify_markets_best_selling_product: factories['io.flow.shopify.markets.internal.v0.models.shopify_markets_best_selling_product'](),
27886
+ }),
27887
+
28187
27888
  'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted => ({
28188
27889
  discriminator: 'shopify_markets_metrics_deleted',
28189
27890
  event_id: factories.string(),
@@ -28211,6 +27912,19 @@ const factories = {
28211
27912
  shopify_markets_order: factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order'](),
28212
27913
  }),
28213
27914
 
27915
+ 'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_edit_summary_data': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryData => ({
27916
+ channel_order_acceptance: factories['io.flow.channel.internal.v0.models.channel_order_acceptance'](),
27917
+ edited_at: factories.date_time_iso_8601(),
27918
+ }),
27919
+
27920
+ 'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_edit_summary_published': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryPublished => ({
27921
+ discriminator: 'shopify_markets_order_edit_summary_published',
27922
+ event_id: factories.string(),
27923
+ timestamp: factories.date_time_iso_8601(),
27924
+ organization: factories.string(),
27925
+ data: factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_edit_summary_data'](),
27926
+ }),
27927
+
28214
27928
  'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_upserted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted => ({
28215
27929
  discriminator: 'shopify_markets_order_upserted',
28216
27930
  event_id: factories.string(),
@@ -28303,6 +28017,10 @@ const factories = {
28303
28017
  () => factories['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](),
28304
28018
  () => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_product_bundle_upserted'](),
28305
28019
  () => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_product_bundle_deleted'](),
28020
+ () => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_edit_summary_published'](),
28021
+ () => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_incoterm_summary_error_published'](),
28022
+ () => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_upserted'](),
28023
+ () => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'](),
28306
28024
  ]);
28307
28025
 
28308
28026
  return f();
@@ -28420,6 +28138,7 @@ const factories = {
28420
28138
  inventory_item_id: factories.long(),
28421
28139
  shopify_shop_id: factories.long(),
28422
28140
  shopify_inventory_item: factories['io.flow.shopify.external.v0.models.shopify_inventory_item_summary'](),
28141
+ deleted_at: factories.date_time_iso_8601(),
28423
28142
  }),
28424
28143
 
28425
28144
  'io.flow.shopify.markets.internal.v0.models.markets_order': (): io.flow.shopify.markets.internal.v0.models.MarketsOrder => ({
@@ -28457,6 +28176,10 @@ const factories = {
28457
28176
  destination: factories.string(),
28458
28177
  }),
28459
28178
 
28179
+ 'io.flow.shopify.markets.internal.v0.models.shopify_markets_best_selling_product': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct => ({
28180
+ id: factories.string(),
28181
+ }),
28182
+
28460
28183
  'io.flow.shopify.markets.internal.v0.models.shopify_markets_discrepancy': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancy => ({
28461
28184
  organization_id: factories.string(),
28462
28185
  count: factories.long(),
@@ -30197,6 +29920,18 @@ const factories = {
30197
29920
  'lost',
30198
29921
  ]),
30199
29922
 
29923
+ 'io.flow.stripe.v0.enums.early_fraud_warning_event_type': (): io.flow.stripe.v0.enums.EarlyFraudWarningEventType => faker.helpers.arrayElement(['radar.early_fraud_warning']),
29924
+
29925
+ 'io.flow.stripe.v0.enums.early_fraud_warning_type': (): io.flow.stripe.v0.enums.EarlyFraudWarningType => faker.helpers.arrayElement([
29926
+ 'card_never_received',
29927
+ 'fraudulent_card_application',
29928
+ 'made_with_counterfeit_card',
29929
+ 'made_with_lost_card',
29930
+ 'made_with_stolen_card',
29931
+ 'unauthorized_use_of_card',
29932
+ 'misc',
29933
+ ]),
29934
+
30200
29935
  'io.flow.stripe.v0.enums.error_code': (): io.flow.stripe.v0.enums.ErrorCode => faker.helpers.arrayElement([
30201
29936
  'invalid_number',
30202
29937
  'invalid_expiry_month',
@@ -31493,6 +31228,17 @@ const factories = {
31493
31228
  previous_attributes: factories.object(),
31494
31229
  }),
31495
31230
 
31231
+ 'io.flow.stripe.v0.models.stripe_early_fraud_warning_event': (): io.flow.stripe.v0.models.StripeEarlyFraudWarningEvent => ({
31232
+ id: factories.string(),
31233
+ object: factories['io.flow.stripe.v0.enums.early_fraud_warning_event_type'](),
31234
+ actionable: factories.boolean(),
31235
+ charge: factories.string(),
31236
+ created: factories.long(),
31237
+ fraud_type: factories['io.flow.stripe.v0.enums.early_fraud_warning_type'](),
31238
+ livemode: factories.boolean(),
31239
+ payment_intent: factories.string(),
31240
+ }),
31241
+
31496
31242
  'io.flow.stripe.v0.models.stripe_error': (): io.flow.stripe.v0.models.StripeError => ({
31497
31243
  type: factories['io.flow.stripe.v0.enums.error_type'](),
31498
31244
  charge: factories.string(),
@@ -31827,6 +31573,7 @@ const factories = {
31827
31573
  status: factories['io.flow.tracking.v0.enums.tracking_status'](),
31828
31574
  timestamp: factories.date_time_iso_8601(),
31829
31575
  description: factories.string(),
31576
+ aggregator_status_code: factories.string(),
31830
31577
  }),
31831
31578
 
31832
31579
  'io.flow.tracking.v0.models.tracking_event_form': (): io.flow.tracking.v0.models.TrackingEventForm => ({
@@ -32016,6 +31763,7 @@ export const makeAccountSettingsDeleted = () => factories['io.flow.internal.v0.m
32016
31763
  export const makeAccountSettingsUpserted = () => factories['io.flow.internal.v0.models.account_settings_upserted']();
32017
31764
  export const makeAccountSource = () => factories['io.flow.internal.v0.models.account_source']();
32018
31765
  export const makeAccountStatistics = () => factories['io.flow.internal.v0.models.account_statistics']();
31766
+ export const makeAccountStatisticsAdditionalBalances = () => factories['io.flow.internal.v0.models.account_statistics_additional_balances']();
32019
31767
  export const makeAccountSummary = () => factories['io.flow.internal.v0.models.account_summary']();
32020
31768
  export const makeAccountTransactionsExportRequest = () => factories['io.flow.internal.v0.models.account_transactions_export_request']();
32021
31769
  export const makeAccountType = () => factories['io.flow.internal.v0.enums.account_type']();
@@ -32091,7 +31839,6 @@ export const makeAlertFailureSummary = () => factories['io.flow.internal.v0.mode
32091
31839
  export const makeAlertFailureSummaryDetail = () => factories['io.flow.internal.v0.models.alert_failure_summary_detail']();
32092
31840
  export const makeAlertImportSummary = () => factories['io.flow.internal.v0.models.alert_import_summary']();
32093
31841
  export const makeAlertRequeueSummary = () => factories['io.flow.internal.v0.models.alert_requeue_summary']();
32094
- export const makeAlgoliaIndexAssignment = () => factories['io.flow.internal.v0.models.algolia_index_assignment']();
32095
31842
  export const makeAllItemsExport = () => factories['io.flow.internal.v0.models.all_items_export']();
32096
31843
  export const makeAllOrganizationsMembership = () => factories['io.flow.internal.v0.models.all_organizations_membership']();
32097
31844
  export const makeAllocationItemReference = () => factories['io.flow.internal.v0.models.allocation_item_reference']();
@@ -32117,7 +31864,9 @@ export const makeAuthorizedOrderCharge = () => factories['io.flow.internal.v0.un
32117
31864
  export const makeAuthorizedShippingCharge = () => factories['io.flow.internal.v0.models.authorized_shipping_charge']();
32118
31865
  export const makeAutoRestrictRule = () => factories['io.flow.internal.v0.enums.auto_restrict_rule']();
32119
31866
  export const makeAutoReviewCriteria = () => factories['io.flow.internal.v0.models.auto_review_criteria']();
31867
+ export const makeBankAccount = () => factories['io.flow.internal.v0.models.bank_account']();
32120
31868
  export const makeBankAccountReference = () => factories['io.flow.internal.v0.models.bank_account_reference']();
31869
+ export const makeBankAccountStatus = () => factories['io.flow.internal.v0.enums.bank_account_status']();
32121
31870
  export const makeBankPayment = () => factories['io.flow.internal.v0.models.bank_payment']();
32122
31871
  export const makeBankPaymentDeletedV2 = () => factories['io.flow.internal.v0.models.bank_payment_deleted_v2']();
32123
31872
  export const makeBankPaymentForm = () => factories['io.flow.internal.v0.models.bank_payment_form']();
@@ -32396,10 +32145,8 @@ export const makeCliLogEntry = () => factories['io.flow.internal.v0.models.cli_l
32396
32145
  export const makeCliLogEntryForm = () => factories['io.flow.internal.v0.models.cli_log_entry_form']();
32397
32146
  export const makeClothingAgeClassification = () => factories['io.flow.internal.v0.enums.clothing_age_classification']();
32398
32147
  export const makeColmItem = () => factories['io.flow.internal.v0.models.colm_item']();
32399
- export const makeColmItemDeleted = () => factories['io.flow.internal.v0.models.colm_item_deleted']();
32400
32148
  export const makeColmItemForm = () => factories['io.flow.internal.v0.models.colm_item_form']();
32401
32149
  export const makeColmItemType = () => factories['io.flow.internal.v0.enums.colm_item_type']();
32402
- export const makeColmItemUpserted = () => factories['io.flow.internal.v0.models.colm_item_upserted']();
32403
32150
  export const makeCommercialInvoiceComparison = () => factories['io.flow.internal.v0.models.commercial_invoice_comparison']();
32404
32151
  export const makeCommercialInvoiceInternal = () => factories['io.flow.internal.v0.models.commercial_invoice_internal']();
32405
32152
  export const makeCommercialInvoiceInternalDeleted = () => factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted']();
@@ -32426,9 +32173,6 @@ export const makeContentSchemaSummary = () => factories['io.flow.internal.v0.mod
32426
32173
  export const makeContentStatus = () => factories['io.flow.internal.v0.enums.content_status']();
32427
32174
  export const makeContentType = () => factories['io.flow.internal.v0.enums.content_type']();
32428
32175
  export const makeContentTypeCast = () => factories['io.flow.internal.v0.enums.content_type_cast']();
32429
- export const makeCost = () => factories['io.flow.internal.v0.models.cost']();
32430
- export const makeCostRule = () => factories['io.flow.internal.v0.models.cost_rule']();
32431
- export const makeCostType = () => factories['io.flow.internal.v0.enums.cost_type']();
32432
32176
  export const makeCountryPickerCountry = () => factories['io.flow.internal.v0.models.country_picker_country']();
32433
32177
  export const makeCountryPickerCountryData = () => factories['io.flow.internal.v0.models.country_picker_country_data']();
32434
32178
  export const makeCountryPickerCurrency = () => factories['io.flow.internal.v0.models.country_picker_currency']();
@@ -32462,6 +32206,7 @@ export const makeDailyValueDeleted = () => factories['io.flow.internal.v0.models
32462
32206
  export const makeDailyValueUpserted = () => factories['io.flow.internal.v0.models.daily_value_upserted']();
32463
32207
  export const makeDebugAccountingTransaction = () => factories['io.flow.internal.v0.models.debug_accounting_transaction']();
32464
32208
  export const makeDebugAccountingTransactionType = () => factories['io.flow.internal.v0.enums.debug_accounting_transaction_type']();
32209
+ export const makeDebugBankingDetails = () => factories['io.flow.internal.v0.models.debug_banking_details']();
32465
32210
  export const makeDebugDetails = () => factories['io.flow.internal.v0.models.debug_details']();
32466
32211
  export const makeDebugFulfillmentDelta = () => factories['io.flow.internal.v0.models.debug_fulfillment_delta']();
32467
32212
  export const makeDebugLabel = () => factories['io.flow.internal.v0.models.debug_label']();
@@ -32493,7 +32238,6 @@ export const makeDeliveredDutyPreference = () => factories['io.flow.internal.v0.
32493
32238
  export const makeDeliveredDutyPreferenceForm = () => factories['io.flow.internal.v0.models.delivered_duty_preference_form']();
32494
32239
  export const makeDeminimisAdjustmentType = () => factories['io.flow.internal.v0.enums.deminimis_adjustment_type']();
32495
32240
  export const makeDestinationError = () => factories['io.flow.internal.v0.models.destination_error']();
32496
- export const makeDetails = () => factories['io.flow.internal.v0.models.details']();
32497
32241
  export const makeDhl = () => factories['io.flow.internal.v0.models.dhl']();
32498
32242
  export const makeDhlEcommerce = () => factories['io.flow.internal.v0.models.dhl_ecommerce']();
32499
32243
  export const makeDict = () => factories['io.flow.internal.v0.models.dict']();
@@ -32529,6 +32273,7 @@ export const makeDisputeOrderReference = () => factories['io.flow.internal.v0.mo
32529
32273
  export const makeDisputeOrganizationReference = () => factories['io.flow.internal.v0.models.dispute_organization_reference']();
32530
32274
  export const makeDisputeOverrideUpdateForm = () => factories['io.flow.internal.v0.models.dispute_override_update_form']();
32531
32275
  export const makeDisputeProcessor = () => factories['io.flow.internal.v0.enums.dispute_processor']();
32276
+ export const makeDisputeRecord = () => factories['io.flow.internal.v0.models.dispute_record']();
32532
32277
  export const makeDisputeReportingCategory = () => factories['io.flow.internal.v0.enums.dispute_reporting_category']();
32533
32278
  export const makeDisputeStatus = () => factories['io.flow.internal.v0.enums.dispute_status']();
32534
32279
  export const makeDisputeStatusForm = () => factories['io.flow.internal.v0.models.dispute_status_form']();
@@ -32544,21 +32289,13 @@ export const makeDutyExemptItemTypes = () => factories['io.flow.internal.v0.enum
32544
32289
  export const makeDutyExpression = () => factories['io.flow.internal.v0.unions.duty_expression']();
32545
32290
  export const makeDutyInternalRate = () => factories['io.flow.internal.v0.models.duty_internal_rate']();
32546
32291
  export const makeDutyRate = () => factories['io.flow.internal.v0.models.duty_rate']();
32547
- export const makeDutyRateBulkRequest = () => factories['io.flow.internal.v0.models.duty_rate_bulk_request']();
32548
- export const makeDutyRateBulkResponse = () => factories['io.flow.internal.v0.models.duty_rate_bulk_response']();
32549
- export const makeDutyRateContext = () => factories['io.flow.internal.v0.models.duty_rate_context']();
32550
32292
  export const makeDutyRateItemSummary = () => factories['io.flow.internal.v0.models.duty_rate_item_summary']();
32551
- export const makeDutyRateRequest = () => factories['io.flow.internal.v0.models.duty_rate_request']();
32552
- export const makeDutyRateResponse = () => factories['io.flow.internal.v0.models.duty_rate_response']();
32553
32293
  export const makeDutyRateSource = () => factories['io.flow.internal.v0.enums.duty_rate_source']();
32554
32294
  export const makeDutyRateSummary = () => factories['io.flow.internal.v0.models.duty_rate_summary']();
32555
32295
  export const makeDutyRateUnitOfMeasure = () => factories['io.flow.internal.v0.enums.duty_rate_unit_of_measure']();
32556
- export const makeDutyRateUpserted = () => factories['io.flow.internal.v0.models.duty_rate_upserted']();
32557
32296
  export const makeDutyRatesDataSummary = () => factories['io.flow.internal.v0.models.duty_rates_data_summary']();
32558
32297
  export const makeDutyRatesPublishedV2 = () => factories['io.flow.internal.v0.models.duty_rates_published_v2']();
32559
32298
  export const makeDutyRaw = () => factories['io.flow.internal.v0.models.duty_raw']();
32560
- export const makeDutyRawBulkUpserted = () => factories['io.flow.internal.v0.models.duty_raw_bulk_upserted']();
32561
- export const makeDutyRawUpserted = () => factories['io.flow.internal.v0.models.duty_raw_upserted']();
32562
32299
  export const makeDutySelectionRule = () => factories['io.flow.internal.v0.enums.duty_selection_rule']();
32563
32300
  export const makeDutySimpleExpression = () => factories['io.flow.internal.v0.models.duty_simple_expression']();
32564
32301
  export const makeDutySimpleExpressionType = () => factories['io.flow.internal.v0.enums.duty_simple_expression_type']();
@@ -32566,11 +32303,6 @@ export const makeDutyTransaction = () => factories['io.flow.internal.v0.models.d
32566
32303
  export const makeDutyTransactionDeleted = () => factories['io.flow.internal.v0.models.duty_transaction_deleted']();
32567
32304
  export const makeDutyTransactionType = () => factories['io.flow.internal.v0.enums.duty_transaction_type']();
32568
32305
  export const makeDutyTransactionUpserted = () => factories['io.flow.internal.v0.models.duty_transaction_upserted']();
32569
- export const makeEldarItem = () => factories['io.flow.internal.v0.models.eldar_item']();
32570
- export const makeEldarItemDeleted = () => factories['io.flow.internal.v0.models.eldar_item_deleted']();
32571
- export const makeEldarItemForm = () => factories['io.flow.internal.v0.models.eldar_item_form']();
32572
- export const makeEldarItemType = () => factories['io.flow.internal.v0.enums.eldar_item_type']();
32573
- export const makeEldarItemUpserted = () => factories['io.flow.internal.v0.models.eldar_item_upserted']();
32574
32306
  export const makeEmailForm = () => factories['io.flow.internal.v0.models.email_form']();
32575
32307
  export const makeEmailModificationForm = () => factories['io.flow.internal.v0.models.email_modification_form']();
32576
32308
  export const makeEmptyAttribute = () => factories['io.flow.internal.v0.enums.empty_attribute']();
@@ -32772,11 +32504,6 @@ export const makeGoogleShoppingAccountParameters = () => factories['io.flow.inte
32772
32504
  export const makeGoogleShoppingSetting = () => factories['io.flow.internal.v0.models.google_shopping_setting']();
32773
32505
  export const makeGoogleTagManager = () => factories['io.flow.internal.v0.models.google_tag_manager']();
32774
32506
  export const makeGraphqlServiceTypes = () => factories['io.flow.internal.v0.enums.graphql_service_types']();
32775
- export const makeHarinathItem = () => factories['io.flow.internal.v0.models.harinath_item']();
32776
- export const makeHarinathItemDeleted = () => factories['io.flow.internal.v0.models.harinath_item_deleted']();
32777
- export const makeHarinathItemForm = () => factories['io.flow.internal.v0.models.harinath_item_form']();
32778
- export const makeHarinathItemType = () => factories['io.flow.internal.v0.enums.harinath_item_type']();
32779
- export const makeHarinathItemUpserted = () => factories['io.flow.internal.v0.models.harinath_item_upserted']();
32780
32507
  export const makeHarmonizationClassificationStatisticsData = () => factories['io.flow.internal.v0.models.harmonization_classification_statistics_data']();
32781
32508
  export const makeHarmonizationClassificationStatisticsPublished = () => factories['io.flow.internal.v0.models.harmonization_classification_statistics_published']();
32782
32509
  export const makeHarmonizationCodesImport = () => factories['io.flow.internal.v0.models.harmonization_codes_import']();
@@ -32797,12 +32524,8 @@ export const makeHref = () => factories['io.flow.internal.v0.models.href']();
32797
32524
  export const makeHs6 = () => factories['io.flow.internal.v0.models.hs6']();
32798
32525
  export const makeHs6Metadata = () => factories['io.flow.internal.v0.models.hs6_metadata']();
32799
32526
  export const makeHttpMethod = () => factories['io.flow.internal.v0.enums.http_method']();
32800
- export const makeHybrisCatalogItemsImportRequest = () => factories['io.flow.internal.v0.models.hybris_catalog_items_import_request']();
32801
- export const makeHybrisCatalogItemsImportRequestData = () => factories['io.flow.internal.v0.models.hybris_catalog_items_import_request_data']();
32802
32527
  export const makeImportCompleted = () => factories['io.flow.internal.v0.models.import_completed']();
32803
32528
  export const makeImportFailed = () => factories['io.flow.internal.v0.models.import_failed']();
32804
- export const makeIndexAssignmentDeleted = () => factories['io.flow.internal.v0.models.index_assignment_deleted']();
32805
- export const makeIndexAssignmentUpserted = () => factories['io.flow.internal.v0.models.index_assignment_upserted']();
32806
32529
  export const makeIndexTaskType = () => factories['io.flow.internal.v0.unions.index_task_type']();
32807
32530
  export const makeInlineAuthorizationParameters = () => factories['io.flow.internal.v0.unions.inline_authorization_parameters']();
32808
32531
  export const makeInstallForm = () => factories['io.flow.internal.v0.models.install_form']();
@@ -32831,11 +32554,7 @@ export const makeInternalTransactionDetails = () => factories['io.flow.internal.
32831
32554
  export const makeInternalTransactionDetailsCard = () => factories['io.flow.internal.v0.models.internal_transaction_details_card']();
32832
32555
  export const makeInvalidCheckoutData = () => factories['io.flow.internal.v0.models.invalid_checkout_data']();
32833
32556
  export const makeInvariant = () => factories['io.flow.internal.v0.models.invariant']();
32834
- export const makeInventoryCheckService = () => factories['io.flow.internal.v0.enums.inventory_check_service']();
32835
32557
  export const makeInventoryItemWrapper = () => factories['io.flow.internal.v0.models.inventory_item_wrapper']();
32836
- export const makeInventoryOrganizationSettings = () => factories['io.flow.internal.v0.models.inventory_organization_settings']();
32837
- export const makeInventoryOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.inventory_organization_settings_form']();
32838
- export const makeInventoryReservation = () => factories['io.flow.internal.v0.enums.inventory_reservation']();
32839
32558
  export const makeInvoice = () => factories['io.flow.internal.v0.models.invoice']();
32840
32559
  export const makeInvoiceInfoForm = () => factories['io.flow.internal.v0.models.invoice_info_form']();
32841
32560
  export const makeInvoiceLine = () => factories['io.flow.internal.v0.models.invoice_line']();
@@ -32858,7 +32577,6 @@ export const makeItemDimensionEstimateUpsertedV2 = () => factories['io.flow.inte
32858
32577
  export const makeItemFilterResponse = () => factories['io.flow.internal.v0.models.item_filter_response']();
32859
32578
  export const makeItemFilterValueResponse = () => factories['io.flow.internal.v0.models.item_filter_value_response']();
32860
32579
  export const makeItemFilterValuesForm = () => factories['io.flow.internal.v0.models.item_filter_values_form']();
32861
- export const makeItemForm = () => factories['io.flow.internal.v0.models.item_form']();
32862
32580
  export const makeItemFormImportRequest = () => factories['io.flow.internal.v0.models.item_form_import_request']();
32863
32581
  export const makeItemHarmonization = () => factories['io.flow.internal.v0.models.item_harmonization']();
32864
32582
  export const makeItemHarmonizationDeleted = () => factories['io.flow.internal.v0.models.item_harmonization_deleted']();
@@ -32886,11 +32604,6 @@ export const makeKeyReference = () => factories['io.flow.internal.v0.models.key_
32886
32604
  export const makeKeywordType = () => factories['io.flow.internal.v0.enums.keyword_type']();
32887
32605
  export const makeKlarnaAuthorizationParameters = () => factories['io.flow.internal.v0.models.klarna_authorization_parameters']();
32888
32606
  export const makeKlarnaPaymentMethodCategory = () => factories['io.flow.internal.v0.models.klarna_payment_method_category']();
32889
- export const makeKonstantinItem = () => factories['io.flow.internal.v0.models.konstantin_item']();
32890
- export const makeKonstantinItemDeleted = () => factories['io.flow.internal.v0.models.konstantin_item_deleted']();
32891
- export const makeKonstantinItemForm = () => factories['io.flow.internal.v0.models.konstantin_item_form']();
32892
- export const makeKonstantinItemType = () => factories['io.flow.internal.v0.enums.konstantin_item_type']();
32893
- export const makeKonstantinItemUpserted = () => factories['io.flow.internal.v0.models.konstantin_item_upserted']();
32894
32607
  export const makeLabProjectSettings = () => factories['io.flow.internal.v0.models.lab_project_settings']();
32895
32608
  export const makeLabProjectSettingsForm = () => factories['io.flow.internal.v0.models.lab_project_settings_form']();
32896
32609
  export const makeLabProjectSettingsFormAcceptance = () => factories['io.flow.internal.v0.models.lab_project_settings_form_acceptance']();
@@ -33052,16 +32765,11 @@ export const makeMarketingGatewaySourceSummary = () => factories['io.flow.intern
33052
32765
  export const makeMarketingGatewaySupportedChannelDetails = () => factories['io.flow.internal.v0.models.marketing_gateway_supported_channel_details']();
33053
32766
  export const makeMarketsOrder = () => factories['io.flow.internal.v0.models.markets_order']();
33054
32767
  export const makeMarketsOrderSummary = () => factories['io.flow.internal.v0.models.markets_order_summary']();
33055
- export const makeMatiasItem = () => factories['io.flow.internal.v0.models.matias_item']();
33056
- export const makeMatiasItemDeleted = () => factories['io.flow.internal.v0.models.matias_item_deleted']();
33057
- export const makeMatiasItemForm = () => factories['io.flow.internal.v0.models.matias_item_form']();
33058
- export const makeMatiasItemType = () => factories['io.flow.internal.v0.enums.matias_item_type']();
33059
- export const makeMatiasItemUpserted = () => factories['io.flow.internal.v0.models.matias_item_upserted']();
33060
32768
  export const makeMerchant = () => factories['io.flow.internal.v0.models.merchant']();
33061
32769
  export const makeMerchantApplicationSummaries = () => factories['io.flow.internal.v0.models.merchant_application_summaries']();
33062
32770
  export const makeMerchantApplicationSummary = () => factories['io.flow.internal.v0.models.merchant_application_summary']();
33063
- export const makeMerchantCohort = () => factories['io.flow.internal.v0.enums.merchant_cohort']();
33064
32771
  export const makeMerchantDeleted = () => factories['io.flow.internal.v0.models.merchant_deleted']();
32772
+ export const makeMerchantDetails = () => factories['io.flow.internal.v0.models.merchant_details']();
33065
32773
  export const makeMerchantFees = () => factories['io.flow.internal.v0.models.merchant_fees']();
33066
32774
  export const makeMerchantGuidAssignment = () => factories['io.flow.internal.v0.models.merchant_guid_assignment']();
33067
32775
  export const makeMerchantGuidAssignmentDeleted = () => factories['io.flow.internal.v0.models.merchant_guid_assignment_deleted']();
@@ -33078,19 +32786,7 @@ export const makeMerchantUpserted = () => factories['io.flow.internal.v0.models.
33078
32786
  export const makeMessageStamp = () => factories['io.flow.internal.v0.models.message_stamp']();
33079
32787
  export const makeMetadataProposition = () => factories['io.flow.internal.v0.models.metadata_proposition']();
33080
32788
  export const makeMetadataRatecard = () => factories['io.flow.internal.v0.models.metadata_ratecard']();
33081
- export const makeMichaelyanItem = () => factories['io.flow.internal.v0.models.michaelyan_item']();
33082
- export const makeMichaelyanItemDeleted = () => factories['io.flow.internal.v0.models.michaelyan_item_deleted']();
33083
- export const makeMichaelyanItemForm = () => factories['io.flow.internal.v0.models.michaelyan_item_form']();
33084
- export const makeMichaelyanItemType = () => factories['io.flow.internal.v0.enums.michaelyan_item_type']();
33085
- export const makeMichaelyanItemUpserted = () => factories['io.flow.internal.v0.models.michaelyan_item_upserted']();
33086
- export const makeMiljenkoItem = () => factories['io.flow.internal.v0.models.miljenko_item']();
33087
- export const makeMiljenkoItemDeleted = () => factories['io.flow.internal.v0.models.miljenko_item_deleted']();
33088
- export const makeMiljenkoItemForm = () => factories['io.flow.internal.v0.models.miljenko_item_form']();
33089
- export const makeMiljenkoItemType = () => factories['io.flow.internal.v0.enums.miljenko_item_type']();
33090
- export const makeMiljenkoItemUpserted = () => factories['io.flow.internal.v0.models.miljenko_item_upserted']();
33091
32789
  export const makeMixedBagWeight = () => factories['io.flow.internal.v0.enums.mixed_bag_weight']();
33092
- export const makeMoneyPercentage = () => factories['io.flow.internal.v0.models.money_percentage']();
33093
- export const makeMoneyRule = () => factories['io.flow.internal.v0.unions.money_rule']();
33094
32790
  export const makeNatureOfSale = () => factories['io.flow.internal.v0.enums.nature_of_sale']();
33095
32791
  export const makeNegativeDebitMetrics = () => factories['io.flow.internal.v0.models.negative_debit_metrics']();
33096
32792
  export const makeNextBillingStatement = () => factories['io.flow.internal.v0.models.next_billing_statement']();
@@ -33146,6 +32842,7 @@ export const makeOrderCombinedShipmentDeleted = () => factories['io.flow.interna
33146
32842
  export const makeOrderCombinedShipmentForm = () => factories['io.flow.internal.v0.models.order_combined_shipment_form']();
33147
32843
  export const makeOrderCombinedShipmentUpserted = () => factories['io.flow.internal.v0.models.order_combined_shipment_upserted']();
33148
32844
  export const makeOrderDetail = () => factories['io.flow.internal.v0.models.order_detail']();
32845
+ export const makeOrderEditSummary = () => factories['io.flow.internal.v0.models.order_edit_summary']();
33149
32846
  export const makeOrderFulfillmentDeleted = () => factories['io.flow.internal.v0.models.order_fulfillment_deleted']();
33150
32847
  export const makeOrderFulfillmentUpserted = () => factories['io.flow.internal.v0.models.order_fulfillment_upserted']();
33151
32848
  export const makeOrderLifecycleEvent = () => factories['io.flow.internal.v0.enums.order_lifecycle_event']();
@@ -33273,7 +32970,8 @@ export const makePartnerOrganizationSettings = () => factories['io.flow.internal
33273
32970
  export const makePartnerOrganizationSettingsDeleted = () => factories['io.flow.internal.v0.models.partner_organization_settings_deleted']();
33274
32971
  export const makePartnerOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.partner_organization_settings_form']();
33275
32972
  export const makePartnerOrganizationSettingsUpserted = () => factories['io.flow.internal.v0.models.partner_organization_settings_upserted']();
33276
- export const makeParty = () => factories['io.flow.internal.v0.enums.party']();
32973
+ export const makePartnerTrackingSubscriptionDeleted = () => factories['io.flow.internal.v0.models.partner_tracking_subscription_deleted']();
32974
+ export const makePartnerTrackingSubscriptionUpserted = () => factories['io.flow.internal.v0.models.partner_tracking_subscription_upserted']();
33277
32975
  export const makePassphrase = () => factories['io.flow.internal.v0.models.passphrase']();
33278
32976
  export const makePassphraseForm = () => factories['io.flow.internal.v0.models.passphrase_form']();
33279
32977
  export const makePassphraseSummary = () => factories['io.flow.internal.v0.models.passphrase_summary']();
@@ -33300,8 +32998,11 @@ export const makePaypalAccountReference = () => factories['io.flow.internal.v0.m
33300
32998
  export const makePaypalAuthentication = () => factories['io.flow.internal.v0.models.paypal_authentication']();
33301
32999
  export const makePaypalAuthenticationForm = () => factories['io.flow.internal.v0.models.paypal_authentication_form']();
33302
33000
  export const makePaypalAuthorizationPayload = () => factories['io.flow.internal.v0.models.paypal_authorization_payload']();
33001
+ export const makePaypalDisputeDeleted = () => factories['io.flow.internal.v0.models.paypal_dispute_deleted']();
33002
+ export const makePaypalDisputeUpserted = () => factories['io.flow.internal.v0.models.paypal_dispute_upserted']();
33303
33003
  export const makePaypalExecutionDeleted = () => factories['io.flow.internal.v0.models.paypal_execution_deleted']();
33304
33004
  export const makePaypalExecutionUpserted = () => factories['io.flow.internal.v0.models.paypal_execution_upserted']();
33005
+ export const makePaypalInternalDispute = () => factories['io.flow.internal.v0.models.paypal_internal_dispute']();
33305
33006
  export const makePaypalInternalExecution = () => factories['io.flow.internal.v0.models.paypal_internal_execution']();
33306
33007
  export const makePaypalInternalPayment = () => factories['io.flow.internal.v0.models.paypal_internal_payment']();
33307
33008
  export const makePaypalInternalRefund = () => factories['io.flow.internal.v0.models.paypal_internal_refund']();
@@ -33332,13 +33033,7 @@ export const makePreferredBillingSchedule = () => factories['io.flow.internal.v0
33332
33033
  export const makePregeneratedQuote = () => factories['io.flow.internal.v0.models.pregenerated_quote']();
33333
33034
  export const makePregeneratedRequestEvent = () => factories['io.flow.internal.v0.models.pregenerated_request_event']();
33334
33035
  export const makePriceSelector = () => factories['io.flow.internal.v0.enums.price_selector']();
33335
- export const makePricingIndicator = () => factories['io.flow.internal.v0.models.pricing_indicator']();
33336
- export const makePricingIndicatorDynamo = () => factories['io.flow.internal.v0.models.pricing_indicator_dynamo']();
33337
- export const makePricingIndicatorStatus = () => factories['io.flow.internal.v0.enums.pricing_indicator_status']();
33338
- export const makePrincipal = () => factories['io.flow.internal.v0.models.principal']();
33339
- export const makePrincipalType = () => factories['io.flow.internal.v0.enums.principal_type']();
33340
33036
  export const makePrioritizedCenterReference = () => factories['io.flow.internal.v0.models.prioritized_center_reference']();
33341
- export const makeProcessedPaymentSummary = () => factories['io.flow.internal.v0.models.processed_payment_summary']();
33342
33037
  export const makeProcessingTransaction = () => factories['io.flow.internal.v0.models.processing_transaction']();
33343
33038
  export const makeProcessingTransactionDeleted = () => factories['io.flow.internal.v0.models.processing_transaction_deleted']();
33344
33039
  export const makeProcessingTransactionReference = () => factories['io.flow.internal.v0.models.processing_transaction_reference']();
@@ -33374,14 +33069,6 @@ export const makeProductRestrictionRuleDecisionUpserted = () => factories['io.fl
33374
33069
  export const makeProductReviewHistory = () => factories['io.flow.internal.v0.models.product_review_history']();
33375
33070
  export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
33376
33071
  export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
33377
- export const makeProfit = () => factories['io.flow.internal.v0.models.profit']();
33378
- export const makeProfitShare = () => factories['io.flow.internal.v0.models.profit_share']();
33379
- export const makeProfitShareOrderReference = () => factories['io.flow.internal.v0.models.profit_share_order_reference']();
33380
- export const makeProfitSharePlan = () => factories['io.flow.internal.v0.models.profit_share_plan']();
33381
- export const makeProfitSplit = () => factories['io.flow.internal.v0.models.profit_split']();
33382
- export const makeProfitSplitRule = () => factories['io.flow.internal.v0.models.profit_split_rule']();
33383
- export const makeProfitStream = () => factories['io.flow.internal.v0.models.profit_stream']();
33384
- export const makeProfitStreamKey = () => factories['io.flow.internal.v0.enums.profit_stream_key']();
33385
33072
  export const makePromptAction = () => factories['io.flow.internal.v0.enums.prompt_action']();
33386
33073
  export const makePromptCheckoutDisplayPosition = () => factories['io.flow.internal.v0.enums.prompt_checkout_display_position']();
33387
33074
  export const makePromptOptions = () => factories['io.flow.internal.v0.enums.prompt_options']();
@@ -33474,6 +33161,7 @@ export const makeReportForm = () => factories['io.flow.internal.v0.models.report
33474
33161
  export const makeReportInterval = () => factories['io.flow.internal.v0.enums.report_interval']();
33475
33162
  export const makeReportMerchant = () => factories['io.flow.internal.v0.models.report_merchant']();
33476
33163
  export const makeReportOrderReference = () => factories['io.flow.internal.v0.models.report_order_reference']();
33164
+ export const makeReportOrganizationReference = () => factories['io.flow.internal.v0.models.report_organization_reference']();
33477
33165
  export const makeReportOwner = () => factories['io.flow.internal.v0.models.report_owner']();
33478
33166
  export const makeReportPayment = () => factories['io.flow.internal.v0.models.report_payment']();
33479
33167
  export const makeReportPaymentType = () => factories['io.flow.internal.v0.enums.report_payment_type']();
@@ -33490,7 +33178,6 @@ export const makeReportingDebug = () => factories['io.flow.internal.v0.models.re
33490
33178
  export const makeReportingDebugMissingSubsidies = () => factories['io.flow.internal.v0.models.reporting_debug_missing_subsidies']();
33491
33179
  export const makeReportingDestination = () => factories['io.flow.internal.v0.models.reporting_destination']();
33492
33180
  export const makeReportingDetails = () => factories['io.flow.internal.v0.models.reporting_details']();
33493
- export const makeReportingEntity = () => factories['io.flow.internal.v0.models.reporting_entity']();
33494
33181
  export const makeReportingFulfillment = () => factories['io.flow.internal.v0.models.reporting_fulfillment']();
33495
33182
  export const makeReportingFulfillmentHas = () => factories['io.flow.internal.v0.models.reporting_fulfillment_has']();
33496
33183
  export const makeReportingFulfillmentIs = () => factories['io.flow.internal.v0.models.reporting_fulfillment_is']();
@@ -33547,6 +33234,9 @@ export const makeRestrictionRuleOverride = () => factories['io.flow.internal.v0.
33547
33234
  export const makeRestrictionRuleSummary = () => factories['io.flow.internal.v0.models.restriction_rule_summary']();
33548
33235
  export const makeRestrictionStatus = () => factories['io.flow.internal.v0.enums.restriction_status']();
33549
33236
  export const makeRestrictionStatusMetadata = () => factories['io.flow.internal.v0.models.restriction_status_metadata']();
33237
+ export const makeRestrictionsDailyops = () => factories['io.flow.internal.v0.models.restrictions_dailyops']();
33238
+ export const makeRestrictionsDailyopsDeleted = () => factories['io.flow.internal.v0.models.restrictions_dailyops_deleted']();
33239
+ export const makeRestrictionsDailyopsUpserted = () => factories['io.flow.internal.v0.models.restrictions_dailyops_upserted']();
33550
33240
  export const makeResyncByDestinations = () => factories['io.flow.internal.v0.models.resync_by_destinations']();
33551
33241
  export const makeResyncByHs6Destinations = () => factories['io.flow.internal.v0.models.resync_by_hs6_destinations']();
33552
33242
  export const makeResyncByHs6Origin = () => factories['io.flow.internal.v0.models.resync_by_hs6_origin']();
@@ -33561,13 +33251,10 @@ export const makeReturnPolicyUpserted = () => factories['io.flow.internal.v0.mod
33561
33251
  export const makeReturnSummary = () => factories['io.flow.internal.v0.models.return_summary']();
33562
33252
  export const makeReturnTrigger = () => factories['io.flow.internal.v0.unions.return_trigger']();
33563
33253
  export const makeReturnTriggerRefund = () => factories['io.flow.internal.v0.models.return_trigger_refund']();
33564
- export const makeRevenue = () => factories['io.flow.internal.v0.models.revenue']();
33565
33254
  export const makeRevenueRecord = () => factories['io.flow.internal.v0.models.revenue_record']();
33566
33255
  export const makeRevenueRecordDeleted = () => factories['io.flow.internal.v0.models.revenue_record_deleted']();
33567
33256
  export const makeRevenueRecordType = () => factories['io.flow.internal.v0.enums.revenue_record_type']();
33568
33257
  export const makeRevenueRecordUpserted = () => factories['io.flow.internal.v0.models.revenue_record_upserted']();
33569
- export const makeRevenueRule = () => factories['io.flow.internal.v0.models.revenue_rule']();
33570
- export const makeRevenueType = () => factories['io.flow.internal.v0.enums.revenue_type']();
33571
33258
  export const makeRiskCheck = () => factories['io.flow.internal.v0.enums.risk_check']();
33572
33259
  export const makeRiskEvaluation = () => factories['io.flow.internal.v0.enums.risk_evaluation']();
33573
33260
  export const makeRoutingAccount = () => factories['io.flow.internal.v0.models.routing_account']();
@@ -33590,8 +33277,6 @@ export const makeSearchItemSummary = () => factories['io.flow.internal.v0.models
33590
33277
  export const makeSearchOrderSummary = () => factories['io.flow.internal.v0.models.search_order_summary']();
33591
33278
  export const makeSearchProviderExport = () => factories['io.flow.internal.v0.models.search_provider_export']();
33592
33279
  export const makeSearchTrackingSummary = () => factories['io.flow.internal.v0.models.search_tracking_summary']();
33593
- export const makeSerialReservationError = () => factories['io.flow.internal.v0.enums.serial_reservation_error']();
33594
- export const makeServiceName = () => factories['io.flow.internal.v0.enums.service_name']();
33595
33280
  export const makeSessionCountries = () => factories['io.flow.internal.v0.models.session_countries']();
33596
33281
  export const makeSessionCountry = () => factories['io.flow.internal.v0.models.session_country']();
33597
33282
  export const makeSessionCountryForm = () => factories['io.flow.internal.v0.models.session_country_form']();
@@ -33624,6 +33309,13 @@ export const makeShopifyGiftCardReversal = () => factories['io.flow.internal.v0.
33624
33309
  export const makeShopifyGiftCardReversalForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_reversal_form']();
33625
33310
  export const makeShopifyGrantStatus = () => factories['io.flow.internal.v0.enums.shopify_grant_status']();
33626
33311
  export const makeShopifyGrantsCheck = () => factories['io.flow.internal.v0.models.shopify_grants_check']();
33312
+ export const makeShopifyIncotermConfiguration = () => factories['io.flow.internal.v0.enums.shopify_incoterm_configuration']();
33313
+ export const makeShopifyIncotermIncludes = () => factories['io.flow.internal.v0.models.shopify_incoterm_includes']();
33314
+ export const makeShopifyIncotermSummaryErrorData = () => factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data']();
33315
+ export const makeShopifyIncotermSummaryErrorPublished = () => factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_published']();
33316
+ export const makeShopifyMarketsBestSellingProduct = () => factories['io.flow.internal.v0.models.shopify_markets_best_selling_product']();
33317
+ export const makeShopifyMarketsBestSellingProductDeleted = () => factories['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted']();
33318
+ export const makeShopifyMarketsBestSellingProductUpserted = () => factories['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted']();
33627
33319
  export const makeShopifyMarketsDangerousGoods = () => factories['io.flow.internal.v0.enums.shopify_markets_dangerous_goods']();
33628
33320
  export const makeShopifyMarketsDiscrepancy = () => factories['io.flow.internal.v0.models.shopify_markets_discrepancy']();
33629
33321
  export const makeShopifyMarketsDiscrepancyData = () => factories['io.flow.internal.v0.models.shopify_markets_discrepancy_data']();
@@ -33634,6 +33326,8 @@ export const makeShopifyMarketsMetricsDeleted = () => factories['io.flow.interna
33634
33326
  export const makeShopifyMarketsMetricsUpserted = () => factories['io.flow.internal.v0.models.shopify_markets_metrics_upserted']();
33635
33327
  export const makeShopifyMarketsOrder = () => factories['io.flow.internal.v0.models.shopify_markets_order']();
33636
33328
  export const makeShopifyMarketsOrderDeleted = () => factories['io.flow.internal.v0.models.shopify_markets_order_deleted']();
33329
+ export const makeShopifyMarketsOrderEditSummaryData = () => factories['io.flow.internal.v0.models.shopify_markets_order_edit_summary_data']();
33330
+ export const makeShopifyMarketsOrderEditSummaryPublished = () => factories['io.flow.internal.v0.models.shopify_markets_order_edit_summary_published']();
33637
33331
  export const makeShopifyMarketsOrderUpserted = () => factories['io.flow.internal.v0.models.shopify_markets_order_upserted']();
33638
33332
  export const makeShopifyMarketsOrderVersionWithShopId = () => factories['io.flow.internal.v0.models.shopify_markets_order_version_with_shop_id']();
33639
33333
  export const makeShopifyMarketsOrdersMetrics = () => factories['io.flow.internal.v0.models.shopify_markets_orders_metrics']();
@@ -33681,6 +33375,8 @@ export const makeShopifyOrderLineAttribute = () => factories['io.flow.internal.v
33681
33375
  export const makeShopifyOrderLineContent = () => factories['io.flow.internal.v0.models.shopify_order_line_content']();
33682
33376
  export const makeShopifyOrganizationSettings = () => factories['io.flow.internal.v0.models.shopify_organization_settings']();
33683
33377
  export const makeShopifyOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.shopify_organization_settings_form']();
33378
+ export const makeShopifyPartnerWebhook = () => factories['io.flow.internal.v0.models.shopify_partner_webhook']();
33379
+ export const makeShopifyPartnerWebhookRaw = () => factories['io.flow.internal.v0.models.shopify_partner_webhook_raw']();
33684
33380
  export const makeShopifyPaymentSummary = () => factories['io.flow.internal.v0.models.shopify_payment_summary']();
33685
33381
  export const makeShopifyProductBundle = () => factories['io.flow.internal.v0.models.shopify_product_bundle']();
33686
33382
  export const makeShopifyProductBundleDeleted = () => factories['io.flow.internal.v0.models.shopify_product_bundle_deleted']();
@@ -33722,11 +33418,6 @@ export const makeShopperFreight = () => factories['io.flow.internal.v0.models.sh
33722
33418
  export const makeShopperLine = () => factories['io.flow.internal.v0.models.shopper_line']();
33723
33419
  export const makeShopperLines = () => factories['io.flow.internal.v0.models.shopper_lines']();
33724
33420
  export const makeShopperSummary = () => factories['io.flow.internal.v0.models.shopper_summary']();
33725
- export const makeShrutiDemoItem = () => factories['io.flow.internal.v0.models.shruti_demo_item']();
33726
- export const makeShrutiDemoItemDeleted = () => factories['io.flow.internal.v0.models.shruti_demo_item_deleted']();
33727
- export const makeShrutiDemoItemForm = () => factories['io.flow.internal.v0.models.shruti_demo_item_form']();
33728
- export const makeShrutiDemoItemUpserted = () => factories['io.flow.internal.v0.models.shruti_demo_item_upserted']();
33729
- export const makeShrutiDemoType = () => factories['io.flow.internal.v0.enums.shruti_demo_type']();
33730
33421
  export const makeSimpleAccountReference = () => factories['io.flow.internal.v0.models.simple_account_reference']();
33731
33422
  export const makeSimpleRoundingStrategy = () => factories['io.flow.internal.v0.enums.simple_rounding_strategy']();
33732
33423
  export const makeSimplifiedClassificationTaxonomy = () => factories['io.flow.internal.v0.unions.simplified_classification_taxonomy']();
@@ -33794,17 +33485,6 @@ export const makeSubscriptionFrequency = () => factories['io.flow.internal.v0.en
33794
33485
  export const makeSubscriptionTransaction = () => factories['io.flow.internal.v0.models.subscription_transaction']();
33795
33486
  export const makeSuggestionAction = () => factories['io.flow.internal.v0.enums.suggestion_action']();
33796
33487
  export const makeSupportedLabels = () => factories['io.flow.internal.v0.models.supported_labels']();
33797
- export const makeSvitlanaItem = () => factories['io.flow.internal.v0.models.svitlana_item']();
33798
- export const makeSvitlanaItemDeleted = () => factories['io.flow.internal.v0.models.svitlana_item_deleted']();
33799
- export const makeSvitlanaItemForm = () => factories['io.flow.internal.v0.models.svitlana_item_form']();
33800
- export const makeSvitlanaItemUpserted = () => factories['io.flow.internal.v0.models.svitlana_item_upserted']();
33801
- export const makeSvitlanaTest = () => factories['io.flow.internal.v0.models.svitlana_test']();
33802
- export const makeSvitlanaType = () => factories['io.flow.internal.v0.enums.svitlana_type']();
33803
- export const makeTamItem = () => factories['io.flow.internal.v0.models.tam_item']();
33804
- export const makeTamItemDeleted = () => factories['io.flow.internal.v0.models.tam_item_deleted']();
33805
- export const makeTamItemForm = () => factories['io.flow.internal.v0.models.tam_item_form']();
33806
- export const makeTamItemType = () => factories['io.flow.internal.v0.enums.tam_item_type']();
33807
- export const makeTamItemUpserted = () => factories['io.flow.internal.v0.models.tam_item_upserted']();
33808
33488
  export const makeTariffCodeDuty = () => factories['io.flow.internal.v0.models.tariff_code_duty']();
33809
33489
  export const makeTariffCodesExport = () => factories['io.flow.internal.v0.models.tariff_codes_export']();
33810
33490
  export const makeTariffEligibility = () => factories['io.flow.internal.v0.models.tariff_eligibility']();
@@ -33841,11 +33521,6 @@ export const makeTaxonomyNode = () => factories['io.flow.internal.v0.models.taxo
33841
33521
  export const makeTechOnboardingDescription = () => factories['io.flow.internal.v0.models.tech_onboarding_description']();
33842
33522
  export const makeTest = () => factories['io.flow.internal.v0.models.test']();
33843
33523
  export const makeTestForm = () => factories['io.flow.internal.v0.models.test_form']();
33844
- export const makeThiagoItem = () => factories['io.flow.internal.v0.models.thiago_item']();
33845
- export const makeThiagoItemDeleted = () => factories['io.flow.internal.v0.models.thiago_item_deleted']();
33846
- export const makeThiagoItemForm = () => factories['io.flow.internal.v0.models.thiago_item_form']();
33847
- export const makeThiagoItemType = () => factories['io.flow.internal.v0.enums.thiago_item_type']();
33848
- export const makeThiagoItemUpserted = () => factories['io.flow.internal.v0.models.thiago_item_upserted']();
33849
33524
  export const makeThirdPartyLogisticsPartner = () => factories['io.flow.internal.v0.models.third_party_logistics_partner']();
33850
33525
  export const makeThirdPartyLogisticsPickUpTimeWindow = () => factories['io.flow.internal.v0.models.third_party_logistics_pick_up_time_window']();
33851
33526
  export const makeTieredFee = () => factories['io.flow.internal.v0.models.tiered_fee']();
@@ -33864,6 +33539,9 @@ export const makeTrackingAssuranceAnalysisUpserted = () => factories['io.flow.in
33864
33539
  export const makeTrackingAssuranceJob = () => factories['io.flow.internal.v0.models.tracking_assurance_job']();
33865
33540
  export const makeTrackingAssuranceJobDeleted = () => factories['io.flow.internal.v0.models.tracking_assurance_job_deleted']();
33866
33541
  export const makeTrackingAssuranceJobUpserted = () => factories['io.flow.internal.v0.models.tracking_assurance_job_upserted']();
33542
+ export const makeTrackingCarrierReturnLabel = () => factories['io.flow.internal.v0.models.tracking_carrier_return_label']();
33543
+ export const makeTrackingCarrierReturnLabelDeleted = () => factories['io.flow.internal.v0.models.tracking_carrier_return_label_deleted']();
33544
+ export const makeTrackingCarrierReturnLabelUpserted = () => factories['io.flow.internal.v0.models.tracking_carrier_return_label_upserted']();
33867
33545
  export const makeTrackingDebugForceTransitForm = () => factories['io.flow.internal.v0.models.tracking_debug_force_transit_form']();
33868
33546
  export const makeTrackingDebugLabel = () => factories['io.flow.internal.v0.models.tracking_debug_label']();
33869
33547
  export const makeTrackingDebugLabelEvent = () => factories['io.flow.internal.v0.models.tracking_debug_label_event']();
@@ -33884,9 +33562,10 @@ export const makeTrackingProcessingErrorDeleted = () => factories['io.flow.inter
33884
33562
  export const makeTrackingProcessingErrorUpserted = () => factories['io.flow.internal.v0.models.tracking_processing_error_upserted']();
33885
33563
  export const makeTrackingProcessingFailureClassification = () => factories['io.flow.internal.v0.enums.tracking_processing_failure_classification']();
33886
33564
  export const makeTrackingRequest = () => factories['io.flow.internal.v0.models.tracking_request']();
33887
- export const makeTrackingRequestUpserted = () => factories['io.flow.internal.v0.models.tracking_request_upserted']();
33888
33565
  export const makeTrackingResponse = () => factories['io.flow.internal.v0.models.tracking_response']();
33889
- export const makeTrackingResponseUpserted = () => factories['io.flow.internal.v0.models.tracking_response_upserted']();
33566
+ export const makeTrackingSubscription = () => factories['io.flow.internal.v0.models.tracking_subscription']();
33567
+ export const makeTrackingSubscriptionDeleted = () => factories['io.flow.internal.v0.models.tracking_subscription_deleted']();
33568
+ export const makeTrackingSubscriptionUpserted = () => factories['io.flow.internal.v0.models.tracking_subscription_upserted']();
33890
33569
  export const makeTrackingUpserted = () => factories['io.flow.internal.v0.models.tracking_upserted']();
33891
33570
  export const makeTransaction = () => factories['io.flow.internal.v0.unions.transaction']();
33892
33571
  export const makeTransactionAdjustment = () => factories['io.flow.internal.v0.models.transaction_adjustment']();