@flowio/api-internal-factories 0.0.114 → 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.
- package/dist/cjs/api-internal.js +308 -906
- package/dist/esm/api-internal.js +253 -768
- package/dist/types/api-internal.d.ts +19 -100
- package/package.json +2 -2
- package/src/api-internal.ts +292 -865
package/src/api-internal.ts
CHANGED
|
@@ -1968,6 +1968,7 @@ const factories = {
|
|
|
1968
1968
|
'order_contains_gift_card',
|
|
1969
1969
|
'order_contains_restricted_goods',
|
|
1970
1970
|
'missing_order_information',
|
|
1971
|
+
'missing_classification_information',
|
|
1971
1972
|
'unsupported_payment_information',
|
|
1972
1973
|
'unsupported_shop_currency',
|
|
1973
1974
|
'unsupported_free_order',
|
|
@@ -2029,6 +2030,7 @@ const factories = {
|
|
|
2029
2030
|
next_action_from: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'](),
|
|
2030
2031
|
order_created_at: factories.date_time_iso_8601(),
|
|
2031
2032
|
order_updated_at: factories.date_time_iso_8601(),
|
|
2033
|
+
order_edit_summary: factories['io.flow.channel.internal.v0.models.order_edit_summary'](),
|
|
2032
2034
|
}),
|
|
2033
2035
|
|
|
2034
2036
|
'io.flow.channel.internal.v0.models.channel_order_acceptance_details': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceDetails => ({
|
|
@@ -2058,6 +2060,11 @@ const factories = {
|
|
|
2058
2060
|
placeholder: factories.string(),
|
|
2059
2061
|
}),
|
|
2060
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
|
+
|
|
2061
2068
|
'io.flow.channel.v0.enums.channel_currency_capability': (): io.flow.channel.v0.enums.ChannelCurrencyCapability => faker.helpers.arrayElement(['payment_authorizations', 'settlement_currency']),
|
|
2062
2069
|
|
|
2063
2070
|
'io.flow.channel.v0.models.channel': (): io.flow.channel.v0.models.Channel => ({
|
|
@@ -2970,6 +2977,7 @@ const factories = {
|
|
|
2970
2977
|
'io.flow.experience.v0.enums.experience_country_status': (): io.flow.experience.v0.enums.ExperienceCountryStatus => faker.helpers.arrayElement(['enabled', 'disabled']),
|
|
2971
2978
|
'io.flow.experience.v0.enums.experience_payment_method_tag': (): io.flow.experience.v0.enums.ExperiencePaymentMethodTag => faker.helpers.arrayElement(['display']),
|
|
2972
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']),
|
|
2973
2981
|
|
|
2974
2982
|
'io.flow.experience.v0.enums.order_error_code': (): io.flow.experience.v0.enums.OrderErrorCode => faker.helpers.arrayElement([
|
|
2975
2983
|
'generic_error',
|
|
@@ -3561,6 +3569,17 @@ const factories = {
|
|
|
3561
3569
|
attributes: objectOf(() => factories.string()),
|
|
3562
3570
|
}),
|
|
3563
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
|
+
|
|
3564
3583
|
'io.flow.experience.v0.models.item_margin': (): io.flow.experience.v0.models.ItemMargin => ({
|
|
3565
3584
|
id: factories.string(),
|
|
3566
3585
|
key: factories.string(),
|
|
@@ -3669,6 +3688,8 @@ const factories = {
|
|
|
3669
3688
|
destination_contact_details: arrayOf(
|
|
3670
3689
|
() => factories['io.flow.experience.v0.models.destination_contact_detail'](),
|
|
3671
3690
|
),
|
|
3691
|
+
|
|
3692
|
+
incoterm_summary: factories['io.flow.experience.v0.models.incoterm_summary'](),
|
|
3672
3693
|
}),
|
|
3673
3694
|
|
|
3674
3695
|
'io.flow.experience.v0.models.order_address': (): io.flow.experience.v0.models.OrderAddress => ({
|
|
@@ -7055,6 +7076,7 @@ const factories = {
|
|
|
7055
7076
|
'prr-b186129720f0446eb452a68518437c95',
|
|
7056
7077
|
]),
|
|
7057
7078
|
|
|
7079
|
+
'io.flow.internal.v0.enums.bank_account_status': (): io.flow.internal.v0.enums.BankAccountStatus => faker.helpers.arrayElement(['on_hold', 'not_on_hold']),
|
|
7058
7080
|
'io.flow.internal.v0.enums.bank_payment_promise_completed_method': (): io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod => faker.helpers.arrayElement(['credit', 'time']),
|
|
7059
7081
|
'io.flow.internal.v0.enums.bank_payment_status_code': (): io.flow.internal.v0.enums.BankPaymentStatusCode => faker.helpers.arrayElement(['scheduled', 'sent', 'failed']),
|
|
7060
7082
|
|
|
@@ -7293,16 +7315,7 @@ const factories = {
|
|
|
7293
7315
|
]),
|
|
7294
7316
|
|
|
7295
7317
|
'io.flow.internal.v0.enums.browser_bundle_error_code': (): io.flow.internal.v0.enums.BrowserBundleErrorCode => faker.helpers.arrayElement(['generic_error', 'country_invalid']),
|
|
7296
|
-
|
|
7297
|
-
'io.flow.internal.v0.enums.calculator_engine': (): io.flow.internal.v0.enums.CalculatorEngine => faker.helpers.arrayElement([
|
|
7298
|
-
'flow_rate_and_rule',
|
|
7299
|
-
'dtce',
|
|
7300
|
-
'dtce_two_calls',
|
|
7301
|
-
'dtce_with_deminimis',
|
|
7302
|
-
'dtce_merged_with_tax',
|
|
7303
|
-
'dtce_with_inclusive_pricing',
|
|
7304
|
-
]),
|
|
7305
|
-
|
|
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']),
|
|
7306
7319
|
'io.flow.internal.v0.enums.carrier_charge_transaction_type': (): io.flow.internal.v0.enums.CarrierChargeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']),
|
|
7307
7320
|
'io.flow.internal.v0.enums.carrier_charge_type': (): io.flow.internal.v0.enums.CarrierChargeType => faker.helpers.arrayElement(['label', 'tax', 'other']),
|
|
7308
7321
|
'io.flow.internal.v0.enums.carrier_file_type': (): io.flow.internal.v0.enums.CarrierFileType => faker.helpers.arrayElement(['freight', 'tax']),
|
|
@@ -7338,6 +7351,7 @@ const factories = {
|
|
|
7338
7351
|
'order_contains_gift_card',
|
|
7339
7352
|
'order_contains_restricted_goods',
|
|
7340
7353
|
'missing_order_information',
|
|
7354
|
+
'missing_classification_information',
|
|
7341
7355
|
'unsupported_payment_information',
|
|
7342
7356
|
'unsupported_shop_currency',
|
|
7343
7357
|
'unsupported_free_order',
|
|
@@ -7410,18 +7424,6 @@ const factories = {
|
|
|
7410
7424
|
'io.flow.internal.v0.enums.content_status': (): io.flow.internal.v0.enums.ContentStatus => faker.helpers.arrayElement(['draft', 'live', 'archived']),
|
|
7411
7425
|
'io.flow.internal.v0.enums.content_type': (): io.flow.internal.v0.enums.ContentType => faker.helpers.arrayElement(['text', 'html']),
|
|
7412
7426
|
'io.flow.internal.v0.enums.content_type_cast': (): io.flow.internal.v0.enums.ContentTypeCast => faker.helpers.arrayElement(['markdown_to_html', 'markdown_to_text']),
|
|
7413
|
-
|
|
7414
|
-
'io.flow.internal.v0.enums.cost_type': (): io.flow.internal.v0.enums.CostType => faker.helpers.arrayElement([
|
|
7415
|
-
'payment_processing',
|
|
7416
|
-
'fx',
|
|
7417
|
-
'negative_balance',
|
|
7418
|
-
'solution',
|
|
7419
|
-
'hosting',
|
|
7420
|
-
'duty_guarantee',
|
|
7421
|
-
'transfer',
|
|
7422
|
-
'fraud',
|
|
7423
|
-
]),
|
|
7424
|
-
|
|
7425
7427
|
'io.flow.internal.v0.enums.crossdock_tracking_status': (): io.flow.internal.v0.enums.CrossdockTrackingStatus => faker.helpers.arrayElement(['notified', 'received', 'shipped']),
|
|
7426
7428
|
'io.flow.internal.v0.enums.debug_accounting_transaction_type': (): io.flow.internal.v0.enums.DebugAccountingTransactionType => faker.helpers.arrayElement(['fulfillment']),
|
|
7427
7429
|
'io.flow.internal.v0.enums.delivered_duty_option_message_type': (): io.flow.internal.v0.enums.DeliveredDutyOptionMessageType => faker.helpers.arrayElement(['warning', 'notification']),
|
|
@@ -7461,7 +7463,6 @@ const factories = {
|
|
|
7461
7463
|
|
|
7462
7464
|
'io.flow.internal.v0.enums.duty_simple_expression_type': (): io.flow.internal.v0.enums.DutySimpleExpressionType => faker.helpers.arrayElement(['free', 'percent', 'per_uom', 'flat']),
|
|
7463
7465
|
'io.flow.internal.v0.enums.duty_transaction_type': (): io.flow.internal.v0.enums.DutyTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'duty']),
|
|
7464
|
-
'io.flow.internal.v0.enums.eldar_item_type': (): io.flow.internal.v0.enums.EldarItemType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
7465
7466
|
'io.flow.internal.v0.enums.empty_attribute': (): io.flow.internal.v0.enums.EmptyAttribute => faker.helpers.arrayElement(['irrelevant']),
|
|
7466
7467
|
'io.flow.internal.v0.enums.erp_file_type': (): io.flow.internal.v0.enums.ErpFileType => faker.helpers.arrayElement(['vendor']),
|
|
7467
7468
|
|
|
@@ -7478,8 +7479,6 @@ const factories = {
|
|
|
7478
7479
|
'adyen_refund_upserted',
|
|
7479
7480
|
'adyen_dispute_upserted',
|
|
7480
7481
|
'adyen_dispute_deleted',
|
|
7481
|
-
'index_assignment_upserted',
|
|
7482
|
-
'index_assignment_deleted',
|
|
7483
7482
|
'fulfillment_upserted',
|
|
7484
7483
|
'fulfillment_deleted',
|
|
7485
7484
|
'merchant_upserted',
|
|
@@ -7580,13 +7579,6 @@ const factories = {
|
|
|
7580
7579
|
'dispute_upserted',
|
|
7581
7580
|
'dispute_deleted',
|
|
7582
7581
|
'duty_rates_published_v2',
|
|
7583
|
-
'duty_rate_request',
|
|
7584
|
-
'duty_rate_bulk_request',
|
|
7585
|
-
'duty_raw_upserted',
|
|
7586
|
-
'duty_raw_bulk_upserted',
|
|
7587
|
-
'duty_rate_upserted',
|
|
7588
|
-
'duty_rate_response',
|
|
7589
|
-
'duty_rate_bulk_response',
|
|
7590
7582
|
'item_sales_margin_deleted',
|
|
7591
7583
|
'item_sales_margin_upserted',
|
|
7592
7584
|
'order_attribute_deleted',
|
|
@@ -7658,7 +7650,6 @@ const factories = {
|
|
|
7658
7650
|
'harmonization_codes_import',
|
|
7659
7651
|
'item_classification_created',
|
|
7660
7652
|
'harmonize_fully_request_v2',
|
|
7661
|
-
'hybris_catalog_items_import_request',
|
|
7662
7653
|
'import_completed',
|
|
7663
7654
|
'import_failed',
|
|
7664
7655
|
'time_to_classify_upserted',
|
|
@@ -7752,7 +7743,6 @@ const factories = {
|
|
|
7752
7743
|
'paypal_refund_upserted',
|
|
7753
7744
|
'paypal_dispute_upserted',
|
|
7754
7745
|
'paypal_dispute_deleted',
|
|
7755
|
-
'pricing_indicator',
|
|
7756
7746
|
'product_restriction_rule_decision_upserted',
|
|
7757
7747
|
'product_restriction_rule_decision_deleted',
|
|
7758
7748
|
'order_rates_published_v3',
|
|
@@ -7777,6 +7767,8 @@ const factories = {
|
|
|
7777
7767
|
'organization_restriction_status_deleted',
|
|
7778
7768
|
'screening_status_change_upserted',
|
|
7779
7769
|
'screening_status_change_deleted',
|
|
7770
|
+
'restrictions_dailyops_upserted',
|
|
7771
|
+
'restrictions_dailyops_deleted',
|
|
7780
7772
|
'shopify_shop_upserted',
|
|
7781
7773
|
'shopify_shop_deleted',
|
|
7782
7774
|
'shopify_experience_short_id_upserted',
|
|
@@ -7799,6 +7791,10 @@ const factories = {
|
|
|
7799
7791
|
'order_tax_and_duty_inclusivity_setting_deleted',
|
|
7800
7792
|
'shopify_product_bundle_upserted',
|
|
7801
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',
|
|
7802
7798
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
7803
7799
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
7804
7800
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -7815,30 +7811,6 @@ const factories = {
|
|
|
7815
7811
|
'stripe_dispute_deleted',
|
|
7816
7812
|
'liability_remittance_plan_upserted',
|
|
7817
7813
|
'liability_remittance_plan_deleted',
|
|
7818
|
-
'svitlana_item_upserted',
|
|
7819
|
-
'svitlana_item_deleted',
|
|
7820
|
-
'colm_item_upserted',
|
|
7821
|
-
'colm_item_deleted',
|
|
7822
|
-
'eldar_item_upserted',
|
|
7823
|
-
'eldar_item_deleted',
|
|
7824
|
-
'harinath_item_upserted',
|
|
7825
|
-
'harinath_item_deleted',
|
|
7826
|
-
'konstantin_item_upserted',
|
|
7827
|
-
'konstantin_item_deleted',
|
|
7828
|
-
'matias_item_upserted',
|
|
7829
|
-
'matias_item_deleted',
|
|
7830
|
-
'michaelyan_item_upserted',
|
|
7831
|
-
'michaelyan_item_deleted',
|
|
7832
|
-
'miljenko_item_upserted',
|
|
7833
|
-
'miljenko_item_deleted',
|
|
7834
|
-
'sanjay_item_upserted',
|
|
7835
|
-
'sanjay_item_deleted',
|
|
7836
|
-
'shruti_demo_item_upserted',
|
|
7837
|
-
'shruti_demo_item_deleted',
|
|
7838
|
-
'tam_item_upserted',
|
|
7839
|
-
'tam_item_deleted',
|
|
7840
|
-
'thiago_item_upserted',
|
|
7841
|
-
'thiago_item_deleted',
|
|
7842
7814
|
'tracking_processing_error_upserted',
|
|
7843
7815
|
'tracking_processing_error_deleted',
|
|
7844
7816
|
'tracking_label_event_upserted_v2',
|
|
@@ -7853,10 +7825,10 @@ const factories = {
|
|
|
7853
7825
|
'tracking_assurance_job_deleted',
|
|
7854
7826
|
'tracking_subscription_upserted',
|
|
7855
7827
|
'tracking_subscription_deleted',
|
|
7828
|
+
'tracking_carrier_return_label_upserted',
|
|
7829
|
+
'tracking_carrier_return_label_deleted',
|
|
7856
7830
|
'tracking_label_dimensions_upserted',
|
|
7857
7831
|
'tracking_label_dimensions_deleted',
|
|
7858
|
-
'tracking_request_upserted',
|
|
7859
|
-
'tracking_response_upserted',
|
|
7860
7832
|
'user_upserted_v2',
|
|
7861
7833
|
'user_deleted_v2',
|
|
7862
7834
|
]),
|
|
@@ -7899,7 +7871,6 @@ const factories = {
|
|
|
7899
7871
|
'sync_product_catalog',
|
|
7900
7872
|
]),
|
|
7901
7873
|
|
|
7902
|
-
'io.flow.internal.v0.enums.harinath_item_type': (): io.flow.internal.v0.enums.HarinathItemType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
7903
7874
|
'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'legacy_model', 'enterprise_model']),
|
|
7904
7875
|
'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
|
|
7905
7876
|
'io.flow.internal.v0.enums.item_classification_action': (): io.flow.internal.v0.enums.ItemClassificationAction => faker.helpers.arrayElement(['ACCEPT', 'MANUAL', 'REJECT']),
|
|
@@ -7923,7 +7894,6 @@ const factories = {
|
|
|
7923
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']),
|
|
7924
7895
|
'io.flow.internal.v0.enums.item_type': (): io.flow.internal.v0.enums.ItemType => faker.helpers.arrayElement(['standard', 'multi_product']),
|
|
7925
7896
|
'io.flow.internal.v0.enums.keyword_type': (): io.flow.internal.v0.enums.KeywordType => faker.helpers.arrayElement(['positive', 'negative']),
|
|
7926
|
-
'io.flow.internal.v0.enums.konstantin_item_type': (): io.flow.internal.v0.enums.KonstantinItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7927
7897
|
'io.flow.internal.v0.enums.label_billing_strategy': (): io.flow.internal.v0.enums.LabelBillingStrategy => faker.helpers.arrayElement(['quote', 'carrier']),
|
|
7928
7898
|
'io.flow.internal.v0.enums.label_cancellation_error_code': (): io.flow.internal.v0.enums.LabelCancellationErrorCode => faker.helpers.arrayElement(['already_used', 'carrier_unsupported']),
|
|
7929
7899
|
'io.flow.internal.v0.enums.label_creation_status': (): io.flow.internal.v0.enums.LabelCreationStatus => faker.helpers.arrayElement(['success', 'error', 'pending', 'cancelled']),
|
|
@@ -8021,17 +7991,6 @@ const factories = {
|
|
|
8021
7991
|
['google', 'facebook_primary', 'facebook_country_override', 'supplemental'],
|
|
8022
7992
|
),
|
|
8023
7993
|
|
|
8024
|
-
'io.flow.internal.v0.enums.matias_item_type': (): io.flow.internal.v0.enums.MatiasItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8025
|
-
|
|
8026
|
-
'io.flow.internal.v0.enums.merchant_cohort': (): io.flow.internal.v0.enums.MerchantCohort => faker.helpers.arrayElement([
|
|
8027
|
-
'channel_merchant_pre_cutoff',
|
|
8028
|
-
'channel_merchant_post_cutoff',
|
|
8029
|
-
'global_e_merchant_pre_cutoff',
|
|
8030
|
-
'global_e_merchant_post_cutoff',
|
|
8031
|
-
]),
|
|
8032
|
-
|
|
8033
|
-
'io.flow.internal.v0.enums.michaelyan_item_type': (): io.flow.internal.v0.enums.MichaelyanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8034
|
-
'io.flow.internal.v0.enums.miljenko_item_type': (): io.flow.internal.v0.enums.MiljenkoItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8035
7994
|
'io.flow.internal.v0.enums.mixed_bag_weight': (): io.flow.internal.v0.enums.MixedBagWeight => faker.helpers.arrayElement(['0', '1', '2']),
|
|
8036
7995
|
|
|
8037
7996
|
'io.flow.internal.v0.enums.nature_of_sale': (): io.flow.internal.v0.enums.NatureOfSale => faker.helpers.arrayElement([
|
|
@@ -8131,7 +8090,6 @@ const factories = {
|
|
|
8131
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']),
|
|
8132
8091
|
'io.flow.internal.v0.enums.output_style': (): io.flow.internal.v0.enums.OutputStyle => faker.helpers.arrayElement(['flow', 'shopify_p1']),
|
|
8133
8092
|
'io.flow.internal.v0.enums.owner': (): io.flow.internal.v0.enums.Owner => faker.helpers.arrayElement(['flow', 'organization']),
|
|
8134
|
-
'io.flow.internal.v0.enums.party': (): io.flow.internal.v0.enums.Party => faker.helpers.arrayElement(['merchant', 'channel_partner', 'global_e']),
|
|
8135
8093
|
|
|
8136
8094
|
'io.flow.internal.v0.enums.payment_summary_status': (): io.flow.internal.v0.enums.PaymentSummaryStatus => faker.helpers.arrayElement([
|
|
8137
8095
|
'authorized',
|
|
@@ -8150,8 +8108,6 @@ const factories = {
|
|
|
8150
8108
|
'io.flow.internal.v0.enums.payment_term': (): io.flow.internal.v0.enums.PaymentTerm => faker.helpers.arrayElement(['net7', 'net15', 'net30']),
|
|
8151
8109
|
'io.flow.internal.v0.enums.preferred_billing_schedule': (): io.flow.internal.v0.enums.PreferredBillingSchedule => faker.helpers.arrayElement(['monthly', 'bi-monthly']),
|
|
8152
8110
|
'io.flow.internal.v0.enums.price_selector': (): io.flow.internal.v0.enums.PriceSelector => faker.helpers.arrayElement(['minimum', 'maximum']),
|
|
8153
|
-
'io.flow.internal.v0.enums.pricing_indicator_status': (): io.flow.internal.v0.enums.PricingIndicatorStatus => faker.helpers.arrayElement(['complete', 'in_progress']),
|
|
8154
|
-
'io.flow.internal.v0.enums.principal_type': (): io.flow.internal.v0.enums.PrincipalType => faker.helpers.arrayElement(['total_order_value', 'product_order_value', 'label_value']),
|
|
8155
8111
|
|
|
8156
8112
|
'io.flow.internal.v0.enums.processing_transaction_type': (): io.flow.internal.v0.enums.ProcessingTransactionType => faker.helpers.arrayElement([
|
|
8157
8113
|
'adjustment',
|
|
@@ -8175,16 +8131,6 @@ const factories = {
|
|
|
8175
8131
|
|
|
8176
8132
|
'io.flow.internal.v0.enums.processor_entity_status': (): io.flow.internal.v0.enums.ProcessorEntityStatus => faker.helpers.arrayElement(['active', 'draft', 'archived']),
|
|
8177
8133
|
'io.flow.internal.v0.enums.product_status': (): io.flow.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft']),
|
|
8178
|
-
|
|
8179
|
-
'io.flow.internal.v0.enums.profit_stream_key': (): io.flow.internal.v0.enums.ProfitStreamKey => faker.helpers.arrayElement([
|
|
8180
|
-
'pre_profit_share',
|
|
8181
|
-
'channel_pre_cutoff',
|
|
8182
|
-
'channel_post_cutoff',
|
|
8183
|
-
'global_e_pre_cutoff',
|
|
8184
|
-
'global_e_post_cutoff',
|
|
8185
|
-
'duty_assurance',
|
|
8186
|
-
]),
|
|
8187
|
-
|
|
8188
8134
|
'io.flow.internal.v0.enums.prompt_action': (): io.flow.internal.v0.enums.PromptAction => faker.helpers.arrayElement(['prompt_displayed', 'consent_granted', 'consent_denied']),
|
|
8189
8135
|
'io.flow.internal.v0.enums.prompt_checkout_display_position': (): io.flow.internal.v0.enums.PromptCheckoutDisplayPosition => faker.helpers.arrayElement(['email', 'submission']),
|
|
8190
8136
|
'io.flow.internal.v0.enums.prompt_options': (): io.flow.internal.v0.enums.PromptOptions => faker.helpers.arrayElement(['notice_only', 'require_consent', 'consent_by_default']),
|
|
@@ -8245,14 +8191,12 @@ const factories = {
|
|
|
8245
8191
|
'io.flow.internal.v0.enums.restriction_decision': (): io.flow.internal.v0.enums.RestrictionDecision => faker.helpers.arrayElement(['accept', 'escalate', 'reject', 'review']),
|
|
8246
8192
|
'io.flow.internal.v0.enums.restriction_status': (): io.flow.internal.v0.enums.RestrictionStatus => faker.helpers.arrayElement(['pending', 'in_review', 'escalated', 'accepted', 'restricted']),
|
|
8247
8193
|
'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
|
|
8248
|
-
'io.flow.internal.v0.enums.revenue_type': (): io.flow.internal.v0.enums.RevenueType => faker.helpers.arrayElement(['mor', 'fx', 'duty_assurance']),
|
|
8249
8194
|
'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
|
|
8250
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']),
|
|
8251
|
-
'io.flow.internal.v0.enums.sanjay_item_type': (): io.flow.internal.v0.enums.SanjayItemType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
8252
|
-
'io.flow.internal.v0.enums.service_name': (): io.flow.internal.v0.enums.ServiceName => faker.helpers.arrayElement(['catalog', 'demandware', 'metric']),
|
|
8253
8196
|
'io.flow.internal.v0.enums.session_country_status': (): io.flow.internal.v0.enums.SessionCountryStatus => faker.helpers.arrayElement(['enabled', 'disabled']),
|
|
8254
8197
|
'io.flow.internal.v0.enums.shopify_check_inventory_error_code': (): io.flow.internal.v0.enums.ShopifyCheckInventoryErrorCode => faker.helpers.arrayElement(['inventory_out_of_stock']),
|
|
8255
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']),
|
|
8256
8200
|
|
|
8257
8201
|
'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
|
|
8258
8202
|
'aerosols',
|
|
@@ -8316,7 +8260,6 @@ const factories = {
|
|
|
8316
8260
|
'io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component': (): io.flow.internal.v0.enums.ShopifyPromotionOrderEntitlementComponent => faker.helpers.arrayElement(['subtotal', 'shipping', 'vat', 'duty']),
|
|
8317
8261
|
'io.flow.internal.v0.enums.shopify_promotion_status': (): io.flow.internal.v0.enums.ShopifyPromotionStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
8318
8262
|
'io.flow.internal.v0.enums.shopify_service': (): io.flow.internal.v0.enums.ShopifyService => faker.helpers.arrayElement(['payment', 'duty_tax_calculator']),
|
|
8319
|
-
'io.flow.internal.v0.enums.shruti_demo_type': (): io.flow.internal.v0.enums.ShrutiDemoType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
8320
8263
|
'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
|
|
8321
8264
|
'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
|
|
8322
8265
|
'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task', 'invariant']),
|
|
@@ -8341,8 +8284,6 @@ const factories = {
|
|
|
8341
8284
|
|
|
8342
8285
|
'io.flow.internal.v0.enums.subscription_frequency': (): io.flow.internal.v0.enums.SubscriptionFrequency => faker.helpers.arrayElement(['yearly', 'monthly']),
|
|
8343
8286
|
'io.flow.internal.v0.enums.suggestion_action': (): io.flow.internal.v0.enums.SuggestionAction => faker.helpers.arrayElement(['accept', 'validate', 'review']),
|
|
8344
|
-
'io.flow.internal.v0.enums.svitlana_type': (): io.flow.internal.v0.enums.SvitlanaType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8345
|
-
'io.flow.internal.v0.enums.tam_item_type': (): io.flow.internal.v0.enums.TamItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8346
8287
|
'io.flow.internal.v0.enums.tariff_eligibility_type': (): io.flow.internal.v0.enums.TariffEligibilityType => faker.helpers.arrayElement(['rex']),
|
|
8347
8288
|
|
|
8348
8289
|
'io.flow.internal.v0.enums.task_processor_key': (): io.flow.internal.v0.enums.TaskProcessorKey => faker.helpers.arrayElement([
|
|
@@ -8365,7 +8306,6 @@ const factories = {
|
|
|
8365
8306
|
'io.flow.internal.v0.enums.tax_calculation_error_code': (): io.flow.internal.v0.enums.TaxCalculationErrorCode => faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']),
|
|
8366
8307
|
'io.flow.internal.v0.enums.tax_party': (): io.flow.internal.v0.enums.TaxParty => faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']),
|
|
8367
8308
|
'io.flow.internal.v0.enums.tax_transaction_type': (): io.flow.internal.v0.enums.TaxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'tax', 'refund']),
|
|
8368
|
-
'io.flow.internal.v0.enums.thiago_item_type': (): io.flow.internal.v0.enums.ThiagoItemType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
8369
8309
|
'io.flow.internal.v0.enums.tracking_integration_type': (): io.flow.internal.v0.enums.TrackingIntegrationType => faker.helpers.arrayElement(['api', 'bulk', 'aftership']),
|
|
8370
8310
|
'io.flow.internal.v0.enums.tracking_label_dimensions_source': (): io.flow.internal.v0.enums.TrackingLabelDimensionsSource => faker.helpers.arrayElement(['aftership', 'carrier_api']),
|
|
8371
8311
|
|
|
@@ -8548,8 +8488,6 @@ const factories = {
|
|
|
8548
8488
|
enable_fee_reversals: factories.boolean(),
|
|
8549
8489
|
record_reason_for_transactions_pending_payout: factories.boolean(),
|
|
8550
8490
|
enable_negative_debits: factories.boolean(),
|
|
8551
|
-
setup_completed_at: factories.date_time_iso_8601(),
|
|
8552
|
-
cohort: factories['io.flow.internal.v0.enums.merchant_cohort'](),
|
|
8553
8491
|
}),
|
|
8554
8492
|
|
|
8555
8493
|
'io.flow.internal.v0.models.account_settings_deleted': (): io.flow.internal.v0.models.AccountSettingsDeleted => ({
|
|
@@ -9140,12 +9078,6 @@ const factories = {
|
|
|
9140
9078
|
count: factories.long(),
|
|
9141
9079
|
}),
|
|
9142
9080
|
|
|
9143
|
-
'io.flow.internal.v0.models.algolia_index_assignment': (): io.flow.internal.v0.models.AlgoliaIndexAssignment => ({
|
|
9144
|
-
id: factories.string(),
|
|
9145
|
-
name: factories.string(),
|
|
9146
|
-
application_id: factories.string(),
|
|
9147
|
-
}),
|
|
9148
|
-
|
|
9149
9081
|
'io.flow.internal.v0.models.all_items_export': (): io.flow.internal.v0.models.AllItemsExport => ({
|
|
9150
9082
|
discriminator: 'all_items_export',
|
|
9151
9083
|
event_id: factories.string(),
|
|
@@ -9272,6 +9204,13 @@ const factories = {
|
|
|
9272
9204
|
action: factories['io.flow.internal.v0.enums.restriction_status'](),
|
|
9273
9205
|
}),
|
|
9274
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
|
+
|
|
9275
9214
|
'io.flow.internal.v0.models.bank_account_reference': (): io.flow.internal.v0.models.BankAccountReference => ({
|
|
9276
9215
|
id: factories.string(),
|
|
9277
9216
|
}),
|
|
@@ -10319,6 +10258,7 @@ const factories = {
|
|
|
10319
10258
|
next_action_from: factories['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'](),
|
|
10320
10259
|
order_created_at: factories.date_time_iso_8601(),
|
|
10321
10260
|
order_updated_at: factories.date_time_iso_8601(),
|
|
10261
|
+
order_edit_summary: factories['io.flow.internal.v0.models.order_edit_summary'](),
|
|
10322
10262
|
}),
|
|
10323
10263
|
|
|
10324
10264
|
'io.flow.internal.v0.models.channel_order_acceptance_deleted': (): io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted => ({
|
|
@@ -11018,13 +10958,6 @@ const factories = {
|
|
|
11018
10958
|
added_on: factories.date_iso_8601(),
|
|
11019
10959
|
}),
|
|
11020
10960
|
|
|
11021
|
-
'io.flow.internal.v0.models.colm_item_deleted': (): io.flow.internal.v0.models.ColmItemDeleted => ({
|
|
11022
|
-
discriminator: 'colm_item_deleted',
|
|
11023
|
-
event_id: factories.string(),
|
|
11024
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11025
|
-
id: factories.string(),
|
|
11026
|
-
}),
|
|
11027
|
-
|
|
11028
10961
|
'io.flow.internal.v0.models.colm_item_form': (): io.flow.internal.v0.models.ColmItemForm => ({
|
|
11029
10962
|
number: factories.string(),
|
|
11030
10963
|
amount: factories['io.flow.common.v0.models.price'](),
|
|
@@ -11033,13 +10966,6 @@ const factories = {
|
|
|
11033
10966
|
added_on: factories.date_iso_8601(),
|
|
11034
10967
|
}),
|
|
11035
10968
|
|
|
11036
|
-
'io.flow.internal.v0.models.colm_item_upserted': (): io.flow.internal.v0.models.ColmItemUpserted => ({
|
|
11037
|
-
discriminator: 'colm_item_upserted',
|
|
11038
|
-
event_id: factories.string(),
|
|
11039
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11040
|
-
item: factories['io.flow.internal.v0.models.colm_item'](),
|
|
11041
|
-
}),
|
|
11042
|
-
|
|
11043
10969
|
'io.flow.internal.v0.models.commercial_invoice_comparison': (): io.flow.internal.v0.models.CommercialInvoiceComparison => ({
|
|
11044
10970
|
urls: arrayOf(() => factories.string()),
|
|
11045
10971
|
}),
|
|
@@ -11184,17 +11110,6 @@ const factories = {
|
|
|
11184
11110
|
description: factories.string(),
|
|
11185
11111
|
}),
|
|
11186
11112
|
|
|
11187
|
-
'io.flow.internal.v0.models.cost': (): io.flow.internal.v0.models.Cost => ({
|
|
11188
|
-
source: factories['io.flow.internal.v0.models.cost_rule'](),
|
|
11189
|
-
amount: factories.decimal(),
|
|
11190
|
-
}),
|
|
11191
|
-
|
|
11192
|
-
'io.flow.internal.v0.models.cost_rule': (): io.flow.internal.v0.models.CostRule => ({
|
|
11193
|
-
type: factories['io.flow.internal.v0.enums.cost_type'](),
|
|
11194
|
-
rule: factories['io.flow.internal.v0.unions.money_rule'](),
|
|
11195
|
-
bearer: factories['io.flow.internal.v0.enums.party'](),
|
|
11196
|
-
}),
|
|
11197
|
-
|
|
11198
11113
|
'io.flow.internal.v0.models.country_picker_country': (): io.flow.internal.v0.models.CountryPickerCountry => ({
|
|
11199
11114
|
iso_3166_2: factories.string(),
|
|
11200
11115
|
iso_3166_3: factories.string(),
|
|
@@ -11447,6 +11362,11 @@ const factories = {
|
|
|
11447
11362
|
transaction_id: factories.string(),
|
|
11448
11363
|
}),
|
|
11449
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
|
+
|
|
11450
11370
|
'io.flow.internal.v0.models.debug_details': (): io.flow.internal.v0.models.DebugDetails => ({
|
|
11451
11371
|
labels: arrayOf(() => factories['io.flow.internal.v0.models.debug_label']()),
|
|
11452
11372
|
|
|
@@ -11498,6 +11418,7 @@ const factories = {
|
|
|
11498
11418
|
debug: factories['io.flow.internal.v0.models.debug_details'](),
|
|
11499
11419
|
transactions: arrayOf(() => factories['io.flow.billing.v0.models.transaction']()),
|
|
11500
11420
|
reporting: factories['io.flow.internal.v0.models.reporting_details'](),
|
|
11421
|
+
banking: factories['io.flow.internal.v0.models.debug_banking_details'](),
|
|
11501
11422
|
}),
|
|
11502
11423
|
|
|
11503
11424
|
'io.flow.internal.v0.models.debug_order_transaction_form': (): io.flow.internal.v0.models.DebugOrderTransactionForm => ({
|
|
@@ -11642,13 +11563,6 @@ const factories = {
|
|
|
11642
11563
|
destination: factories['io.flow.common.v0.models.address'](),
|
|
11643
11564
|
}),
|
|
11644
11565
|
|
|
11645
|
-
'io.flow.internal.v0.models.details': (): io.flow.internal.v0.models.Details => ({
|
|
11646
|
-
catalog_item: factories['io.flow.common.v0.models.catalog_item_summary'](),
|
|
11647
|
-
experience: factories['io.flow.common.v0.models.experience_summary'](),
|
|
11648
|
-
upserted_at: factories.date_time_iso_8601(),
|
|
11649
|
-
time_elapsed_since_upserted: factories.long(),
|
|
11650
|
-
}),
|
|
11651
|
-
|
|
11652
11566
|
'io.flow.internal.v0.models.dhl': (): io.flow.internal.v0.models.Dhl => ({
|
|
11653
11567
|
discriminator: 'dhl',
|
|
11654
11568
|
export_account_number: factories.string(),
|
|
@@ -11732,8 +11646,10 @@ const factories = {
|
|
|
11732
11646
|
billable: factories['io.flow.internal.v0.enums.dispute_billable'](),
|
|
11733
11647
|
defense_outcome: factories['io.flow.internal.v0.enums.dispute_defense_outcome'](),
|
|
11734
11648
|
details: factories['io.flow.internal.v0.unions.dispute_details'](),
|
|
11649
|
+
payment_method: factories['io.flow.reference.v0.models.payment_method'](),
|
|
11735
11650
|
issued_at: factories.date_time_iso_8601(),
|
|
11736
11651
|
expires_at: factories.date_time_iso_8601(),
|
|
11652
|
+
defended_at: factories.date_time_iso_8601(),
|
|
11737
11653
|
created_at: factories.date_time_iso_8601(),
|
|
11738
11654
|
updated_at: factories.date_time_iso_8601(),
|
|
11739
11655
|
}),
|
|
@@ -11817,6 +11733,7 @@ const factories = {
|
|
|
11817
11733
|
'io.flow.internal.v0.models.dispute_record': (): io.flow.internal.v0.models.DisputeRecord => ({
|
|
11818
11734
|
id: factories.string(),
|
|
11819
11735
|
organization: factories['io.flow.internal.v0.models.reporting_organization_summary'](),
|
|
11736
|
+
authorization: factories['io.flow.internal.v0.models.reporting_authorization_reference'](),
|
|
11820
11737
|
order: factories['io.flow.internal.v0.models.reporting_order_summary'](),
|
|
11821
11738
|
status: factories['io.flow.internal.v0.enums.dispute_status'](),
|
|
11822
11739
|
processor: factories['io.flow.internal.v0.enums.dispute_processor'](),
|
|
@@ -11897,65 +11814,17 @@ const factories = {
|
|
|
11897
11814
|
created_at: factories.date_time_iso_8601(),
|
|
11898
11815
|
}),
|
|
11899
11816
|
|
|
11900
|
-
'io.flow.internal.v0.models.duty_rate_bulk_request': (): io.flow.internal.v0.models.DutyRateBulkRequest => ({
|
|
11901
|
-
discriminator: 'duty_rate_bulk_request',
|
|
11902
|
-
event_id: factories.string(),
|
|
11903
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11904
|
-
context: factories['io.flow.internal.v0.models.duty_rate_context'](),
|
|
11905
|
-
origin: factories.string(),
|
|
11906
|
-
destination_tariff_code: objectOf(() => factories.string()),
|
|
11907
|
-
}),
|
|
11908
|
-
|
|
11909
|
-
'io.flow.internal.v0.models.duty_rate_bulk_response': (): io.flow.internal.v0.models.DutyRateBulkResponse => ({
|
|
11910
|
-
discriminator: 'duty_rate_bulk_response',
|
|
11911
|
-
event_id: factories.string(),
|
|
11912
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11913
|
-
context: factories['io.flow.internal.v0.models.duty_rate_context'](),
|
|
11914
|
-
duty_rate: arrayOf(() => factories['io.flow.internal.v0.models.duty_rate']()),
|
|
11915
|
-
}),
|
|
11916
|
-
|
|
11917
|
-
'io.flow.internal.v0.models.duty_rate_context': (): io.flow.internal.v0.models.DutyRateContext => ({
|
|
11918
|
-
phrase_id: factories.string(),
|
|
11919
|
-
item_number: factories.string(),
|
|
11920
|
-
product_id: factories.string(),
|
|
11921
|
-
}),
|
|
11922
|
-
|
|
11923
11817
|
'io.flow.internal.v0.models.duty_rate_item_summary': (): io.flow.internal.v0.models.DutyRateItemSummary => ({
|
|
11924
11818
|
number: factories.string(),
|
|
11925
11819
|
product_id: factories.string(),
|
|
11926
11820
|
}),
|
|
11927
11821
|
|
|
11928
|
-
'io.flow.internal.v0.models.duty_rate_request': (): io.flow.internal.v0.models.DutyRateRequest => ({
|
|
11929
|
-
discriminator: 'duty_rate_request',
|
|
11930
|
-
event_id: factories.string(),
|
|
11931
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11932
|
-
destination: factories.string(),
|
|
11933
|
-
origin: factories.string(),
|
|
11934
|
-
tariff_code: factories.string(),
|
|
11935
|
-
}),
|
|
11936
|
-
|
|
11937
|
-
'io.flow.internal.v0.models.duty_rate_response': (): io.flow.internal.v0.models.DutyRateResponse => ({
|
|
11938
|
-
discriminator: 'duty_rate_response',
|
|
11939
|
-
event_id: factories.string(),
|
|
11940
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11941
|
-
duty_rate: factories['io.flow.internal.v0.models.duty_rate'](),
|
|
11942
|
-
}),
|
|
11943
|
-
|
|
11944
11822
|
'io.flow.internal.v0.models.duty_rate_summary': (): io.flow.internal.v0.models.DutyRateSummary => ({
|
|
11945
11823
|
tariff_code: factories.string(),
|
|
11946
11824
|
origin: factories.string(),
|
|
11947
11825
|
destination: factories.string(),
|
|
11948
11826
|
}),
|
|
11949
11827
|
|
|
11950
|
-
'io.flow.internal.v0.models.duty_rate_upserted': (): io.flow.internal.v0.models.DutyRateUpserted => ({
|
|
11951
|
-
discriminator: 'duty_rate_upserted',
|
|
11952
|
-
event_id: factories.string(),
|
|
11953
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11954
|
-
source_event: factories['io.flow.internal.v0.models.duty_raw_upserted'](),
|
|
11955
|
-
duty_rate: factories['io.flow.internal.v0.models.duty_rate'](),
|
|
11956
|
-
unparsable_rates: arrayOf(() => factories.string()),
|
|
11957
|
-
}),
|
|
11958
|
-
|
|
11959
11828
|
'io.flow.internal.v0.models.duty_rates_data_summary': (): io.flow.internal.v0.models.DutyRatesDataSummary => ({
|
|
11960
11829
|
id: factories.string(),
|
|
11961
11830
|
item_summary: factories['io.flow.internal.v0.models.duty_rate_item_summary'](),
|
|
@@ -11984,21 +11853,6 @@ const factories = {
|
|
|
11984
11853
|
created_at: factories.date_time_iso_8601(),
|
|
11985
11854
|
}),
|
|
11986
11855
|
|
|
11987
|
-
'io.flow.internal.v0.models.duty_raw_bulk_upserted': (): io.flow.internal.v0.models.DutyRawBulkUpserted => ({
|
|
11988
|
-
discriminator: 'duty_raw_bulk_upserted',
|
|
11989
|
-
event_id: factories.string(),
|
|
11990
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11991
|
-
context: factories['io.flow.internal.v0.models.duty_rate_context'](),
|
|
11992
|
-
duty_raw: arrayOf(() => factories['io.flow.internal.v0.models.duty_raw']()),
|
|
11993
|
-
}),
|
|
11994
|
-
|
|
11995
|
-
'io.flow.internal.v0.models.duty_raw_upserted': (): io.flow.internal.v0.models.DutyRawUpserted => ({
|
|
11996
|
-
discriminator: 'duty_raw_upserted',
|
|
11997
|
-
event_id: factories.string(),
|
|
11998
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11999
|
-
duty_raw: factories['io.flow.internal.v0.models.duty_raw'](),
|
|
12000
|
-
}),
|
|
12001
|
-
|
|
12002
11856
|
'io.flow.internal.v0.models.duty_simple_expression': (): io.flow.internal.v0.models.DutySimpleExpression => ({
|
|
12003
11857
|
discriminator: 'duty_simple_expression',
|
|
12004
11858
|
type: factories['io.flow.internal.v0.enums.duty_simple_expression_type'](),
|
|
@@ -12033,37 +11887,6 @@ const factories = {
|
|
|
12033
11887
|
duty_transaction: factories['io.flow.internal.v0.models.duty_transaction'](),
|
|
12034
11888
|
}),
|
|
12035
11889
|
|
|
12036
|
-
'io.flow.internal.v0.models.eldar_item': (): io.flow.internal.v0.models.EldarItem => ({
|
|
12037
|
-
id: factories.string(),
|
|
12038
|
-
number: factories.string(),
|
|
12039
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
12040
|
-
description: factories.string(),
|
|
12041
|
-
type: factories['io.flow.internal.v0.enums.eldar_item_type'](),
|
|
12042
|
-
added_on: factories.date_time_iso_8601(),
|
|
12043
|
-
}),
|
|
12044
|
-
|
|
12045
|
-
'io.flow.internal.v0.models.eldar_item_deleted': (): io.flow.internal.v0.models.EldarItemDeleted => ({
|
|
12046
|
-
discriminator: 'eldar_item_deleted',
|
|
12047
|
-
event_id: factories.string(),
|
|
12048
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12049
|
-
id: factories.string(),
|
|
12050
|
-
}),
|
|
12051
|
-
|
|
12052
|
-
'io.flow.internal.v0.models.eldar_item_form': (): io.flow.internal.v0.models.EldarItemForm => ({
|
|
12053
|
-
number: factories.string(),
|
|
12054
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
12055
|
-
description: factories.string(),
|
|
12056
|
-
type: factories['io.flow.internal.v0.enums.eldar_item_type'](),
|
|
12057
|
-
added_on: factories.date_time_iso_8601(),
|
|
12058
|
-
}),
|
|
12059
|
-
|
|
12060
|
-
'io.flow.internal.v0.models.eldar_item_upserted': (): io.flow.internal.v0.models.EldarItemUpserted => ({
|
|
12061
|
-
discriminator: 'eldar_item_upserted',
|
|
12062
|
-
event_id: factories.string(),
|
|
12063
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12064
|
-
item: factories['io.flow.internal.v0.models.eldar_item'](),
|
|
12065
|
-
}),
|
|
12066
|
-
|
|
12067
11890
|
'io.flow.internal.v0.models.email_form': (): io.flow.internal.v0.models.EmailForm => ({
|
|
12068
11891
|
to: arrayOf(() => factories.string()),
|
|
12069
11892
|
cc: arrayOf(() => factories.string()),
|
|
@@ -12927,7 +12750,6 @@ const factories = {
|
|
|
12927
12750
|
payment_authorization_id: factories.string(),
|
|
12928
12751
|
decline_reason: factories['io.flow.internal.v0.unions.decline_reason'](),
|
|
12929
12752
|
created_at: factories.date_time_iso_8601(),
|
|
12930
|
-
has_provider_link: factories.boolean(),
|
|
12931
12753
|
}),
|
|
12932
12754
|
|
|
12933
12755
|
'io.flow.internal.v0.models.fraud_review_authorization': (): io.flow.internal.v0.models.FraudReviewAuthorization => ({
|
|
@@ -12946,7 +12768,6 @@ const factories = {
|
|
|
12946
12768
|
payment_authorization_id: factories.string(),
|
|
12947
12769
|
decline_reason: factories['io.flow.internal.v0.unions.decline_reason'](),
|
|
12948
12770
|
created_at: factories.date_time_iso_8601(),
|
|
12949
|
-
has_provider_link: factories.boolean(),
|
|
12950
12771
|
}),
|
|
12951
12772
|
|
|
12952
12773
|
'io.flow.internal.v0.models.fraud_review_authorization_decision': (): io.flow.internal.v0.models.FraudReviewAuthorizationDecision => ({
|
|
@@ -13438,37 +13259,6 @@ const factories = {
|
|
|
13438
13259
|
tracker_id: factories.string(),
|
|
13439
13260
|
}),
|
|
13440
13261
|
|
|
13441
|
-
'io.flow.internal.v0.models.harinath_item': (): io.flow.internal.v0.models.HarinathItem => ({
|
|
13442
|
-
id: factories.string(),
|
|
13443
|
-
number: factories.string(),
|
|
13444
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
13445
|
-
description: factories.string(),
|
|
13446
|
-
type: factories['io.flow.internal.v0.enums.harinath_item_type'](),
|
|
13447
|
-
added_on: factories.date_time_iso_8601(),
|
|
13448
|
-
}),
|
|
13449
|
-
|
|
13450
|
-
'io.flow.internal.v0.models.harinath_item_deleted': (): io.flow.internal.v0.models.HarinathItemDeleted => ({
|
|
13451
|
-
discriminator: 'harinath_item_deleted',
|
|
13452
|
-
event_id: factories.string(),
|
|
13453
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13454
|
-
id: factories.string(),
|
|
13455
|
-
}),
|
|
13456
|
-
|
|
13457
|
-
'io.flow.internal.v0.models.harinath_item_form': (): io.flow.internal.v0.models.HarinathItemForm => ({
|
|
13458
|
-
number: factories.string(),
|
|
13459
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
13460
|
-
description: factories.string(),
|
|
13461
|
-
type: factories['io.flow.internal.v0.enums.harinath_item_type'](),
|
|
13462
|
-
added_on: factories.date_time_iso_8601(),
|
|
13463
|
-
}),
|
|
13464
|
-
|
|
13465
|
-
'io.flow.internal.v0.models.harinath_item_upserted': (): io.flow.internal.v0.models.HarinathItemUpserted => ({
|
|
13466
|
-
discriminator: 'harinath_item_upserted',
|
|
13467
|
-
event_id: factories.string(),
|
|
13468
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13469
|
-
item: factories['io.flow.internal.v0.models.harinath_item'](),
|
|
13470
|
-
}),
|
|
13471
|
-
|
|
13472
13262
|
'io.flow.internal.v0.models.harmonization_classification_statistics_data': (): io.flow.internal.v0.models.HarmonizationClassificationStatisticsData => ({
|
|
13473
13263
|
statistics: factories['io.flow.internal.v0.models.classification_statistics'](),
|
|
13474
13264
|
}),
|
|
@@ -13599,21 +13389,6 @@ const factories = {
|
|
|
13599
13389
|
description: factories.string(),
|
|
13600
13390
|
}),
|
|
13601
13391
|
|
|
13602
|
-
'io.flow.internal.v0.models.hybris_catalog_items_import_request': (): io.flow.internal.v0.models.HybrisCatalogItemsImportRequest => ({
|
|
13603
|
-
discriminator: 'hybris_catalog_items_import_request',
|
|
13604
|
-
event_id: factories.string(),
|
|
13605
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13606
|
-
organization: factories.string(),
|
|
13607
|
-
request: factories['io.flow.internal.v0.models.hybris_catalog_items_import_request_data'](),
|
|
13608
|
-
}),
|
|
13609
|
-
|
|
13610
|
-
'io.flow.internal.v0.models.hybris_catalog_items_import_request_data': (): io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData => ({
|
|
13611
|
-
id: factories.string(),
|
|
13612
|
-
import_id: factories.string(),
|
|
13613
|
-
source_url: factories.string(),
|
|
13614
|
-
filename: factories.string(),
|
|
13615
|
-
}),
|
|
13616
|
-
|
|
13617
13392
|
'io.flow.internal.v0.models.import_completed': (): io.flow.internal.v0.models.ImportCompleted => ({
|
|
13618
13393
|
discriminator: 'import_completed',
|
|
13619
13394
|
event_id: factories.string(),
|
|
@@ -13632,22 +13407,6 @@ const factories = {
|
|
|
13632
13407
|
error: factories.string(),
|
|
13633
13408
|
}),
|
|
13634
13409
|
|
|
13635
|
-
'io.flow.internal.v0.models.index_assignment_deleted': (): io.flow.internal.v0.models.IndexAssignmentDeleted => ({
|
|
13636
|
-
discriminator: 'index_assignment_deleted',
|
|
13637
|
-
event_id: factories.string(),
|
|
13638
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13639
|
-
organization: factories.string(),
|
|
13640
|
-
id: factories.string(),
|
|
13641
|
-
}),
|
|
13642
|
-
|
|
13643
|
-
'io.flow.internal.v0.models.index_assignment_upserted': (): io.flow.internal.v0.models.IndexAssignmentUpserted => ({
|
|
13644
|
-
discriminator: 'index_assignment_upserted',
|
|
13645
|
-
event_id: factories.string(),
|
|
13646
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13647
|
-
organization: factories.string(),
|
|
13648
|
-
assignment: factories['io.flow.internal.v0.models.algolia_index_assignment'](),
|
|
13649
|
-
}),
|
|
13650
|
-
|
|
13651
13410
|
'io.flow.internal.v0.models.install_form': (): io.flow.internal.v0.models.InstallForm => ({
|
|
13652
13411
|
token: factories.string(),
|
|
13653
13412
|
}),
|
|
@@ -13971,10 +13730,6 @@ const factories = {
|
|
|
13971
13730
|
values: arrayOf(() => factories.string()),
|
|
13972
13731
|
}),
|
|
13973
13732
|
|
|
13974
|
-
'io.flow.internal.v0.models.item_form': (): io.flow.internal.v0.models.ItemForm => ({
|
|
13975
|
-
amount: factories.decimal(),
|
|
13976
|
-
}),
|
|
13977
|
-
|
|
13978
13733
|
'io.flow.internal.v0.models.item_form_import_request': (): io.flow.internal.v0.models.ItemFormImportRequest => ({
|
|
13979
13734
|
discriminator: 'item_form_import_request',
|
|
13980
13735
|
event_id: factories.string(),
|
|
@@ -14159,37 +13914,6 @@ const factories = {
|
|
|
14159
13914
|
descriptive_asset_urls: factories.string(),
|
|
14160
13915
|
}),
|
|
14161
13916
|
|
|
14162
|
-
'io.flow.internal.v0.models.konstantin_item': (): io.flow.internal.v0.models.KonstantinItem => ({
|
|
14163
|
-
id: factories.string(),
|
|
14164
|
-
number: factories.string(),
|
|
14165
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
14166
|
-
description: factories.string(),
|
|
14167
|
-
type: factories['io.flow.internal.v0.enums.konstantin_item_type'](),
|
|
14168
|
-
added_on: factories.date_time_iso_8601(),
|
|
14169
|
-
}),
|
|
14170
|
-
|
|
14171
|
-
'io.flow.internal.v0.models.konstantin_item_deleted': (): io.flow.internal.v0.models.KonstantinItemDeleted => ({
|
|
14172
|
-
discriminator: 'konstantin_item_deleted',
|
|
14173
|
-
event_id: factories.string(),
|
|
14174
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14175
|
-
id: factories.string(),
|
|
14176
|
-
}),
|
|
14177
|
-
|
|
14178
|
-
'io.flow.internal.v0.models.konstantin_item_form': (): io.flow.internal.v0.models.KonstantinItemForm => ({
|
|
14179
|
-
number: factories.string(),
|
|
14180
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
14181
|
-
description: factories.string(),
|
|
14182
|
-
type: factories['io.flow.internal.v0.enums.konstantin_item_type'](),
|
|
14183
|
-
added_on: factories.date_time_iso_8601(),
|
|
14184
|
-
}),
|
|
14185
|
-
|
|
14186
|
-
'io.flow.internal.v0.models.konstantin_item_upserted': (): io.flow.internal.v0.models.KonstantinItemUpserted => ({
|
|
14187
|
-
discriminator: 'konstantin_item_upserted',
|
|
14188
|
-
event_id: factories.string(),
|
|
14189
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14190
|
-
item: factories['io.flow.internal.v0.models.konstantin_item'](),
|
|
14191
|
-
}),
|
|
14192
|
-
|
|
14193
13917
|
'io.flow.internal.v0.models.lab_project_settings': (): io.flow.internal.v0.models.LabProjectSettings => ({
|
|
14194
13918
|
id: factories.string(),
|
|
14195
13919
|
flow_lab_project_key: factories.string(),
|
|
@@ -15229,37 +14953,6 @@ const factories = {
|
|
|
15229
14953
|
id: factories.string(),
|
|
15230
14954
|
}),
|
|
15231
14955
|
|
|
15232
|
-
'io.flow.internal.v0.models.matias_item': (): io.flow.internal.v0.models.MatiasItem => ({
|
|
15233
|
-
id: factories.string(),
|
|
15234
|
-
number: factories.string(),
|
|
15235
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15236
|
-
description: factories.string(),
|
|
15237
|
-
type: factories['io.flow.internal.v0.enums.matias_item_type'](),
|
|
15238
|
-
added_on: factories.date_time_iso_8601(),
|
|
15239
|
-
}),
|
|
15240
|
-
|
|
15241
|
-
'io.flow.internal.v0.models.matias_item_deleted': (): io.flow.internal.v0.models.MatiasItemDeleted => ({
|
|
15242
|
-
discriminator: 'matias_item_deleted',
|
|
15243
|
-
event_id: factories.string(),
|
|
15244
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15245
|
-
id: factories.string(),
|
|
15246
|
-
}),
|
|
15247
|
-
|
|
15248
|
-
'io.flow.internal.v0.models.matias_item_form': (): io.flow.internal.v0.models.MatiasItemForm => ({
|
|
15249
|
-
number: factories.string(),
|
|
15250
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15251
|
-
description: factories.string(),
|
|
15252
|
-
type: factories['io.flow.internal.v0.enums.matias_item_type'](),
|
|
15253
|
-
added_on: factories.date_time_iso_8601(),
|
|
15254
|
-
}),
|
|
15255
|
-
|
|
15256
|
-
'io.flow.internal.v0.models.matias_item_upserted': (): io.flow.internal.v0.models.MatiasItemUpserted => ({
|
|
15257
|
-
discriminator: 'matias_item_upserted',
|
|
15258
|
-
event_id: factories.string(),
|
|
15259
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15260
|
-
item: factories['io.flow.internal.v0.models.matias_item'](),
|
|
15261
|
-
}),
|
|
15262
|
-
|
|
15263
14956
|
'io.flow.internal.v0.models.merchant': (): io.flow.internal.v0.models.Merchant => ({
|
|
15264
14957
|
id: factories.string(),
|
|
15265
14958
|
account: factories['io.flow.internal.v0.models.account_reference'](),
|
|
@@ -15285,6 +14978,10 @@ const factories = {
|
|
|
15285
14978
|
id: factories.string(),
|
|
15286
14979
|
}),
|
|
15287
14980
|
|
|
14981
|
+
'io.flow.internal.v0.models.merchant_details': (): io.flow.internal.v0.models.MerchantDetails => ({
|
|
14982
|
+
name: factories.string(),
|
|
14983
|
+
}),
|
|
14984
|
+
|
|
15288
14985
|
'io.flow.internal.v0.models.merchant_fees': (): io.flow.internal.v0.models.MerchantFees => ({
|
|
15289
14986
|
duty_guarantee: factories.decimal(),
|
|
15290
14987
|
mor: factories.decimal(),
|
|
@@ -15412,73 +15109,6 @@ const factories = {
|
|
|
15412
15109
|
proposition: factories['io.flow.internal.v0.models.metadata_proposition'](),
|
|
15413
15110
|
}),
|
|
15414
15111
|
|
|
15415
|
-
'io.flow.internal.v0.models.michaelyan_item': (): io.flow.internal.v0.models.MichaelyanItem => ({
|
|
15416
|
-
id: factories.string(),
|
|
15417
|
-
number: factories.string(),
|
|
15418
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15419
|
-
description: factories.string(),
|
|
15420
|
-
type: factories['io.flow.internal.v0.enums.michaelyan_item_type'](),
|
|
15421
|
-
added_on: factories.date_time_iso_8601(),
|
|
15422
|
-
}),
|
|
15423
|
-
|
|
15424
|
-
'io.flow.internal.v0.models.michaelyan_item_deleted': (): io.flow.internal.v0.models.MichaelyanItemDeleted => ({
|
|
15425
|
-
discriminator: 'michaelyan_item_deleted',
|
|
15426
|
-
event_id: factories.string(),
|
|
15427
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15428
|
-
id: factories.string(),
|
|
15429
|
-
}),
|
|
15430
|
-
|
|
15431
|
-
'io.flow.internal.v0.models.michaelyan_item_form': (): io.flow.internal.v0.models.MichaelyanItemForm => ({
|
|
15432
|
-
number: factories.string(),
|
|
15433
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15434
|
-
description: factories.string(),
|
|
15435
|
-
type: factories['io.flow.internal.v0.enums.michaelyan_item_type'](),
|
|
15436
|
-
added_on: factories.date_time_iso_8601(),
|
|
15437
|
-
}),
|
|
15438
|
-
|
|
15439
|
-
'io.flow.internal.v0.models.michaelyan_item_upserted': (): io.flow.internal.v0.models.MichaelyanItemUpserted => ({
|
|
15440
|
-
discriminator: 'michaelyan_item_upserted',
|
|
15441
|
-
event_id: factories.string(),
|
|
15442
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15443
|
-
item: factories['io.flow.internal.v0.models.michaelyan_item'](),
|
|
15444
|
-
}),
|
|
15445
|
-
|
|
15446
|
-
'io.flow.internal.v0.models.miljenko_item': (): io.flow.internal.v0.models.MiljenkoItem => ({
|
|
15447
|
-
id: factories.string(),
|
|
15448
|
-
number: factories.string(),
|
|
15449
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15450
|
-
description: factories.string(),
|
|
15451
|
-
type: factories['io.flow.internal.v0.enums.miljenko_item_type'](),
|
|
15452
|
-
added_on: factories.date_time_iso_8601(),
|
|
15453
|
-
}),
|
|
15454
|
-
|
|
15455
|
-
'io.flow.internal.v0.models.miljenko_item_deleted': (): io.flow.internal.v0.models.MiljenkoItemDeleted => ({
|
|
15456
|
-
discriminator: 'miljenko_item_deleted',
|
|
15457
|
-
event_id: factories.string(),
|
|
15458
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15459
|
-
id: factories.string(),
|
|
15460
|
-
}),
|
|
15461
|
-
|
|
15462
|
-
'io.flow.internal.v0.models.miljenko_item_form': (): io.flow.internal.v0.models.MiljenkoItemForm => ({
|
|
15463
|
-
number: factories.string(),
|
|
15464
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15465
|
-
description: factories.string(),
|
|
15466
|
-
type: factories['io.flow.internal.v0.enums.miljenko_item_type'](),
|
|
15467
|
-
added_on: factories.date_time_iso_8601(),
|
|
15468
|
-
}),
|
|
15469
|
-
|
|
15470
|
-
'io.flow.internal.v0.models.miljenko_item_upserted': (): io.flow.internal.v0.models.MiljenkoItemUpserted => ({
|
|
15471
|
-
discriminator: 'miljenko_item_upserted',
|
|
15472
|
-
event_id: factories.string(),
|
|
15473
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15474
|
-
item: factories['io.flow.internal.v0.models.miljenko_item'](),
|
|
15475
|
-
}),
|
|
15476
|
-
|
|
15477
|
-
'io.flow.internal.v0.models.money_percentage': (): io.flow.internal.v0.models.MoneyPercentage => ({
|
|
15478
|
-
discriminator: 'percentage',
|
|
15479
|
-
percent: factories.decimal(),
|
|
15480
|
-
}),
|
|
15481
|
-
|
|
15482
15112
|
'io.flow.internal.v0.models.negative_debit_metrics': (): io.flow.internal.v0.models.NegativeDebitMetrics => ({
|
|
15483
15113
|
current_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
|
|
15484
15114
|
first_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
|
|
@@ -15776,6 +15406,11 @@ const factories = {
|
|
|
15776
15406
|
disputes: arrayOf(() => factories['io.flow.internal.v0.models.dispute_detail']()),
|
|
15777
15407
|
}),
|
|
15778
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
|
+
|
|
15779
15414
|
'io.flow.internal.v0.models.order_fulfillment_deleted': (): io.flow.internal.v0.models.OrderFulfillmentDeleted => ({
|
|
15780
15415
|
discriminator: 'order_fulfillment_deleted',
|
|
15781
15416
|
event_id: factories.string(),
|
|
@@ -17147,50 +16782,9 @@ const factories = {
|
|
|
17147
16782
|
quote_request: factories['io.flow.internal.v0.models.quote_request'](),
|
|
17148
16783
|
}),
|
|
17149
16784
|
|
|
17150
|
-
'io.flow.internal.v0.models.
|
|
17151
|
-
|
|
17152
|
-
|
|
17153
|
-
timestamp: factories.date_time_iso_8601(),
|
|
17154
|
-
organization: factories.string(),
|
|
17155
|
-
published_from: factories['io.flow.internal.v0.enums.service_name'](),
|
|
17156
|
-
status: factories['io.flow.internal.v0.enums.pricing_indicator_status'](),
|
|
17157
|
-
event_identifier: factories.string(),
|
|
17158
|
-
details: factories['io.flow.internal.v0.models.details'](),
|
|
17159
|
-
}),
|
|
17160
|
-
|
|
17161
|
-
'io.flow.internal.v0.models.pricing_indicator_dynamo': (): io.flow.internal.v0.models.PricingIndicatorDynamo => ({
|
|
17162
|
-
organization_id: factories.string(),
|
|
17163
|
-
item_number: factories.string(),
|
|
17164
|
-
experience_key: factories.string(),
|
|
17165
|
-
upserted_at: factories.date_time_iso_8601(),
|
|
17166
|
-
time_elapsed_since_upserted: factories.long(),
|
|
17167
|
-
event_identifier: factories.string(),
|
|
17168
|
-
status: factories['io.flow.pricing.indicator.internal.event.v0.enums.pricing_indicator_status'](),
|
|
17169
|
-
published_at: factories.date_time_iso_8601(),
|
|
17170
|
-
published_from: factories['io.flow.pricing.indicator.internal.event.v0.enums.service_name'](),
|
|
17171
|
-
expiration_time_in_epoch: factories.long(),
|
|
17172
|
-
catalog_item: factories['io.flow.common.v0.models.catalog_item_summary'](),
|
|
17173
|
-
experience: factories['io.flow.common.v0.models.experience_summary'](),
|
|
17174
|
-
}),
|
|
17175
|
-
|
|
17176
|
-
'io.flow.internal.v0.models.principal': (): io.flow.internal.v0.models.Principal => ({
|
|
17177
|
-
type: factories['io.flow.internal.v0.enums.principal_type'](),
|
|
17178
|
-
amount: factories.decimal(),
|
|
17179
|
-
}),
|
|
17180
|
-
|
|
17181
|
-
'io.flow.internal.v0.models.prioritized_center_reference': (): io.flow.internal.v0.models.PrioritizedCenterReference => ({
|
|
17182
|
-
center_key: factories.string(),
|
|
17183
|
-
position: factories.long(),
|
|
17184
|
-
}),
|
|
17185
|
-
|
|
17186
|
-
'io.flow.internal.v0.models.processed_payment_summary': (): io.flow.internal.v0.models.ProcessedPaymentSummary => ({
|
|
17187
|
-
type: factories['io.flow.reference.v0.enums.payment_method_capability'](),
|
|
17188
|
-
amount: factories.decimal(),
|
|
17189
|
-
currency: factories['io.flow.reference.v0.models.currency'](),
|
|
17190
|
-
method: factories['io.flow.reference.v0.models.payment_method'](),
|
|
17191
|
-
card_issuer_country: factories['io.flow.reference.v0.models.country'](),
|
|
17192
|
-
shipping_address_country: factories['io.flow.reference.v0.models.country'](),
|
|
17193
|
-
billing_address_country: factories['io.flow.reference.v0.models.country'](),
|
|
16785
|
+
'io.flow.internal.v0.models.prioritized_center_reference': (): io.flow.internal.v0.models.PrioritizedCenterReference => ({
|
|
16786
|
+
center_key: factories.string(),
|
|
16787
|
+
position: factories.long(),
|
|
17194
16788
|
}),
|
|
17195
16789
|
|
|
17196
16790
|
'io.flow.internal.v0.models.processing_transaction': (): io.flow.internal.v0.models.ProcessingTransaction => ({
|
|
@@ -17403,49 +16997,6 @@ const factories = {
|
|
|
17403
16997
|
quantity: factories.long(),
|
|
17404
16998
|
}),
|
|
17405
16999
|
|
|
17406
|
-
'io.flow.internal.v0.models.profit': (): io.flow.internal.v0.models.Profit => ({
|
|
17407
|
-
key: factories['io.flow.internal.v0.enums.profit_stream_key'](),
|
|
17408
|
-
principal: factories['io.flow.internal.v0.models.principal'](),
|
|
17409
|
-
revenue: arrayOf(() => factories['io.flow.internal.v0.models.revenue']()),
|
|
17410
|
-
costs: arrayOf(() => factories['io.flow.internal.v0.models.cost']()),
|
|
17411
|
-
amount: factories.decimal(),
|
|
17412
|
-
splits: arrayOf(() => factories['io.flow.internal.v0.models.profit_split']()),
|
|
17413
|
-
}),
|
|
17414
|
-
|
|
17415
|
-
'io.flow.internal.v0.models.profit_share': (): io.flow.internal.v0.models.ProfitShare => ({
|
|
17416
|
-
order: factories['io.flow.internal.v0.models.profit_share_order_reference'](),
|
|
17417
|
-
profits: arrayOf(() => factories['io.flow.internal.v0.models.profit']()),
|
|
17418
|
-
}),
|
|
17419
|
-
|
|
17420
|
-
'io.flow.internal.v0.models.profit_share_order_reference': (): io.flow.internal.v0.models.ProfitShareOrderReference => ({
|
|
17421
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
17422
|
-
number: factories.string(),
|
|
17423
|
-
}),
|
|
17424
|
-
|
|
17425
|
-
'io.flow.internal.v0.models.profit_share_plan': (): io.flow.internal.v0.models.ProfitSharePlan => ({
|
|
17426
|
-
order: factories['io.flow.internal.v0.models.profit_share_order_reference'](),
|
|
17427
|
-
streams: arrayOf(() => factories['io.flow.internal.v0.models.profit_stream']()),
|
|
17428
|
-
}),
|
|
17429
|
-
|
|
17430
|
-
'io.flow.internal.v0.models.profit_split': (): io.flow.internal.v0.models.ProfitSplit => ({
|
|
17431
|
-
rule: factories['io.flow.internal.v0.models.profit_split_rule'](),
|
|
17432
|
-
amount: factories.decimal(),
|
|
17433
|
-
}),
|
|
17434
|
-
|
|
17435
|
-
'io.flow.internal.v0.models.profit_split_rule': (): io.flow.internal.v0.models.ProfitSplitRule => ({
|
|
17436
|
-
payee: factories['io.flow.internal.v0.enums.party'](),
|
|
17437
|
-
rule: factories['io.flow.internal.v0.unions.money_rule'](),
|
|
17438
|
-
}),
|
|
17439
|
-
|
|
17440
|
-
'io.flow.internal.v0.models.profit_stream': (): io.flow.internal.v0.models.ProfitStream => ({
|
|
17441
|
-
key: factories['io.flow.internal.v0.enums.profit_stream_key'](),
|
|
17442
|
-
description: factories.string(),
|
|
17443
|
-
principal: factories['io.flow.internal.v0.enums.principal_type'](),
|
|
17444
|
-
revenue: arrayOf(() => factories['io.flow.internal.v0.models.revenue_rule']()),
|
|
17445
|
-
costs: arrayOf(() => factories['io.flow.internal.v0.models.cost_rule']()),
|
|
17446
|
-
splits: arrayOf(() => factories['io.flow.internal.v0.models.profit_split_rule']()),
|
|
17447
|
-
}),
|
|
17448
|
-
|
|
17449
17000
|
'io.flow.internal.v0.models.proof_of_posting_externally_fulfilled': (): io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled => ({
|
|
17450
17001
|
discriminator: 'external',
|
|
17451
17002
|
external_fulfillment_proof_id: factories.string(),
|
|
@@ -18569,6 +18120,21 @@ const factories = {
|
|
|
18569
18120
|
num_pending_decisions_transacting: factories.decimal(),
|
|
18570
18121
|
}),
|
|
18571
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
|
+
|
|
18572
18138
|
'io.flow.internal.v0.models.resync_by_destinations': (): io.flow.internal.v0.models.ResyncByDestinations => ({
|
|
18573
18139
|
destinations: arrayOf(() => factories['io.flow.reference.v0.models.country']()),
|
|
18574
18140
|
}),
|
|
@@ -18655,11 +18221,6 @@ const factories = {
|
|
|
18655
18221
|
refund: factories['io.flow.payment.v0.models.refund_reference'](),
|
|
18656
18222
|
}),
|
|
18657
18223
|
|
|
18658
|
-
'io.flow.internal.v0.models.revenue': (): io.flow.internal.v0.models.Revenue => ({
|
|
18659
|
-
source: factories['io.flow.internal.v0.models.revenue_rule'](),
|
|
18660
|
-
amount: factories.decimal(),
|
|
18661
|
-
}),
|
|
18662
|
-
|
|
18663
18224
|
'io.flow.internal.v0.models.revenue_record': (): io.flow.internal.v0.models.RevenueRecord => ({
|
|
18664
18225
|
id: factories.string(),
|
|
18665
18226
|
organization: factories['io.flow.internal.v0.models.reporting_organization_summary'](),
|
|
@@ -18693,11 +18254,6 @@ const factories = {
|
|
|
18693
18254
|
revenue_record: factories['io.flow.internal.v0.models.revenue_record'](),
|
|
18694
18255
|
}),
|
|
18695
18256
|
|
|
18696
|
-
'io.flow.internal.v0.models.revenue_rule': (): io.flow.internal.v0.models.RevenueRule => ({
|
|
18697
|
-
type: factories['io.flow.internal.v0.enums.revenue_type'](),
|
|
18698
|
-
rule: factories['io.flow.internal.v0.unions.money_rule'](),
|
|
18699
|
-
}),
|
|
18700
|
-
|
|
18701
18257
|
'io.flow.internal.v0.models.routing_account': (): io.flow.internal.v0.models.RoutingAccount => ({
|
|
18702
18258
|
discriminator: 'routing_account',
|
|
18703
18259
|
processor: factories['io.flow.internal.v0.enums.processor'](),
|
|
@@ -18724,37 +18280,6 @@ const factories = {
|
|
|
18724
18280
|
requested_by: factories.string(),
|
|
18725
18281
|
}),
|
|
18726
18282
|
|
|
18727
|
-
'io.flow.internal.v0.models.sanjay_item': (): io.flow.internal.v0.models.SanjayItem => ({
|
|
18728
|
-
id: factories.string(),
|
|
18729
|
-
number: factories.string(),
|
|
18730
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18731
|
-
description: factories.string(),
|
|
18732
|
-
type: factories['io.flow.internal.v0.enums.sanjay_item_type'](),
|
|
18733
|
-
added_on: factories.date_time_iso_8601(),
|
|
18734
|
-
}),
|
|
18735
|
-
|
|
18736
|
-
'io.flow.internal.v0.models.sanjay_item_deleted': (): io.flow.internal.v0.models.SanjayItemDeleted => ({
|
|
18737
|
-
discriminator: 'sanjay_item_deleted',
|
|
18738
|
-
event_id: factories.string(),
|
|
18739
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18740
|
-
id: factories.string(),
|
|
18741
|
-
}),
|
|
18742
|
-
|
|
18743
|
-
'io.flow.internal.v0.models.sanjay_item_form': (): io.flow.internal.v0.models.SanjayItemForm => ({
|
|
18744
|
-
number: factories.string(),
|
|
18745
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18746
|
-
description: factories.string(),
|
|
18747
|
-
type: factories['io.flow.internal.v0.enums.sanjay_item_type'](),
|
|
18748
|
-
added_on: factories.date_time_iso_8601(),
|
|
18749
|
-
}),
|
|
18750
|
-
|
|
18751
|
-
'io.flow.internal.v0.models.sanjay_item_upserted': (): io.flow.internal.v0.models.SanjayItemUpserted => ({
|
|
18752
|
-
discriminator: 'sanjay_item_upserted',
|
|
18753
|
-
event_id: factories.string(),
|
|
18754
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18755
|
-
item: factories['io.flow.internal.v0.models.sanjay_item'](),
|
|
18756
|
-
}),
|
|
18757
|
-
|
|
18758
18283
|
'io.flow.internal.v0.models.scheduled_payment': (): io.flow.internal.v0.models.ScheduledPayment => ({
|
|
18759
18284
|
payment: factories['io.flow.internal.v0.models.report_payment'](),
|
|
18760
18285
|
bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
|
|
@@ -19025,6 +18550,49 @@ const factories = {
|
|
|
19025
18550
|
placeholder: factories.string(),
|
|
19026
18551
|
}),
|
|
19027
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
|
+
|
|
19028
18596
|
'io.flow.internal.v0.models.shopify_markets_discrepancy': (): io.flow.internal.v0.models.ShopifyMarketsDiscrepancy => ({
|
|
19029
18597
|
organization_id: factories.string(),
|
|
19030
18598
|
count: factories.long(),
|
|
@@ -19076,6 +18644,19 @@ const factories = {
|
|
|
19076
18644
|
shopify_markets_order: factories['io.flow.internal.v0.models.shopify_markets_order'](),
|
|
19077
18645
|
}),
|
|
19078
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
|
+
|
|
19079
18660
|
'io.flow.internal.v0.models.shopify_markets_order_upserted': (): io.flow.internal.v0.models.ShopifyMarketsOrderUpserted => ({
|
|
19080
18661
|
discriminator: 'shopify_markets_order_upserted',
|
|
19081
18662
|
event_id: factories.string(),
|
|
@@ -19622,37 +19203,6 @@ const factories = {
|
|
|
19622
19203
|
total: factories.decimal(),
|
|
19623
19204
|
}),
|
|
19624
19205
|
|
|
19625
|
-
'io.flow.internal.v0.models.shruti_demo_item': (): io.flow.internal.v0.models.ShrutiDemoItem => ({
|
|
19626
|
-
id: factories.string(),
|
|
19627
|
-
number: factories.string(),
|
|
19628
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
19629
|
-
description: factories.string(),
|
|
19630
|
-
type: factories['io.flow.internal.v0.enums.shruti_demo_type'](),
|
|
19631
|
-
added_on: factories.date_time_iso_8601(),
|
|
19632
|
-
}),
|
|
19633
|
-
|
|
19634
|
-
'io.flow.internal.v0.models.shruti_demo_item_deleted': (): io.flow.internal.v0.models.ShrutiDemoItemDeleted => ({
|
|
19635
|
-
discriminator: 'shruti_demo_item_deleted',
|
|
19636
|
-
event_id: factories.string(),
|
|
19637
|
-
timestamp: factories.date_time_iso_8601(),
|
|
19638
|
-
id: factories.string(),
|
|
19639
|
-
}),
|
|
19640
|
-
|
|
19641
|
-
'io.flow.internal.v0.models.shruti_demo_item_form': (): io.flow.internal.v0.models.ShrutiDemoItemForm => ({
|
|
19642
|
-
number: factories.string(),
|
|
19643
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
19644
|
-
description: factories.string(),
|
|
19645
|
-
type: factories['io.flow.internal.v0.enums.shruti_demo_type'](),
|
|
19646
|
-
added_on: factories.date_time_iso_8601(),
|
|
19647
|
-
}),
|
|
19648
|
-
|
|
19649
|
-
'io.flow.internal.v0.models.shruti_demo_item_upserted': (): io.flow.internal.v0.models.ShrutiDemoItemUpserted => ({
|
|
19650
|
-
discriminator: 'shruti_demo_item_upserted',
|
|
19651
|
-
event_id: factories.string(),
|
|
19652
|
-
timestamp: factories.date_time_iso_8601(),
|
|
19653
|
-
item: factories['io.flow.internal.v0.models.shruti_demo_item'](),
|
|
19654
|
-
}),
|
|
19655
|
-
|
|
19656
19206
|
'io.flow.internal.v0.models.simple_account_reference': (): io.flow.internal.v0.models.SimpleAccountReference => ({
|
|
19657
19207
|
id: factories.string(),
|
|
19658
19208
|
}),
|
|
@@ -20123,70 +19673,6 @@ const factories = {
|
|
|
20123
19673
|
values: arrayOf(() => factories['io.flow.internal.v0.models.label_aliases']()),
|
|
20124
19674
|
}),
|
|
20125
19675
|
|
|
20126
|
-
'io.flow.internal.v0.models.svitlana_item': (): io.flow.internal.v0.models.SvitlanaItem => ({
|
|
20127
|
-
id: factories.string(),
|
|
20128
|
-
number: factories.string(),
|
|
20129
|
-
amount: factories.decimal(),
|
|
20130
|
-
description: factories.string(),
|
|
20131
|
-
type: factories['io.flow.internal.v0.enums.svitlana_type'](),
|
|
20132
|
-
added_on: factories.date_time_iso_8601(),
|
|
20133
|
-
}),
|
|
20134
|
-
|
|
20135
|
-
'io.flow.internal.v0.models.svitlana_item_deleted': (): io.flow.internal.v0.models.SvitlanaItemDeleted => ({
|
|
20136
|
-
discriminator: 'svitlana_item_deleted',
|
|
20137
|
-
event_id: factories.string(),
|
|
20138
|
-
timestamp: factories.date_time_iso_8601(),
|
|
20139
|
-
id: factories.string(),
|
|
20140
|
-
}),
|
|
20141
|
-
|
|
20142
|
-
'io.flow.internal.v0.models.svitlana_item_form': (): io.flow.internal.v0.models.SvitlanaItemForm => ({
|
|
20143
|
-
number: factories.string(),
|
|
20144
|
-
amount: factories.decimal(),
|
|
20145
|
-
description: factories.string(),
|
|
20146
|
-
type: factories['io.flow.internal.v0.enums.svitlana_type'](),
|
|
20147
|
-
}),
|
|
20148
|
-
|
|
20149
|
-
'io.flow.internal.v0.models.svitlana_item_upserted': (): io.flow.internal.v0.models.SvitlanaItemUpserted => ({
|
|
20150
|
-
discriminator: 'svitlana_item_upserted',
|
|
20151
|
-
event_id: factories.string(),
|
|
20152
|
-
timestamp: factories.date_time_iso_8601(),
|
|
20153
|
-
item: factories['io.flow.internal.v0.models.svitlana_item'](),
|
|
20154
|
-
}),
|
|
20155
|
-
|
|
20156
|
-
'io.flow.internal.v0.models.svitlana_test': (): io.flow.internal.v0.models.SvitlanaTest => ({
|
|
20157
|
-
name: factories.string(),
|
|
20158
|
-
}),
|
|
20159
|
-
|
|
20160
|
-
'io.flow.internal.v0.models.tam_item': (): io.flow.internal.v0.models.TamItem => ({
|
|
20161
|
-
id: factories.string(),
|
|
20162
|
-
number: factories.string(),
|
|
20163
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
20164
|
-
description: factories.string(),
|
|
20165
|
-
type: factories['io.flow.internal.v0.enums.tam_item_type'](),
|
|
20166
|
-
added_on: factories.date_iso_8601(),
|
|
20167
|
-
}),
|
|
20168
|
-
|
|
20169
|
-
'io.flow.internal.v0.models.tam_item_deleted': (): io.flow.internal.v0.models.TamItemDeleted => ({
|
|
20170
|
-
discriminator: 'tam_item_deleted',
|
|
20171
|
-
event_id: factories.string(),
|
|
20172
|
-
timestamp: factories.date_time_iso_8601(),
|
|
20173
|
-
id: factories.string(),
|
|
20174
|
-
}),
|
|
20175
|
-
|
|
20176
|
-
'io.flow.internal.v0.models.tam_item_form': (): io.flow.internal.v0.models.TamItemForm => ({
|
|
20177
|
-
number: factories.string(),
|
|
20178
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
20179
|
-
description: factories.string(),
|
|
20180
|
-
type: factories['io.flow.internal.v0.enums.tam_item_type'](),
|
|
20181
|
-
}),
|
|
20182
|
-
|
|
20183
|
-
'io.flow.internal.v0.models.tam_item_upserted': (): io.flow.internal.v0.models.TamItemUpserted => ({
|
|
20184
|
-
discriminator: 'tam_item_upserted',
|
|
20185
|
-
event_id: factories.string(),
|
|
20186
|
-
timestamp: factories.date_time_iso_8601(),
|
|
20187
|
-
item: factories['io.flow.internal.v0.models.tam_item'](),
|
|
20188
|
-
}),
|
|
20189
|
-
|
|
20190
19676
|
'io.flow.internal.v0.models.tariff_code_duty': (): io.flow.internal.v0.models.TariffCodeDuty => ({
|
|
20191
19677
|
tariff_code: factories.string(),
|
|
20192
19678
|
duties: objectOf(() => factories['io.flow.internal.v0.models.duties']()),
|
|
@@ -20383,37 +19869,6 @@ const factories = {
|
|
|
20383
19869
|
name: factories.string(),
|
|
20384
19870
|
}),
|
|
20385
19871
|
|
|
20386
|
-
'io.flow.internal.v0.models.thiago_item': (): io.flow.internal.v0.models.ThiagoItem => ({
|
|
20387
|
-
id: factories.string(),
|
|
20388
|
-
number: factories.string(),
|
|
20389
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
20390
|
-
description: factories.string(),
|
|
20391
|
-
type: factories['io.flow.internal.v0.enums.thiago_item_type'](),
|
|
20392
|
-
added_on: factories.date_time_iso_8601(),
|
|
20393
|
-
}),
|
|
20394
|
-
|
|
20395
|
-
'io.flow.internal.v0.models.thiago_item_deleted': (): io.flow.internal.v0.models.ThiagoItemDeleted => ({
|
|
20396
|
-
discriminator: 'thiago_item_deleted',
|
|
20397
|
-
event_id: factories.string(),
|
|
20398
|
-
timestamp: factories.date_time_iso_8601(),
|
|
20399
|
-
id: factories.string(),
|
|
20400
|
-
}),
|
|
20401
|
-
|
|
20402
|
-
'io.flow.internal.v0.models.thiago_item_form': (): io.flow.internal.v0.models.ThiagoItemForm => ({
|
|
20403
|
-
number: factories.string(),
|
|
20404
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
20405
|
-
description: factories.string(),
|
|
20406
|
-
type: factories['io.flow.internal.v0.enums.thiago_item_type'](),
|
|
20407
|
-
added_on: factories.date_time_iso_8601(),
|
|
20408
|
-
}),
|
|
20409
|
-
|
|
20410
|
-
'io.flow.internal.v0.models.thiago_item_upserted': (): io.flow.internal.v0.models.ThiagoItemUpserted => ({
|
|
20411
|
-
discriminator: 'thiago_item_upserted',
|
|
20412
|
-
event_id: factories.string(),
|
|
20413
|
-
timestamp: factories.date_time_iso_8601(),
|
|
20414
|
-
item: factories['io.flow.internal.v0.models.thiago_item'](),
|
|
20415
|
-
}),
|
|
20416
|
-
|
|
20417
19872
|
'io.flow.internal.v0.models.third_party_logistics_partner': (): io.flow.internal.v0.models.ThirdPartyLogisticsPartner => ({
|
|
20418
19873
|
warehouse_address: factories['io.flow.common.v0.models.billing_address'](),
|
|
20419
19874
|
warehouse_url: factories.string(),
|
|
@@ -20549,6 +20004,31 @@ const factories = {
|
|
|
20549
20004
|
job: factories['io.flow.internal.v0.models.tracking_assurance_job'](),
|
|
20550
20005
|
}),
|
|
20551
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
|
+
|
|
20552
20032
|
'io.flow.internal.v0.models.tracking_debug_force_transit_form': (): io.flow.internal.v0.models.TrackingDebugForceTransitForm => ({
|
|
20553
20033
|
description: factories.string(),
|
|
20554
20034
|
}),
|
|
@@ -20673,14 +20153,6 @@ const factories = {
|
|
|
20673
20153
|
credentials: factories['io.flow.internal.v0.unions.carrier_credentials'](),
|
|
20674
20154
|
}),
|
|
20675
20155
|
|
|
20676
|
-
'io.flow.internal.v0.models.tracking_request_upserted': (): io.flow.internal.v0.models.TrackingRequestUpserted => ({
|
|
20677
|
-
discriminator: 'tracking_request_upserted',
|
|
20678
|
-
event_id: factories.string(),
|
|
20679
|
-
timestamp: factories.date_time_iso_8601(),
|
|
20680
|
-
organization: factories.string(),
|
|
20681
|
-
tracking_request: factories['io.flow.internal.v0.models.tracking_request'](),
|
|
20682
|
-
}),
|
|
20683
|
-
|
|
20684
20156
|
'io.flow.internal.v0.models.tracking_response': (): io.flow.internal.v0.models.TrackingResponse => ({
|
|
20685
20157
|
carrier: factories.string(),
|
|
20686
20158
|
carrier_tracking_number: factories.string(),
|
|
@@ -20688,14 +20160,6 @@ const factories = {
|
|
|
20688
20160
|
tracking_events: arrayOf(() => factories['io.flow.internal.v0.models.tracking_event']()),
|
|
20689
20161
|
}),
|
|
20690
20162
|
|
|
20691
|
-
'io.flow.internal.v0.models.tracking_response_upserted': (): io.flow.internal.v0.models.TrackingResponseUpserted => ({
|
|
20692
|
-
discriminator: 'tracking_response_upserted',
|
|
20693
|
-
event_id: factories.string(),
|
|
20694
|
-
timestamp: factories.date_time_iso_8601(),
|
|
20695
|
-
organization: factories.string(),
|
|
20696
|
-
tracking_response: factories['io.flow.internal.v0.models.tracking_response'](),
|
|
20697
|
-
}),
|
|
20698
|
-
|
|
20699
20163
|
'io.flow.internal.v0.models.tracking_subscription': (): io.flow.internal.v0.models.TrackingSubscription => ({
|
|
20700
20164
|
id: factories.string(),
|
|
20701
20165
|
organization_id: factories.string(),
|
|
@@ -21283,8 +20747,6 @@ const factories = {
|
|
|
21283
20747
|
() => factories['io.flow.internal.v0.models.adyen_refund_upserted'](),
|
|
21284
20748
|
() => factories['io.flow.internal.v0.models.adyen_dispute_upserted'](),
|
|
21285
20749
|
() => factories['io.flow.internal.v0.models.adyen_dispute_deleted'](),
|
|
21286
|
-
() => factories['io.flow.internal.v0.models.index_assignment_upserted'](),
|
|
21287
|
-
() => factories['io.flow.internal.v0.models.index_assignment_deleted'](),
|
|
21288
20750
|
() => factories['io.flow.internal.v0.models.fulfillment_upserted'](),
|
|
21289
20751
|
() => factories['io.flow.internal.v0.models.fulfillment_deleted'](),
|
|
21290
20752
|
() => factories['io.flow.internal.v0.models.merchant_upserted'](),
|
|
@@ -21385,13 +20847,6 @@ const factories = {
|
|
|
21385
20847
|
() => factories['io.flow.internal.v0.models.dispute_upserted'](),
|
|
21386
20848
|
() => factories['io.flow.internal.v0.models.dispute_deleted'](),
|
|
21387
20849
|
() => factories['io.flow.internal.v0.models.duty_rates_published_v2'](),
|
|
21388
|
-
() => factories['io.flow.internal.v0.models.duty_rate_request'](),
|
|
21389
|
-
() => factories['io.flow.internal.v0.models.duty_rate_bulk_request'](),
|
|
21390
|
-
() => factories['io.flow.internal.v0.models.duty_raw_upserted'](),
|
|
21391
|
-
() => factories['io.flow.internal.v0.models.duty_raw_bulk_upserted'](),
|
|
21392
|
-
() => factories['io.flow.internal.v0.models.duty_rate_upserted'](),
|
|
21393
|
-
() => factories['io.flow.internal.v0.models.duty_rate_response'](),
|
|
21394
|
-
() => factories['io.flow.internal.v0.models.duty_rate_bulk_response'](),
|
|
21395
20850
|
() => factories['io.flow.internal.v0.models.item_sales_margin_deleted'](),
|
|
21396
20851
|
() => factories['io.flow.internal.v0.models.item_sales_margin_upserted'](),
|
|
21397
20852
|
() => factories['io.flow.internal.v0.models.order_attribute_deleted'](),
|
|
@@ -21463,7 +20918,6 @@ const factories = {
|
|
|
21463
20918
|
() => factories['io.flow.internal.v0.models.harmonization_codes_import'](),
|
|
21464
20919
|
() => factories['io.flow.internal.v0.models.item_classification_created'](),
|
|
21465
20920
|
() => factories['io.flow.internal.v0.models.harmonize_fully_request_v2'](),
|
|
21466
|
-
() => factories['io.flow.internal.v0.models.hybris_catalog_items_import_request'](),
|
|
21467
20921
|
() => factories['io.flow.internal.v0.models.import_completed'](),
|
|
21468
20922
|
() => factories['io.flow.internal.v0.models.import_failed'](),
|
|
21469
20923
|
() => factories['io.flow.internal.v0.models.time_to_classify_upserted'](),
|
|
@@ -21557,7 +21011,6 @@ const factories = {
|
|
|
21557
21011
|
() => factories['io.flow.internal.v0.models.paypal_refund_upserted'](),
|
|
21558
21012
|
() => factories['io.flow.internal.v0.models.paypal_dispute_upserted'](),
|
|
21559
21013
|
() => factories['io.flow.internal.v0.models.paypal_dispute_deleted'](),
|
|
21560
|
-
() => factories['io.flow.internal.v0.models.pricing_indicator'](),
|
|
21561
21014
|
() => factories['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'](),
|
|
21562
21015
|
() => factories['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'](),
|
|
21563
21016
|
() => factories['io.flow.internal.v0.models.order_rates_published_v3'](),
|
|
@@ -21582,6 +21035,8 @@ const factories = {
|
|
|
21582
21035
|
() => factories['io.flow.internal.v0.models.organization_restriction_status_deleted'](),
|
|
21583
21036
|
() => factories['io.flow.internal.v0.models.screening_status_change_upserted'](),
|
|
21584
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'](),
|
|
21585
21040
|
() => factories['io.flow.internal.v0.models.shopify_shop_upserted'](),
|
|
21586
21041
|
() => factories['io.flow.internal.v0.models.shopify_shop_deleted'](),
|
|
21587
21042
|
() => factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](),
|
|
@@ -21604,6 +21059,10 @@ const factories = {
|
|
|
21604
21059
|
() => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](),
|
|
21605
21060
|
() => factories['io.flow.internal.v0.models.shopify_product_bundle_upserted'](),
|
|
21606
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'](),
|
|
21607
21066
|
() => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'](),
|
|
21608
21067
|
() => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'](),
|
|
21609
21068
|
() => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](),
|
|
@@ -21620,30 +21079,6 @@ const factories = {
|
|
|
21620
21079
|
() => factories['io.flow.internal.v0.models.stripe_dispute_deleted'](),
|
|
21621
21080
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](),
|
|
21622
21081
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](),
|
|
21623
|
-
() => factories['io.flow.internal.v0.models.svitlana_item_upserted'](),
|
|
21624
|
-
() => factories['io.flow.internal.v0.models.svitlana_item_deleted'](),
|
|
21625
|
-
() => factories['io.flow.internal.v0.models.colm_item_upserted'](),
|
|
21626
|
-
() => factories['io.flow.internal.v0.models.colm_item_deleted'](),
|
|
21627
|
-
() => factories['io.flow.internal.v0.models.eldar_item_upserted'](),
|
|
21628
|
-
() => factories['io.flow.internal.v0.models.eldar_item_deleted'](),
|
|
21629
|
-
() => factories['io.flow.internal.v0.models.harinath_item_upserted'](),
|
|
21630
|
-
() => factories['io.flow.internal.v0.models.harinath_item_deleted'](),
|
|
21631
|
-
() => factories['io.flow.internal.v0.models.konstantin_item_upserted'](),
|
|
21632
|
-
() => factories['io.flow.internal.v0.models.konstantin_item_deleted'](),
|
|
21633
|
-
() => factories['io.flow.internal.v0.models.matias_item_upserted'](),
|
|
21634
|
-
() => factories['io.flow.internal.v0.models.matias_item_deleted'](),
|
|
21635
|
-
() => factories['io.flow.internal.v0.models.michaelyan_item_upserted'](),
|
|
21636
|
-
() => factories['io.flow.internal.v0.models.michaelyan_item_deleted'](),
|
|
21637
|
-
() => factories['io.flow.internal.v0.models.miljenko_item_upserted'](),
|
|
21638
|
-
() => factories['io.flow.internal.v0.models.miljenko_item_deleted'](),
|
|
21639
|
-
() => factories['io.flow.internal.v0.models.sanjay_item_upserted'](),
|
|
21640
|
-
() => factories['io.flow.internal.v0.models.sanjay_item_deleted'](),
|
|
21641
|
-
() => factories['io.flow.internal.v0.models.shruti_demo_item_upserted'](),
|
|
21642
|
-
() => factories['io.flow.internal.v0.models.shruti_demo_item_deleted'](),
|
|
21643
|
-
() => factories['io.flow.internal.v0.models.tam_item_upserted'](),
|
|
21644
|
-
() => factories['io.flow.internal.v0.models.tam_item_deleted'](),
|
|
21645
|
-
() => factories['io.flow.internal.v0.models.thiago_item_upserted'](),
|
|
21646
|
-
() => factories['io.flow.internal.v0.models.thiago_item_deleted'](),
|
|
21647
21082
|
() => factories['io.flow.internal.v0.models.tracking_processing_error_upserted'](),
|
|
21648
21083
|
() => factories['io.flow.internal.v0.models.tracking_processing_error_deleted'](),
|
|
21649
21084
|
() => factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2'](),
|
|
@@ -21658,10 +21093,10 @@ const factories = {
|
|
|
21658
21093
|
() => factories['io.flow.internal.v0.models.tracking_assurance_job_deleted'](),
|
|
21659
21094
|
() => factories['io.flow.internal.v0.models.tracking_subscription_upserted'](),
|
|
21660
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'](),
|
|
21661
21098
|
() => factories['io.flow.internal.v0.models.tracking_label_dimensions_upserted'](),
|
|
21662
21099
|
() => factories['io.flow.internal.v0.models.tracking_label_dimensions_deleted'](),
|
|
21663
|
-
() => factories['io.flow.internal.v0.models.tracking_request_upserted'](),
|
|
21664
|
-
() => factories['io.flow.internal.v0.models.tracking_response_upserted'](),
|
|
21665
21100
|
() => factories['io.flow.internal.v0.models.user_upserted_v2'](),
|
|
21666
21101
|
() => factories['io.flow.internal.v0.models.user_deleted_v2'](),
|
|
21667
21102
|
]);
|
|
@@ -21909,11 +21344,6 @@ const factories = {
|
|
|
21909
21344
|
return f();
|
|
21910
21345
|
},
|
|
21911
21346
|
|
|
21912
|
-
'io.flow.internal.v0.unions.money_rule': (): io.flow.internal.v0.unions.MoneyRule => {
|
|
21913
|
-
const f = faker.helpers.arrayElement([() => factories['io.flow.internal.v0.models.money_percentage']()]);
|
|
21914
|
-
return f();
|
|
21915
|
-
},
|
|
21916
|
-
|
|
21917
21347
|
'io.flow.internal.v0.unions.optin_prompt_display': (): io.flow.internal.v0.unions.OptinPromptDisplay => {
|
|
21918
21348
|
const f = faker.helpers.arrayElement([
|
|
21919
21349
|
() => factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](),
|
|
@@ -22504,6 +21934,22 @@ const factories = {
|
|
|
22504
21934
|
]),
|
|
22505
21935
|
|
|
22506
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
|
+
|
|
22507
21953
|
'io.flow.label.v0.enums.tracking_number_type': (): io.flow.label.v0.enums.TrackingNumberType => faker.helpers.arrayElement(['flow', 'carrier']),
|
|
22508
21954
|
|
|
22509
21955
|
'io.flow.label.v0.models.additional_services_requested': (): io.flow.label.v0.models.AdditionalServicesRequested => ({
|
|
@@ -22645,6 +22091,11 @@ const factories = {
|
|
|
22645
22091
|
required: factories.boolean(),
|
|
22646
22092
|
}),
|
|
22647
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
|
+
|
|
22648
22099
|
'io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate': (): io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate => ({
|
|
22649
22100
|
units: factories['io.flow.trueup.v0.models.label_units'](),
|
|
22650
22101
|
base: factories['io.flow.trueup.v0.models.label_base'](),
|
|
@@ -26119,35 +25570,6 @@ const factories = {
|
|
|
26119
25570
|
return f();
|
|
26120
25571
|
},
|
|
26121
25572
|
|
|
26122
|
-
'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']),
|
|
26123
|
-
'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']),
|
|
26124
|
-
|
|
26125
|
-
'io.flow.pricing.indicator.internal.event.v0.models.details': (): io.flow.pricing.indicator.internal.event.v0.models.Details => ({
|
|
26126
|
-
catalog_item: factories['io.flow.common.v0.models.catalog_item_summary'](),
|
|
26127
|
-
experience: factories['io.flow.common.v0.models.experience_summary'](),
|
|
26128
|
-
upserted_at: factories.date_time_iso_8601(),
|
|
26129
|
-
time_elapsed_since_upserted: factories.long(),
|
|
26130
|
-
}),
|
|
26131
|
-
|
|
26132
|
-
'io.flow.pricing.indicator.internal.event.v0.models.pricing_indicator': (): io.flow.pricing.indicator.internal.event.v0.models.PricingIndicator => ({
|
|
26133
|
-
discriminator: 'pricing_indicator',
|
|
26134
|
-
event_id: factories.string(),
|
|
26135
|
-
timestamp: factories.date_time_iso_8601(),
|
|
26136
|
-
organization: factories.string(),
|
|
26137
|
-
published_from: factories['io.flow.pricing.indicator.internal.event.v0.enums.service_name'](),
|
|
26138
|
-
status: factories['io.flow.pricing.indicator.internal.event.v0.enums.pricing_indicator_status'](),
|
|
26139
|
-
event_identifier: factories.string(),
|
|
26140
|
-
details: factories['io.flow.pricing.indicator.internal.event.v0.models.details'](),
|
|
26141
|
-
}),
|
|
26142
|
-
|
|
26143
|
-
'io.flow.pricing.indicator.internal.event.v0.unions.pricing_indicator_event': (): io.flow.pricing.indicator.internal.event.v0.unions.PricingIndicatorEvent => {
|
|
26144
|
-
const f = faker.helpers.arrayElement([
|
|
26145
|
-
() => factories['io.flow.pricing.indicator.internal.event.v0.models.pricing_indicator'](),
|
|
26146
|
-
]);
|
|
26147
|
-
|
|
26148
|
-
return f();
|
|
26149
|
-
},
|
|
26150
|
-
|
|
26151
25573
|
'io.flow.query.builder.v0.enums.available_filter_format': (): io.flow.query.builder.v0.enums.AvailableFilterFormat => faker.helpers.arrayElement([
|
|
26152
25574
|
'boolean',
|
|
26153
25575
|
'date',
|
|
@@ -28375,6 +27797,8 @@ const factories = {
|
|
|
28375
27797
|
webhook: factories['io.flow.shopify.external.v0.models.webhook'](),
|
|
28376
27798
|
}),
|
|
28377
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
|
+
|
|
28378
27802
|
'io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted => ({
|
|
28379
27803
|
discriminator: 'channel_order_summary_deleted',
|
|
28380
27804
|
event_id: factories.string(),
|
|
@@ -28422,6 +27846,45 @@ const factories = {
|
|
|
28422
27846
|
order_tax_and_duty_inclusivity_setting: factories['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'](),
|
|
28423
27847
|
}),
|
|
28424
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
|
+
|
|
28425
27888
|
'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted => ({
|
|
28426
27889
|
discriminator: 'shopify_markets_metrics_deleted',
|
|
28427
27890
|
event_id: factories.string(),
|
|
@@ -28449,6 +27912,19 @@ const factories = {
|
|
|
28449
27912
|
shopify_markets_order: factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order'](),
|
|
28450
27913
|
}),
|
|
28451
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
|
+
|
|
28452
27928
|
'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_upserted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted => ({
|
|
28453
27929
|
discriminator: 'shopify_markets_order_upserted',
|
|
28454
27930
|
event_id: factories.string(),
|
|
@@ -28541,6 +28017,10 @@ const factories = {
|
|
|
28541
28017
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](),
|
|
28542
28018
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_product_bundle_upserted'](),
|
|
28543
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'](),
|
|
28544
28024
|
]);
|
|
28545
28025
|
|
|
28546
28026
|
return f();
|
|
@@ -28696,6 +28176,10 @@ const factories = {
|
|
|
28696
28176
|
destination: factories.string(),
|
|
28697
28177
|
}),
|
|
28698
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
|
+
|
|
28699
28183
|
'io.flow.shopify.markets.internal.v0.models.shopify_markets_discrepancy': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancy => ({
|
|
28700
28184
|
organization_id: factories.string(),
|
|
28701
28185
|
count: factories.long(),
|
|
@@ -30436,6 +29920,18 @@ const factories = {
|
|
|
30436
29920
|
'lost',
|
|
30437
29921
|
]),
|
|
30438
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
|
+
|
|
30439
29935
|
'io.flow.stripe.v0.enums.error_code': (): io.flow.stripe.v0.enums.ErrorCode => faker.helpers.arrayElement([
|
|
30440
29936
|
'invalid_number',
|
|
30441
29937
|
'invalid_expiry_month',
|
|
@@ -31732,6 +31228,17 @@ const factories = {
|
|
|
31732
31228
|
previous_attributes: factories.object(),
|
|
31733
31229
|
}),
|
|
31734
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
|
+
|
|
31735
31242
|
'io.flow.stripe.v0.models.stripe_error': (): io.flow.stripe.v0.models.StripeError => ({
|
|
31736
31243
|
type: factories['io.flow.stripe.v0.enums.error_type'](),
|
|
31737
31244
|
charge: factories.string(),
|
|
@@ -32066,6 +31573,7 @@ const factories = {
|
|
|
32066
31573
|
status: factories['io.flow.tracking.v0.enums.tracking_status'](),
|
|
32067
31574
|
timestamp: factories.date_time_iso_8601(),
|
|
32068
31575
|
description: factories.string(),
|
|
31576
|
+
aggregator_status_code: factories.string(),
|
|
32069
31577
|
}),
|
|
32070
31578
|
|
|
32071
31579
|
'io.flow.tracking.v0.models.tracking_event_form': (): io.flow.tracking.v0.models.TrackingEventForm => ({
|
|
@@ -32331,7 +31839,6 @@ export const makeAlertFailureSummary = () => factories['io.flow.internal.v0.mode
|
|
|
32331
31839
|
export const makeAlertFailureSummaryDetail = () => factories['io.flow.internal.v0.models.alert_failure_summary_detail']();
|
|
32332
31840
|
export const makeAlertImportSummary = () => factories['io.flow.internal.v0.models.alert_import_summary']();
|
|
32333
31841
|
export const makeAlertRequeueSummary = () => factories['io.flow.internal.v0.models.alert_requeue_summary']();
|
|
32334
|
-
export const makeAlgoliaIndexAssignment = () => factories['io.flow.internal.v0.models.algolia_index_assignment']();
|
|
32335
31842
|
export const makeAllItemsExport = () => factories['io.flow.internal.v0.models.all_items_export']();
|
|
32336
31843
|
export const makeAllOrganizationsMembership = () => factories['io.flow.internal.v0.models.all_organizations_membership']();
|
|
32337
31844
|
export const makeAllocationItemReference = () => factories['io.flow.internal.v0.models.allocation_item_reference']();
|
|
@@ -32357,7 +31864,9 @@ export const makeAuthorizedOrderCharge = () => factories['io.flow.internal.v0.un
|
|
|
32357
31864
|
export const makeAuthorizedShippingCharge = () => factories['io.flow.internal.v0.models.authorized_shipping_charge']();
|
|
32358
31865
|
export const makeAutoRestrictRule = () => factories['io.flow.internal.v0.enums.auto_restrict_rule']();
|
|
32359
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']();
|
|
32360
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']();
|
|
32361
31870
|
export const makeBankPayment = () => factories['io.flow.internal.v0.models.bank_payment']();
|
|
32362
31871
|
export const makeBankPaymentDeletedV2 = () => factories['io.flow.internal.v0.models.bank_payment_deleted_v2']();
|
|
32363
31872
|
export const makeBankPaymentForm = () => factories['io.flow.internal.v0.models.bank_payment_form']();
|
|
@@ -32636,10 +32145,8 @@ export const makeCliLogEntry = () => factories['io.flow.internal.v0.models.cli_l
|
|
|
32636
32145
|
export const makeCliLogEntryForm = () => factories['io.flow.internal.v0.models.cli_log_entry_form']();
|
|
32637
32146
|
export const makeClothingAgeClassification = () => factories['io.flow.internal.v0.enums.clothing_age_classification']();
|
|
32638
32147
|
export const makeColmItem = () => factories['io.flow.internal.v0.models.colm_item']();
|
|
32639
|
-
export const makeColmItemDeleted = () => factories['io.flow.internal.v0.models.colm_item_deleted']();
|
|
32640
32148
|
export const makeColmItemForm = () => factories['io.flow.internal.v0.models.colm_item_form']();
|
|
32641
32149
|
export const makeColmItemType = () => factories['io.flow.internal.v0.enums.colm_item_type']();
|
|
32642
|
-
export const makeColmItemUpserted = () => factories['io.flow.internal.v0.models.colm_item_upserted']();
|
|
32643
32150
|
export const makeCommercialInvoiceComparison = () => factories['io.flow.internal.v0.models.commercial_invoice_comparison']();
|
|
32644
32151
|
export const makeCommercialInvoiceInternal = () => factories['io.flow.internal.v0.models.commercial_invoice_internal']();
|
|
32645
32152
|
export const makeCommercialInvoiceInternalDeleted = () => factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted']();
|
|
@@ -32666,9 +32173,6 @@ export const makeContentSchemaSummary = () => factories['io.flow.internal.v0.mod
|
|
|
32666
32173
|
export const makeContentStatus = () => factories['io.flow.internal.v0.enums.content_status']();
|
|
32667
32174
|
export const makeContentType = () => factories['io.flow.internal.v0.enums.content_type']();
|
|
32668
32175
|
export const makeContentTypeCast = () => factories['io.flow.internal.v0.enums.content_type_cast']();
|
|
32669
|
-
export const makeCost = () => factories['io.flow.internal.v0.models.cost']();
|
|
32670
|
-
export const makeCostRule = () => factories['io.flow.internal.v0.models.cost_rule']();
|
|
32671
|
-
export const makeCostType = () => factories['io.flow.internal.v0.enums.cost_type']();
|
|
32672
32176
|
export const makeCountryPickerCountry = () => factories['io.flow.internal.v0.models.country_picker_country']();
|
|
32673
32177
|
export const makeCountryPickerCountryData = () => factories['io.flow.internal.v0.models.country_picker_country_data']();
|
|
32674
32178
|
export const makeCountryPickerCurrency = () => factories['io.flow.internal.v0.models.country_picker_currency']();
|
|
@@ -32702,6 +32206,7 @@ export const makeDailyValueDeleted = () => factories['io.flow.internal.v0.models
|
|
|
32702
32206
|
export const makeDailyValueUpserted = () => factories['io.flow.internal.v0.models.daily_value_upserted']();
|
|
32703
32207
|
export const makeDebugAccountingTransaction = () => factories['io.flow.internal.v0.models.debug_accounting_transaction']();
|
|
32704
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']();
|
|
32705
32210
|
export const makeDebugDetails = () => factories['io.flow.internal.v0.models.debug_details']();
|
|
32706
32211
|
export const makeDebugFulfillmentDelta = () => factories['io.flow.internal.v0.models.debug_fulfillment_delta']();
|
|
32707
32212
|
export const makeDebugLabel = () => factories['io.flow.internal.v0.models.debug_label']();
|
|
@@ -32733,7 +32238,6 @@ export const makeDeliveredDutyPreference = () => factories['io.flow.internal.v0.
|
|
|
32733
32238
|
export const makeDeliveredDutyPreferenceForm = () => factories['io.flow.internal.v0.models.delivered_duty_preference_form']();
|
|
32734
32239
|
export const makeDeminimisAdjustmentType = () => factories['io.flow.internal.v0.enums.deminimis_adjustment_type']();
|
|
32735
32240
|
export const makeDestinationError = () => factories['io.flow.internal.v0.models.destination_error']();
|
|
32736
|
-
export const makeDetails = () => factories['io.flow.internal.v0.models.details']();
|
|
32737
32241
|
export const makeDhl = () => factories['io.flow.internal.v0.models.dhl']();
|
|
32738
32242
|
export const makeDhlEcommerce = () => factories['io.flow.internal.v0.models.dhl_ecommerce']();
|
|
32739
32243
|
export const makeDict = () => factories['io.flow.internal.v0.models.dict']();
|
|
@@ -32785,21 +32289,13 @@ export const makeDutyExemptItemTypes = () => factories['io.flow.internal.v0.enum
|
|
|
32785
32289
|
export const makeDutyExpression = () => factories['io.flow.internal.v0.unions.duty_expression']();
|
|
32786
32290
|
export const makeDutyInternalRate = () => factories['io.flow.internal.v0.models.duty_internal_rate']();
|
|
32787
32291
|
export const makeDutyRate = () => factories['io.flow.internal.v0.models.duty_rate']();
|
|
32788
|
-
export const makeDutyRateBulkRequest = () => factories['io.flow.internal.v0.models.duty_rate_bulk_request']();
|
|
32789
|
-
export const makeDutyRateBulkResponse = () => factories['io.flow.internal.v0.models.duty_rate_bulk_response']();
|
|
32790
|
-
export const makeDutyRateContext = () => factories['io.flow.internal.v0.models.duty_rate_context']();
|
|
32791
32292
|
export const makeDutyRateItemSummary = () => factories['io.flow.internal.v0.models.duty_rate_item_summary']();
|
|
32792
|
-
export const makeDutyRateRequest = () => factories['io.flow.internal.v0.models.duty_rate_request']();
|
|
32793
|
-
export const makeDutyRateResponse = () => factories['io.flow.internal.v0.models.duty_rate_response']();
|
|
32794
32293
|
export const makeDutyRateSource = () => factories['io.flow.internal.v0.enums.duty_rate_source']();
|
|
32795
32294
|
export const makeDutyRateSummary = () => factories['io.flow.internal.v0.models.duty_rate_summary']();
|
|
32796
32295
|
export const makeDutyRateUnitOfMeasure = () => factories['io.flow.internal.v0.enums.duty_rate_unit_of_measure']();
|
|
32797
|
-
export const makeDutyRateUpserted = () => factories['io.flow.internal.v0.models.duty_rate_upserted']();
|
|
32798
32296
|
export const makeDutyRatesDataSummary = () => factories['io.flow.internal.v0.models.duty_rates_data_summary']();
|
|
32799
32297
|
export const makeDutyRatesPublishedV2 = () => factories['io.flow.internal.v0.models.duty_rates_published_v2']();
|
|
32800
32298
|
export const makeDutyRaw = () => factories['io.flow.internal.v0.models.duty_raw']();
|
|
32801
|
-
export const makeDutyRawBulkUpserted = () => factories['io.flow.internal.v0.models.duty_raw_bulk_upserted']();
|
|
32802
|
-
export const makeDutyRawUpserted = () => factories['io.flow.internal.v0.models.duty_raw_upserted']();
|
|
32803
32299
|
export const makeDutySelectionRule = () => factories['io.flow.internal.v0.enums.duty_selection_rule']();
|
|
32804
32300
|
export const makeDutySimpleExpression = () => factories['io.flow.internal.v0.models.duty_simple_expression']();
|
|
32805
32301
|
export const makeDutySimpleExpressionType = () => factories['io.flow.internal.v0.enums.duty_simple_expression_type']();
|
|
@@ -32807,11 +32303,6 @@ export const makeDutyTransaction = () => factories['io.flow.internal.v0.models.d
|
|
|
32807
32303
|
export const makeDutyTransactionDeleted = () => factories['io.flow.internal.v0.models.duty_transaction_deleted']();
|
|
32808
32304
|
export const makeDutyTransactionType = () => factories['io.flow.internal.v0.enums.duty_transaction_type']();
|
|
32809
32305
|
export const makeDutyTransactionUpserted = () => factories['io.flow.internal.v0.models.duty_transaction_upserted']();
|
|
32810
|
-
export const makeEldarItem = () => factories['io.flow.internal.v0.models.eldar_item']();
|
|
32811
|
-
export const makeEldarItemDeleted = () => factories['io.flow.internal.v0.models.eldar_item_deleted']();
|
|
32812
|
-
export const makeEldarItemForm = () => factories['io.flow.internal.v0.models.eldar_item_form']();
|
|
32813
|
-
export const makeEldarItemType = () => factories['io.flow.internal.v0.enums.eldar_item_type']();
|
|
32814
|
-
export const makeEldarItemUpserted = () => factories['io.flow.internal.v0.models.eldar_item_upserted']();
|
|
32815
32306
|
export const makeEmailForm = () => factories['io.flow.internal.v0.models.email_form']();
|
|
32816
32307
|
export const makeEmailModificationForm = () => factories['io.flow.internal.v0.models.email_modification_form']();
|
|
32817
32308
|
export const makeEmptyAttribute = () => factories['io.flow.internal.v0.enums.empty_attribute']();
|
|
@@ -33013,11 +32504,6 @@ export const makeGoogleShoppingAccountParameters = () => factories['io.flow.inte
|
|
|
33013
32504
|
export const makeGoogleShoppingSetting = () => factories['io.flow.internal.v0.models.google_shopping_setting']();
|
|
33014
32505
|
export const makeGoogleTagManager = () => factories['io.flow.internal.v0.models.google_tag_manager']();
|
|
33015
32506
|
export const makeGraphqlServiceTypes = () => factories['io.flow.internal.v0.enums.graphql_service_types']();
|
|
33016
|
-
export const makeHarinathItem = () => factories['io.flow.internal.v0.models.harinath_item']();
|
|
33017
|
-
export const makeHarinathItemDeleted = () => factories['io.flow.internal.v0.models.harinath_item_deleted']();
|
|
33018
|
-
export const makeHarinathItemForm = () => factories['io.flow.internal.v0.models.harinath_item_form']();
|
|
33019
|
-
export const makeHarinathItemType = () => factories['io.flow.internal.v0.enums.harinath_item_type']();
|
|
33020
|
-
export const makeHarinathItemUpserted = () => factories['io.flow.internal.v0.models.harinath_item_upserted']();
|
|
33021
32507
|
export const makeHarmonizationClassificationStatisticsData = () => factories['io.flow.internal.v0.models.harmonization_classification_statistics_data']();
|
|
33022
32508
|
export const makeHarmonizationClassificationStatisticsPublished = () => factories['io.flow.internal.v0.models.harmonization_classification_statistics_published']();
|
|
33023
32509
|
export const makeHarmonizationCodesImport = () => factories['io.flow.internal.v0.models.harmonization_codes_import']();
|
|
@@ -33038,12 +32524,8 @@ export const makeHref = () => factories['io.flow.internal.v0.models.href']();
|
|
|
33038
32524
|
export const makeHs6 = () => factories['io.flow.internal.v0.models.hs6']();
|
|
33039
32525
|
export const makeHs6Metadata = () => factories['io.flow.internal.v0.models.hs6_metadata']();
|
|
33040
32526
|
export const makeHttpMethod = () => factories['io.flow.internal.v0.enums.http_method']();
|
|
33041
|
-
export const makeHybrisCatalogItemsImportRequest = () => factories['io.flow.internal.v0.models.hybris_catalog_items_import_request']();
|
|
33042
|
-
export const makeHybrisCatalogItemsImportRequestData = () => factories['io.flow.internal.v0.models.hybris_catalog_items_import_request_data']();
|
|
33043
32527
|
export const makeImportCompleted = () => factories['io.flow.internal.v0.models.import_completed']();
|
|
33044
32528
|
export const makeImportFailed = () => factories['io.flow.internal.v0.models.import_failed']();
|
|
33045
|
-
export const makeIndexAssignmentDeleted = () => factories['io.flow.internal.v0.models.index_assignment_deleted']();
|
|
33046
|
-
export const makeIndexAssignmentUpserted = () => factories['io.flow.internal.v0.models.index_assignment_upserted']();
|
|
33047
32529
|
export const makeIndexTaskType = () => factories['io.flow.internal.v0.unions.index_task_type']();
|
|
33048
32530
|
export const makeInlineAuthorizationParameters = () => factories['io.flow.internal.v0.unions.inline_authorization_parameters']();
|
|
33049
32531
|
export const makeInstallForm = () => factories['io.flow.internal.v0.models.install_form']();
|
|
@@ -33095,7 +32577,6 @@ export const makeItemDimensionEstimateUpsertedV2 = () => factories['io.flow.inte
|
|
|
33095
32577
|
export const makeItemFilterResponse = () => factories['io.flow.internal.v0.models.item_filter_response']();
|
|
33096
32578
|
export const makeItemFilterValueResponse = () => factories['io.flow.internal.v0.models.item_filter_value_response']();
|
|
33097
32579
|
export const makeItemFilterValuesForm = () => factories['io.flow.internal.v0.models.item_filter_values_form']();
|
|
33098
|
-
export const makeItemForm = () => factories['io.flow.internal.v0.models.item_form']();
|
|
33099
32580
|
export const makeItemFormImportRequest = () => factories['io.flow.internal.v0.models.item_form_import_request']();
|
|
33100
32581
|
export const makeItemHarmonization = () => factories['io.flow.internal.v0.models.item_harmonization']();
|
|
33101
32582
|
export const makeItemHarmonizationDeleted = () => factories['io.flow.internal.v0.models.item_harmonization_deleted']();
|
|
@@ -33123,11 +32604,6 @@ export const makeKeyReference = () => factories['io.flow.internal.v0.models.key_
|
|
|
33123
32604
|
export const makeKeywordType = () => factories['io.flow.internal.v0.enums.keyword_type']();
|
|
33124
32605
|
export const makeKlarnaAuthorizationParameters = () => factories['io.flow.internal.v0.models.klarna_authorization_parameters']();
|
|
33125
32606
|
export const makeKlarnaPaymentMethodCategory = () => factories['io.flow.internal.v0.models.klarna_payment_method_category']();
|
|
33126
|
-
export const makeKonstantinItem = () => factories['io.flow.internal.v0.models.konstantin_item']();
|
|
33127
|
-
export const makeKonstantinItemDeleted = () => factories['io.flow.internal.v0.models.konstantin_item_deleted']();
|
|
33128
|
-
export const makeKonstantinItemForm = () => factories['io.flow.internal.v0.models.konstantin_item_form']();
|
|
33129
|
-
export const makeKonstantinItemType = () => factories['io.flow.internal.v0.enums.konstantin_item_type']();
|
|
33130
|
-
export const makeKonstantinItemUpserted = () => factories['io.flow.internal.v0.models.konstantin_item_upserted']();
|
|
33131
32607
|
export const makeLabProjectSettings = () => factories['io.flow.internal.v0.models.lab_project_settings']();
|
|
33132
32608
|
export const makeLabProjectSettingsForm = () => factories['io.flow.internal.v0.models.lab_project_settings_form']();
|
|
33133
32609
|
export const makeLabProjectSettingsFormAcceptance = () => factories['io.flow.internal.v0.models.lab_project_settings_form_acceptance']();
|
|
@@ -33289,16 +32765,11 @@ export const makeMarketingGatewaySourceSummary = () => factories['io.flow.intern
|
|
|
33289
32765
|
export const makeMarketingGatewaySupportedChannelDetails = () => factories['io.flow.internal.v0.models.marketing_gateway_supported_channel_details']();
|
|
33290
32766
|
export const makeMarketsOrder = () => factories['io.flow.internal.v0.models.markets_order']();
|
|
33291
32767
|
export const makeMarketsOrderSummary = () => factories['io.flow.internal.v0.models.markets_order_summary']();
|
|
33292
|
-
export const makeMatiasItem = () => factories['io.flow.internal.v0.models.matias_item']();
|
|
33293
|
-
export const makeMatiasItemDeleted = () => factories['io.flow.internal.v0.models.matias_item_deleted']();
|
|
33294
|
-
export const makeMatiasItemForm = () => factories['io.flow.internal.v0.models.matias_item_form']();
|
|
33295
|
-
export const makeMatiasItemType = () => factories['io.flow.internal.v0.enums.matias_item_type']();
|
|
33296
|
-
export const makeMatiasItemUpserted = () => factories['io.flow.internal.v0.models.matias_item_upserted']();
|
|
33297
32768
|
export const makeMerchant = () => factories['io.flow.internal.v0.models.merchant']();
|
|
33298
32769
|
export const makeMerchantApplicationSummaries = () => factories['io.flow.internal.v0.models.merchant_application_summaries']();
|
|
33299
32770
|
export const makeMerchantApplicationSummary = () => factories['io.flow.internal.v0.models.merchant_application_summary']();
|
|
33300
|
-
export const makeMerchantCohort = () => factories['io.flow.internal.v0.enums.merchant_cohort']();
|
|
33301
32771
|
export const makeMerchantDeleted = () => factories['io.flow.internal.v0.models.merchant_deleted']();
|
|
32772
|
+
export const makeMerchantDetails = () => factories['io.flow.internal.v0.models.merchant_details']();
|
|
33302
32773
|
export const makeMerchantFees = () => factories['io.flow.internal.v0.models.merchant_fees']();
|
|
33303
32774
|
export const makeMerchantGuidAssignment = () => factories['io.flow.internal.v0.models.merchant_guid_assignment']();
|
|
33304
32775
|
export const makeMerchantGuidAssignmentDeleted = () => factories['io.flow.internal.v0.models.merchant_guid_assignment_deleted']();
|
|
@@ -33315,19 +32786,7 @@ export const makeMerchantUpserted = () => factories['io.flow.internal.v0.models.
|
|
|
33315
32786
|
export const makeMessageStamp = () => factories['io.flow.internal.v0.models.message_stamp']();
|
|
33316
32787
|
export const makeMetadataProposition = () => factories['io.flow.internal.v0.models.metadata_proposition']();
|
|
33317
32788
|
export const makeMetadataRatecard = () => factories['io.flow.internal.v0.models.metadata_ratecard']();
|
|
33318
|
-
export const makeMichaelyanItem = () => factories['io.flow.internal.v0.models.michaelyan_item']();
|
|
33319
|
-
export const makeMichaelyanItemDeleted = () => factories['io.flow.internal.v0.models.michaelyan_item_deleted']();
|
|
33320
|
-
export const makeMichaelyanItemForm = () => factories['io.flow.internal.v0.models.michaelyan_item_form']();
|
|
33321
|
-
export const makeMichaelyanItemType = () => factories['io.flow.internal.v0.enums.michaelyan_item_type']();
|
|
33322
|
-
export const makeMichaelyanItemUpserted = () => factories['io.flow.internal.v0.models.michaelyan_item_upserted']();
|
|
33323
|
-
export const makeMiljenkoItem = () => factories['io.flow.internal.v0.models.miljenko_item']();
|
|
33324
|
-
export const makeMiljenkoItemDeleted = () => factories['io.flow.internal.v0.models.miljenko_item_deleted']();
|
|
33325
|
-
export const makeMiljenkoItemForm = () => factories['io.flow.internal.v0.models.miljenko_item_form']();
|
|
33326
|
-
export const makeMiljenkoItemType = () => factories['io.flow.internal.v0.enums.miljenko_item_type']();
|
|
33327
|
-
export const makeMiljenkoItemUpserted = () => factories['io.flow.internal.v0.models.miljenko_item_upserted']();
|
|
33328
32789
|
export const makeMixedBagWeight = () => factories['io.flow.internal.v0.enums.mixed_bag_weight']();
|
|
33329
|
-
export const makeMoneyPercentage = () => factories['io.flow.internal.v0.models.money_percentage']();
|
|
33330
|
-
export const makeMoneyRule = () => factories['io.flow.internal.v0.unions.money_rule']();
|
|
33331
32790
|
export const makeNatureOfSale = () => factories['io.flow.internal.v0.enums.nature_of_sale']();
|
|
33332
32791
|
export const makeNegativeDebitMetrics = () => factories['io.flow.internal.v0.models.negative_debit_metrics']();
|
|
33333
32792
|
export const makeNextBillingStatement = () => factories['io.flow.internal.v0.models.next_billing_statement']();
|
|
@@ -33383,6 +32842,7 @@ export const makeOrderCombinedShipmentDeleted = () => factories['io.flow.interna
|
|
|
33383
32842
|
export const makeOrderCombinedShipmentForm = () => factories['io.flow.internal.v0.models.order_combined_shipment_form']();
|
|
33384
32843
|
export const makeOrderCombinedShipmentUpserted = () => factories['io.flow.internal.v0.models.order_combined_shipment_upserted']();
|
|
33385
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']();
|
|
33386
32846
|
export const makeOrderFulfillmentDeleted = () => factories['io.flow.internal.v0.models.order_fulfillment_deleted']();
|
|
33387
32847
|
export const makeOrderFulfillmentUpserted = () => factories['io.flow.internal.v0.models.order_fulfillment_upserted']();
|
|
33388
32848
|
export const makeOrderLifecycleEvent = () => factories['io.flow.internal.v0.enums.order_lifecycle_event']();
|
|
@@ -33512,7 +32972,6 @@ export const makePartnerOrganizationSettingsForm = () => factories['io.flow.inte
|
|
|
33512
32972
|
export const makePartnerOrganizationSettingsUpserted = () => factories['io.flow.internal.v0.models.partner_organization_settings_upserted']();
|
|
33513
32973
|
export const makePartnerTrackingSubscriptionDeleted = () => factories['io.flow.internal.v0.models.partner_tracking_subscription_deleted']();
|
|
33514
32974
|
export const makePartnerTrackingSubscriptionUpserted = () => factories['io.flow.internal.v0.models.partner_tracking_subscription_upserted']();
|
|
33515
|
-
export const makeParty = () => factories['io.flow.internal.v0.enums.party']();
|
|
33516
32975
|
export const makePassphrase = () => factories['io.flow.internal.v0.models.passphrase']();
|
|
33517
32976
|
export const makePassphraseForm = () => factories['io.flow.internal.v0.models.passphrase_form']();
|
|
33518
32977
|
export const makePassphraseSummary = () => factories['io.flow.internal.v0.models.passphrase_summary']();
|
|
@@ -33574,13 +33033,7 @@ export const makePreferredBillingSchedule = () => factories['io.flow.internal.v0
|
|
|
33574
33033
|
export const makePregeneratedQuote = () => factories['io.flow.internal.v0.models.pregenerated_quote']();
|
|
33575
33034
|
export const makePregeneratedRequestEvent = () => factories['io.flow.internal.v0.models.pregenerated_request_event']();
|
|
33576
33035
|
export const makePriceSelector = () => factories['io.flow.internal.v0.enums.price_selector']();
|
|
33577
|
-
export const makePricingIndicator = () => factories['io.flow.internal.v0.models.pricing_indicator']();
|
|
33578
|
-
export const makePricingIndicatorDynamo = () => factories['io.flow.internal.v0.models.pricing_indicator_dynamo']();
|
|
33579
|
-
export const makePricingIndicatorStatus = () => factories['io.flow.internal.v0.enums.pricing_indicator_status']();
|
|
33580
|
-
export const makePrincipal = () => factories['io.flow.internal.v0.models.principal']();
|
|
33581
|
-
export const makePrincipalType = () => factories['io.flow.internal.v0.enums.principal_type']();
|
|
33582
33036
|
export const makePrioritizedCenterReference = () => factories['io.flow.internal.v0.models.prioritized_center_reference']();
|
|
33583
|
-
export const makeProcessedPaymentSummary = () => factories['io.flow.internal.v0.models.processed_payment_summary']();
|
|
33584
33037
|
export const makeProcessingTransaction = () => factories['io.flow.internal.v0.models.processing_transaction']();
|
|
33585
33038
|
export const makeProcessingTransactionDeleted = () => factories['io.flow.internal.v0.models.processing_transaction_deleted']();
|
|
33586
33039
|
export const makeProcessingTransactionReference = () => factories['io.flow.internal.v0.models.processing_transaction_reference']();
|
|
@@ -33616,14 +33069,6 @@ export const makeProductRestrictionRuleDecisionUpserted = () => factories['io.fl
|
|
|
33616
33069
|
export const makeProductReviewHistory = () => factories['io.flow.internal.v0.models.product_review_history']();
|
|
33617
33070
|
export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
|
|
33618
33071
|
export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
|
|
33619
|
-
export const makeProfit = () => factories['io.flow.internal.v0.models.profit']();
|
|
33620
|
-
export const makeProfitShare = () => factories['io.flow.internal.v0.models.profit_share']();
|
|
33621
|
-
export const makeProfitShareOrderReference = () => factories['io.flow.internal.v0.models.profit_share_order_reference']();
|
|
33622
|
-
export const makeProfitSharePlan = () => factories['io.flow.internal.v0.models.profit_share_plan']();
|
|
33623
|
-
export const makeProfitSplit = () => factories['io.flow.internal.v0.models.profit_split']();
|
|
33624
|
-
export const makeProfitSplitRule = () => factories['io.flow.internal.v0.models.profit_split_rule']();
|
|
33625
|
-
export const makeProfitStream = () => factories['io.flow.internal.v0.models.profit_stream']();
|
|
33626
|
-
export const makeProfitStreamKey = () => factories['io.flow.internal.v0.enums.profit_stream_key']();
|
|
33627
33072
|
export const makePromptAction = () => factories['io.flow.internal.v0.enums.prompt_action']();
|
|
33628
33073
|
export const makePromptCheckoutDisplayPosition = () => factories['io.flow.internal.v0.enums.prompt_checkout_display_position']();
|
|
33629
33074
|
export const makePromptOptions = () => factories['io.flow.internal.v0.enums.prompt_options']();
|
|
@@ -33790,6 +33235,8 @@ export const makeRestrictionRuleSummary = () => factories['io.flow.internal.v0.m
|
|
|
33790
33235
|
export const makeRestrictionStatus = () => factories['io.flow.internal.v0.enums.restriction_status']();
|
|
33791
33236
|
export const makeRestrictionStatusMetadata = () => factories['io.flow.internal.v0.models.restriction_status_metadata']();
|
|
33792
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']();
|
|
33793
33240
|
export const makeResyncByDestinations = () => factories['io.flow.internal.v0.models.resync_by_destinations']();
|
|
33794
33241
|
export const makeResyncByHs6Destinations = () => factories['io.flow.internal.v0.models.resync_by_hs6_destinations']();
|
|
33795
33242
|
export const makeResyncByHs6Origin = () => factories['io.flow.internal.v0.models.resync_by_hs6_origin']();
|
|
@@ -33804,13 +33251,10 @@ export const makeReturnPolicyUpserted = () => factories['io.flow.internal.v0.mod
|
|
|
33804
33251
|
export const makeReturnSummary = () => factories['io.flow.internal.v0.models.return_summary']();
|
|
33805
33252
|
export const makeReturnTrigger = () => factories['io.flow.internal.v0.unions.return_trigger']();
|
|
33806
33253
|
export const makeReturnTriggerRefund = () => factories['io.flow.internal.v0.models.return_trigger_refund']();
|
|
33807
|
-
export const makeRevenue = () => factories['io.flow.internal.v0.models.revenue']();
|
|
33808
33254
|
export const makeRevenueRecord = () => factories['io.flow.internal.v0.models.revenue_record']();
|
|
33809
33255
|
export const makeRevenueRecordDeleted = () => factories['io.flow.internal.v0.models.revenue_record_deleted']();
|
|
33810
33256
|
export const makeRevenueRecordType = () => factories['io.flow.internal.v0.enums.revenue_record_type']();
|
|
33811
33257
|
export const makeRevenueRecordUpserted = () => factories['io.flow.internal.v0.models.revenue_record_upserted']();
|
|
33812
|
-
export const makeRevenueRule = () => factories['io.flow.internal.v0.models.revenue_rule']();
|
|
33813
|
-
export const makeRevenueType = () => factories['io.flow.internal.v0.enums.revenue_type']();
|
|
33814
33258
|
export const makeRiskCheck = () => factories['io.flow.internal.v0.enums.risk_check']();
|
|
33815
33259
|
export const makeRiskEvaluation = () => factories['io.flow.internal.v0.enums.risk_evaluation']();
|
|
33816
33260
|
export const makeRoutingAccount = () => factories['io.flow.internal.v0.models.routing_account']();
|
|
@@ -33819,11 +33263,6 @@ export const makeRoutingMerchant = () => factories['io.flow.internal.v0.models.r
|
|
|
33819
33263
|
export const makeRoutingProcessor = () => factories['io.flow.internal.v0.models.routing_processor']();
|
|
33820
33264
|
export const makeSandboxSetup = () => factories['io.flow.internal.v0.models.sandbox_setup']();
|
|
33821
33265
|
export const makeSandboxSetupForm = () => factories['io.flow.internal.v0.models.sandbox_setup_form']();
|
|
33822
|
-
export const makeSanjayItem = () => factories['io.flow.internal.v0.models.sanjay_item']();
|
|
33823
|
-
export const makeSanjayItemDeleted = () => factories['io.flow.internal.v0.models.sanjay_item_deleted']();
|
|
33824
|
-
export const makeSanjayItemForm = () => factories['io.flow.internal.v0.models.sanjay_item_form']();
|
|
33825
|
-
export const makeSanjayItemType = () => factories['io.flow.internal.v0.enums.sanjay_item_type']();
|
|
33826
|
-
export const makeSanjayItemUpserted = () => factories['io.flow.internal.v0.models.sanjay_item_upserted']();
|
|
33827
33266
|
export const makeScheduledPayment = () => factories['io.flow.internal.v0.models.scheduled_payment']();
|
|
33828
33267
|
export const makeScreen = () => factories['io.flow.internal.v0.models.screen']();
|
|
33829
33268
|
export const makeScreenForm = () => factories['io.flow.internal.v0.models.screen_form']();
|
|
@@ -33838,7 +33277,6 @@ export const makeSearchItemSummary = () => factories['io.flow.internal.v0.models
|
|
|
33838
33277
|
export const makeSearchOrderSummary = () => factories['io.flow.internal.v0.models.search_order_summary']();
|
|
33839
33278
|
export const makeSearchProviderExport = () => factories['io.flow.internal.v0.models.search_provider_export']();
|
|
33840
33279
|
export const makeSearchTrackingSummary = () => factories['io.flow.internal.v0.models.search_tracking_summary']();
|
|
33841
|
-
export const makeServiceName = () => factories['io.flow.internal.v0.enums.service_name']();
|
|
33842
33280
|
export const makeSessionCountries = () => factories['io.flow.internal.v0.models.session_countries']();
|
|
33843
33281
|
export const makeSessionCountry = () => factories['io.flow.internal.v0.models.session_country']();
|
|
33844
33282
|
export const makeSessionCountryForm = () => factories['io.flow.internal.v0.models.session_country_form']();
|
|
@@ -33871,6 +33309,13 @@ export const makeShopifyGiftCardReversal = () => factories['io.flow.internal.v0.
|
|
|
33871
33309
|
export const makeShopifyGiftCardReversalForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_reversal_form']();
|
|
33872
33310
|
export const makeShopifyGrantStatus = () => factories['io.flow.internal.v0.enums.shopify_grant_status']();
|
|
33873
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']();
|
|
33874
33319
|
export const makeShopifyMarketsDangerousGoods = () => factories['io.flow.internal.v0.enums.shopify_markets_dangerous_goods']();
|
|
33875
33320
|
export const makeShopifyMarketsDiscrepancy = () => factories['io.flow.internal.v0.models.shopify_markets_discrepancy']();
|
|
33876
33321
|
export const makeShopifyMarketsDiscrepancyData = () => factories['io.flow.internal.v0.models.shopify_markets_discrepancy_data']();
|
|
@@ -33881,6 +33326,8 @@ export const makeShopifyMarketsMetricsDeleted = () => factories['io.flow.interna
|
|
|
33881
33326
|
export const makeShopifyMarketsMetricsUpserted = () => factories['io.flow.internal.v0.models.shopify_markets_metrics_upserted']();
|
|
33882
33327
|
export const makeShopifyMarketsOrder = () => factories['io.flow.internal.v0.models.shopify_markets_order']();
|
|
33883
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']();
|
|
33884
33331
|
export const makeShopifyMarketsOrderUpserted = () => factories['io.flow.internal.v0.models.shopify_markets_order_upserted']();
|
|
33885
33332
|
export const makeShopifyMarketsOrderVersionWithShopId = () => factories['io.flow.internal.v0.models.shopify_markets_order_version_with_shop_id']();
|
|
33886
33333
|
export const makeShopifyMarketsOrdersMetrics = () => factories['io.flow.internal.v0.models.shopify_markets_orders_metrics']();
|
|
@@ -33971,11 +33418,6 @@ export const makeShopperFreight = () => factories['io.flow.internal.v0.models.sh
|
|
|
33971
33418
|
export const makeShopperLine = () => factories['io.flow.internal.v0.models.shopper_line']();
|
|
33972
33419
|
export const makeShopperLines = () => factories['io.flow.internal.v0.models.shopper_lines']();
|
|
33973
33420
|
export const makeShopperSummary = () => factories['io.flow.internal.v0.models.shopper_summary']();
|
|
33974
|
-
export const makeShrutiDemoItem = () => factories['io.flow.internal.v0.models.shruti_demo_item']();
|
|
33975
|
-
export const makeShrutiDemoItemDeleted = () => factories['io.flow.internal.v0.models.shruti_demo_item_deleted']();
|
|
33976
|
-
export const makeShrutiDemoItemForm = () => factories['io.flow.internal.v0.models.shruti_demo_item_form']();
|
|
33977
|
-
export const makeShrutiDemoItemUpserted = () => factories['io.flow.internal.v0.models.shruti_demo_item_upserted']();
|
|
33978
|
-
export const makeShrutiDemoType = () => factories['io.flow.internal.v0.enums.shruti_demo_type']();
|
|
33979
33421
|
export const makeSimpleAccountReference = () => factories['io.flow.internal.v0.models.simple_account_reference']();
|
|
33980
33422
|
export const makeSimpleRoundingStrategy = () => factories['io.flow.internal.v0.enums.simple_rounding_strategy']();
|
|
33981
33423
|
export const makeSimplifiedClassificationTaxonomy = () => factories['io.flow.internal.v0.unions.simplified_classification_taxonomy']();
|
|
@@ -34043,17 +33485,6 @@ export const makeSubscriptionFrequency = () => factories['io.flow.internal.v0.en
|
|
|
34043
33485
|
export const makeSubscriptionTransaction = () => factories['io.flow.internal.v0.models.subscription_transaction']();
|
|
34044
33486
|
export const makeSuggestionAction = () => factories['io.flow.internal.v0.enums.suggestion_action']();
|
|
34045
33487
|
export const makeSupportedLabels = () => factories['io.flow.internal.v0.models.supported_labels']();
|
|
34046
|
-
export const makeSvitlanaItem = () => factories['io.flow.internal.v0.models.svitlana_item']();
|
|
34047
|
-
export const makeSvitlanaItemDeleted = () => factories['io.flow.internal.v0.models.svitlana_item_deleted']();
|
|
34048
|
-
export const makeSvitlanaItemForm = () => factories['io.flow.internal.v0.models.svitlana_item_form']();
|
|
34049
|
-
export const makeSvitlanaItemUpserted = () => factories['io.flow.internal.v0.models.svitlana_item_upserted']();
|
|
34050
|
-
export const makeSvitlanaTest = () => factories['io.flow.internal.v0.models.svitlana_test']();
|
|
34051
|
-
export const makeSvitlanaType = () => factories['io.flow.internal.v0.enums.svitlana_type']();
|
|
34052
|
-
export const makeTamItem = () => factories['io.flow.internal.v0.models.tam_item']();
|
|
34053
|
-
export const makeTamItemDeleted = () => factories['io.flow.internal.v0.models.tam_item_deleted']();
|
|
34054
|
-
export const makeTamItemForm = () => factories['io.flow.internal.v0.models.tam_item_form']();
|
|
34055
|
-
export const makeTamItemType = () => factories['io.flow.internal.v0.enums.tam_item_type']();
|
|
34056
|
-
export const makeTamItemUpserted = () => factories['io.flow.internal.v0.models.tam_item_upserted']();
|
|
34057
33488
|
export const makeTariffCodeDuty = () => factories['io.flow.internal.v0.models.tariff_code_duty']();
|
|
34058
33489
|
export const makeTariffCodesExport = () => factories['io.flow.internal.v0.models.tariff_codes_export']();
|
|
34059
33490
|
export const makeTariffEligibility = () => factories['io.flow.internal.v0.models.tariff_eligibility']();
|
|
@@ -34090,11 +33521,6 @@ export const makeTaxonomyNode = () => factories['io.flow.internal.v0.models.taxo
|
|
|
34090
33521
|
export const makeTechOnboardingDescription = () => factories['io.flow.internal.v0.models.tech_onboarding_description']();
|
|
34091
33522
|
export const makeTest = () => factories['io.flow.internal.v0.models.test']();
|
|
34092
33523
|
export const makeTestForm = () => factories['io.flow.internal.v0.models.test_form']();
|
|
34093
|
-
export const makeThiagoItem = () => factories['io.flow.internal.v0.models.thiago_item']();
|
|
34094
|
-
export const makeThiagoItemDeleted = () => factories['io.flow.internal.v0.models.thiago_item_deleted']();
|
|
34095
|
-
export const makeThiagoItemForm = () => factories['io.flow.internal.v0.models.thiago_item_form']();
|
|
34096
|
-
export const makeThiagoItemType = () => factories['io.flow.internal.v0.enums.thiago_item_type']();
|
|
34097
|
-
export const makeThiagoItemUpserted = () => factories['io.flow.internal.v0.models.thiago_item_upserted']();
|
|
34098
33524
|
export const makeThirdPartyLogisticsPartner = () => factories['io.flow.internal.v0.models.third_party_logistics_partner']();
|
|
34099
33525
|
export const makeThirdPartyLogisticsPickUpTimeWindow = () => factories['io.flow.internal.v0.models.third_party_logistics_pick_up_time_window']();
|
|
34100
33526
|
export const makeTieredFee = () => factories['io.flow.internal.v0.models.tiered_fee']();
|
|
@@ -34113,6 +33539,9 @@ export const makeTrackingAssuranceAnalysisUpserted = () => factories['io.flow.in
|
|
|
34113
33539
|
export const makeTrackingAssuranceJob = () => factories['io.flow.internal.v0.models.tracking_assurance_job']();
|
|
34114
33540
|
export const makeTrackingAssuranceJobDeleted = () => factories['io.flow.internal.v0.models.tracking_assurance_job_deleted']();
|
|
34115
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']();
|
|
34116
33545
|
export const makeTrackingDebugForceTransitForm = () => factories['io.flow.internal.v0.models.tracking_debug_force_transit_form']();
|
|
34117
33546
|
export const makeTrackingDebugLabel = () => factories['io.flow.internal.v0.models.tracking_debug_label']();
|
|
34118
33547
|
export const makeTrackingDebugLabelEvent = () => factories['io.flow.internal.v0.models.tracking_debug_label_event']();
|
|
@@ -34133,9 +33562,7 @@ export const makeTrackingProcessingErrorDeleted = () => factories['io.flow.inter
|
|
|
34133
33562
|
export const makeTrackingProcessingErrorUpserted = () => factories['io.flow.internal.v0.models.tracking_processing_error_upserted']();
|
|
34134
33563
|
export const makeTrackingProcessingFailureClassification = () => factories['io.flow.internal.v0.enums.tracking_processing_failure_classification']();
|
|
34135
33564
|
export const makeTrackingRequest = () => factories['io.flow.internal.v0.models.tracking_request']();
|
|
34136
|
-
export const makeTrackingRequestUpserted = () => factories['io.flow.internal.v0.models.tracking_request_upserted']();
|
|
34137
33565
|
export const makeTrackingResponse = () => factories['io.flow.internal.v0.models.tracking_response']();
|
|
34138
|
-
export const makeTrackingResponseUpserted = () => factories['io.flow.internal.v0.models.tracking_response_upserted']();
|
|
34139
33566
|
export const makeTrackingSubscription = () => factories['io.flow.internal.v0.models.tracking_subscription']();
|
|
34140
33567
|
export const makeTrackingSubscriptionDeleted = () => factories['io.flow.internal.v0.models.tracking_subscription_deleted']();
|
|
34141
33568
|
export const makeTrackingSubscriptionUpserted = () => factories['io.flow.internal.v0.models.tracking_subscription_upserted']();
|