@flowio/api-internal-factories 0.0.130 → 0.0.132
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 +262 -1582
- package/dist/esm/api-internal.js +201 -1391
- package/dist/types/api-internal.d.ts +25 -153
- package/package.json +2 -2
- package/src/api-internal.ts +243 -1665
package/src/api-internal.ts
CHANGED
|
@@ -818,6 +818,8 @@ const factories = {
|
|
|
818
818
|
'tax_refund',
|
|
819
819
|
'duty_refund',
|
|
820
820
|
'non_l4l_tax_duty_fx',
|
|
821
|
+
'merchant_payout',
|
|
822
|
+
'merchant_refund',
|
|
821
823
|
'ge_revenue_share',
|
|
822
824
|
]),
|
|
823
825
|
|
|
@@ -2922,106 +2924,6 @@ const factories = {
|
|
|
2922
2924
|
rate: factories['io.flow.currency.v0.models.rate'](),
|
|
2923
2925
|
}),
|
|
2924
2926
|
|
|
2925
|
-
'io.flow.customer.v0.enums.customer_address_type': (): io.flow.customer.v0.enums.CustomerAddressType => faker.helpers.arrayElement(['billing', 'invoice', 'shipping']),
|
|
2926
|
-
|
|
2927
|
-
'io.flow.customer.v0.models.customer': (): io.flow.customer.v0.models.Customer => ({
|
|
2928
|
-
id: factories.string(),
|
|
2929
|
-
number: factories.string(),
|
|
2930
|
-
email: factories.string(),
|
|
2931
|
-
name: factories['io.flow.common.v0.models.name'](),
|
|
2932
|
-
phone: factories.string(),
|
|
2933
|
-
}),
|
|
2934
|
-
|
|
2935
|
-
'io.flow.customer.v0.models.customer_address_book': (): io.flow.customer.v0.models.CustomerAddressBook => ({
|
|
2936
|
-
contacts: arrayOf(
|
|
2937
|
-
() => factories['io.flow.customer.v0.models.customer_address_book_contact'](),
|
|
2938
|
-
),
|
|
2939
|
-
}),
|
|
2940
|
-
|
|
2941
|
-
'io.flow.customer.v0.models.customer_address_book_contact': (): io.flow.customer.v0.models.CustomerAddressBookContact => ({
|
|
2942
|
-
id: factories.string(),
|
|
2943
|
-
address: factories['io.flow.common.v0.models.address'](),
|
|
2944
|
-
contact: factories['io.flow.common.v0.models.contact'](),
|
|
2945
|
-
|
|
2946
|
-
address_preferences: arrayOf(
|
|
2947
|
-
() => factories['io.flow.customer.v0.models.customer_address_preference'](),
|
|
2948
|
-
),
|
|
2949
|
-
}),
|
|
2950
|
-
|
|
2951
|
-
'io.flow.customer.v0.models.customer_address_book_contact_form': (): io.flow.customer.v0.models.CustomerAddressBookContactForm => ({
|
|
2952
|
-
address: factories['io.flow.common.v0.models.address'](),
|
|
2953
|
-
contact: factories['io.flow.common.v0.models.contact'](),
|
|
2954
|
-
|
|
2955
|
-
address_preferences: arrayOf(
|
|
2956
|
-
() => factories['io.flow.customer.v0.models.customer_address_preference'](),
|
|
2957
|
-
),
|
|
2958
|
-
}),
|
|
2959
|
-
|
|
2960
|
-
'io.flow.customer.v0.models.customer_address_book_form': (): io.flow.customer.v0.models.CustomerAddressBookForm => ({
|
|
2961
|
-
contacts: arrayOf(
|
|
2962
|
-
() => factories['io.flow.customer.v0.models.customer_address_book_contact_form'](),
|
|
2963
|
-
),
|
|
2964
|
-
}),
|
|
2965
|
-
|
|
2966
|
-
'io.flow.customer.v0.models.customer_address_preference': (): io.flow.customer.v0.models.CustomerAddressPreference => ({
|
|
2967
|
-
type: factories['io.flow.customer.v0.enums.customer_address_type'](),
|
|
2968
|
-
}),
|
|
2969
|
-
|
|
2970
|
-
'io.flow.customer.v0.models.customer_bundle': (): io.flow.customer.v0.models.CustomerBundle => ({
|
|
2971
|
-
customer: factories['io.flow.customer.v0.models.customer'](),
|
|
2972
|
-
last_used: factories['io.flow.customer.v0.models.customer_last_used'](),
|
|
2973
|
-
}),
|
|
2974
|
-
|
|
2975
|
-
'io.flow.customer.v0.models.customer_client_token': (): io.flow.customer.v0.models.CustomerClientToken => ({
|
|
2976
|
-
token: factories.string(),
|
|
2977
|
-
}),
|
|
2978
|
-
|
|
2979
|
-
'io.flow.customer.v0.models.customer_form': (): io.flow.customer.v0.models.CustomerForm => ({
|
|
2980
|
-
number: factories.string(),
|
|
2981
|
-
email: factories.string(),
|
|
2982
|
-
name: factories['io.flow.common.v0.models.name'](),
|
|
2983
|
-
phone: factories.string(),
|
|
2984
|
-
}),
|
|
2985
|
-
|
|
2986
|
-
'io.flow.customer.v0.models.customer_last_used': (): io.flow.customer.v0.models.CustomerLastUsed => ({
|
|
2987
|
-
order: factories['io.flow.customer.v0.models.customer_order'](),
|
|
2988
|
-
payment: factories['io.flow.customer.v0.models.customer_payment'](),
|
|
2989
|
-
}),
|
|
2990
|
-
|
|
2991
|
-
'io.flow.customer.v0.models.customer_order': (): io.flow.customer.v0.models.CustomerOrder => ({
|
|
2992
|
-
number: factories.string(),
|
|
2993
|
-
destination: factories['io.flow.experience.v0.models.order_address'](),
|
|
2994
|
-
payments: arrayOf(() => factories['io.flow.experience.v0.models.order_payment']()),
|
|
2995
|
-
submitted_at: factories.date_time_iso_8601(),
|
|
2996
|
-
}),
|
|
2997
|
-
|
|
2998
|
-
'io.flow.customer.v0.models.customer_payment': (): io.flow.customer.v0.models.CustomerPayment => ({
|
|
2999
|
-
payment_methods: arrayOf(() => factories['io.flow.reference.v0.models.payment_method']()),
|
|
3000
|
-
}),
|
|
3001
|
-
|
|
3002
|
-
'io.flow.customer.v0.models.customer_purge_settings': (): io.flow.customer.v0.models.CustomerPurgeSettings => ({
|
|
3003
|
-
id: factories.string(),
|
|
3004
|
-
days_until_purge_unused: factories.long(),
|
|
3005
|
-
days_until_purge_used: factories.long(),
|
|
3006
|
-
}),
|
|
3007
|
-
|
|
3008
|
-
'io.flow.customer.v0.models.customer_purge_settings_form': (): io.flow.customer.v0.models.CustomerPurgeSettingsForm => ({
|
|
3009
|
-
days_until_purge_unused: factories.long(),
|
|
3010
|
-
days_until_purge_used: factories.long(),
|
|
3011
|
-
}),
|
|
3012
|
-
|
|
3013
|
-
'io.flow.customer.v0.models.customer_put_form': (): io.flow.customer.v0.models.CustomerPutForm => ({
|
|
3014
|
-
email: factories.string(),
|
|
3015
|
-
name: factories['io.flow.common.v0.models.name'](),
|
|
3016
|
-
phone: factories.string(),
|
|
3017
|
-
}),
|
|
3018
|
-
|
|
3019
|
-
'io.flow.customer.v0.models.customer_token': (): io.flow.customer.v0.models.CustomerToken => ({
|
|
3020
|
-
id: factories.string(),
|
|
3021
|
-
customer: factories['io.flow.common.v0.models.customer_reference'](),
|
|
3022
|
-
token: factories.string(),
|
|
3023
|
-
}),
|
|
3024
|
-
|
|
3025
2927
|
'io.flow.error.v0.enums.generic_error_code': (): io.flow.error.v0.enums.GenericErrorCode => faker.helpers.arrayElement(['generic_error', 'client_error', 'server_error']),
|
|
3026
2928
|
|
|
3027
2929
|
'io.flow.error.v0.models.generic_error': (): io.flow.error.v0.models.GenericError => ({
|
|
@@ -6662,7 +6564,6 @@ const factories = {
|
|
|
6662
6564
|
'io.flow.internal.v0.enums.account_payment_hold_reason': (): io.flow.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'frozen', 'invalid_bank_account']),
|
|
6663
6565
|
'io.flow.internal.v0.enums.account_setting_liabilities_method': (): io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod => faker.helpers.arrayElement(['withholding', 'transaction']),
|
|
6664
6566
|
'io.flow.internal.v0.enums.account_type': (): io.flow.internal.v0.enums.AccountType => faker.helpers.arrayElement(['channel', 'organization']),
|
|
6665
|
-
'io.flow.internal.v0.enums.address_configuration_setting_province_code': (): io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode => faker.helpers.arrayElement(['iso_3166_2', 'name']),
|
|
6666
6567
|
'io.flow.internal.v0.enums.adjustment_transaction_type': (): io.flow.internal.v0.enums.AdjustmentTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal']),
|
|
6667
6568
|
'io.flow.internal.v0.enums.adyen_integration_type': (): io.flow.internal.v0.enums.AdyenIntegrationType => faker.helpers.arrayElement(['hosted_payment_page', 'checkout_payments_api', 'classic_authorise_api']),
|
|
6668
6569
|
'io.flow.internal.v0.enums.aldo_item_type': (): io.flow.internal.v0.enums.AldoItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
@@ -6874,10 +6775,13 @@ const factories = {
|
|
|
6874
6775
|
'fourth_plus_attempt_success_ratio',
|
|
6875
6776
|
'ge_revenue_share_standard_transactions_count',
|
|
6876
6777
|
'ge_revenue_share_standard_transactions_total',
|
|
6778
|
+
'ge_revenue_share_standard_transactions_percentage',
|
|
6877
6779
|
'ge_revenue_share_shopify_plus_transactions_count',
|
|
6878
6780
|
'ge_revenue_share_shopify_plus_transactions_total',
|
|
6781
|
+
'ge_revenue_share_shopify_plus_transactions_percentage',
|
|
6879
6782
|
'non_l4l_tax_duty_fx_transactions_count',
|
|
6880
6783
|
'non_l4l_tax_duty_fx_transactions_total',
|
|
6784
|
+
'non_l4l_tax_duty_fx_transactions_percentage',
|
|
6881
6785
|
'sp_adjustment_transactions_count',
|
|
6882
6786
|
'sp_adjustment_transactions_total',
|
|
6883
6787
|
'sp_billable_label_transactions_count',
|
|
@@ -6957,6 +6861,8 @@ const factories = {
|
|
|
6957
6861
|
'tax_refund',
|
|
6958
6862
|
'duty_refund',
|
|
6959
6863
|
'ge_revenue_share',
|
|
6864
|
+
'merchant_payout',
|
|
6865
|
+
'merchant_refund',
|
|
6960
6866
|
]),
|
|
6961
6867
|
|
|
6962
6868
|
'io.flow.internal.v0.enums.calculator_engine': (): io.flow.internal.v0.enums.CalculatorEngine => faker.helpers.arrayElement(['dtce_with_deminimis', 'dtce_with_inclusive_pricing', 'dtce_and_us_tax']),
|
|
@@ -7039,23 +6945,7 @@ const factories = {
|
|
|
7039
6945
|
'io.flow.internal.v0.enums.chargeback_payment_status': (): io.flow.internal.v0.enums.ChargebackPaymentStatus => faker.helpers.arrayElement(['captured', 'refunded']),
|
|
7040
6946
|
'io.flow.internal.v0.enums.chargeback_process_status': (): io.flow.internal.v0.enums.ChargebackProcessStatus => faker.helpers.arrayElement(['inquiry', 'open', 'closed']),
|
|
7041
6947
|
'io.flow.internal.v0.enums.checkout_asset_type': (): io.flow.internal.v0.enums.CheckoutAssetType => faker.helpers.arrayElement(['stylesheet', 'javascript']),
|
|
7042
|
-
|
|
7043
|
-
'io.flow.internal.v0.enums.checkout_error_code': (): io.flow.internal.v0.enums.CheckoutErrorCode => faker.helpers.arrayElement([
|
|
7044
|
-
'generic_error',
|
|
7045
|
-
'order_identifier_invalid',
|
|
7046
|
-
'url_invalid',
|
|
7047
|
-
'organization_invalid',
|
|
7048
|
-
'session_invalid',
|
|
7049
|
-
'session_missing',
|
|
7050
|
-
'session_organization_invalid',
|
|
7051
|
-
'country_invalid',
|
|
7052
|
-
'currency_invalid',
|
|
7053
|
-
'language_invalid',
|
|
7054
|
-
'checkout_invalid',
|
|
7055
|
-
]),
|
|
7056
|
-
|
|
7057
6948
|
'io.flow.internal.v0.enums.checkout_prompt_behavior': (): io.flow.internal.v0.enums.CheckoutPromptBehavior => faker.helpers.arrayElement(['always', 'incomplete']),
|
|
7058
|
-
'io.flow.internal.v0.enums.checkout_redirect_method': (): io.flow.internal.v0.enums.CheckoutRedirectMethod => faker.helpers.arrayElement(['get', 'post']),
|
|
7059
6949
|
'io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior': (): io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior => faker.helpers.arrayElement(['always', 'multiple']),
|
|
7060
6950
|
'io.flow.internal.v0.enums.checkout_url_type': (): io.flow.internal.v0.enums.CheckoutUrlType => faker.helpers.arrayElement(['continue_shopping', 'confirmation', 'invalid_checkout']),
|
|
7061
6951
|
'io.flow.internal.v0.enums.classification_decision': (): io.flow.internal.v0.enums.ClassificationDecision => faker.helpers.arrayElement(['Accept', 'Reject']),
|
|
@@ -7080,10 +6970,6 @@ const factories = {
|
|
|
7080
6970
|
'ManagedMarketsDutiesAndTaxesAdjustmentCredit',
|
|
7081
6971
|
]),
|
|
7082
6972
|
|
|
7083
|
-
'io.flow.internal.v0.enums.content_element_type': (): io.flow.internal.v0.enums.ContentElementType => faker.helpers.arrayElement(['markdown', 'html', 'plain_text', 'href']),
|
|
7084
|
-
'io.flow.internal.v0.enums.content_status': (): io.flow.internal.v0.enums.ContentStatus => faker.helpers.arrayElement(['draft', 'live', 'archived']),
|
|
7085
|
-
'io.flow.internal.v0.enums.content_type': (): io.flow.internal.v0.enums.ContentType => faker.helpers.arrayElement(['text', 'html']),
|
|
7086
|
-
'io.flow.internal.v0.enums.content_type_cast': (): io.flow.internal.v0.enums.ContentTypeCast => faker.helpers.arrayElement(['markdown_to_html', 'markdown_to_text']),
|
|
7087
6973
|
'io.flow.internal.v0.enums.crossdock_tracking_status': (): io.flow.internal.v0.enums.CrossdockTrackingStatus => faker.helpers.arrayElement(['notified', 'received', 'shipped']),
|
|
7088
6974
|
'io.flow.internal.v0.enums.debug_accounting_transaction_type': (): io.flow.internal.v0.enums.DebugAccountingTransactionType => faker.helpers.arrayElement(['fulfillment']),
|
|
7089
6975
|
'io.flow.internal.v0.enums.delivered_duty_option_message_type': (): io.flow.internal.v0.enums.DeliveredDutyOptionMessageType => faker.helpers.arrayElement(['warning', 'notification']),
|
|
@@ -7209,12 +7095,8 @@ const factories = {
|
|
|
7209
7095
|
'channel_order_acceptance_upserted',
|
|
7210
7096
|
'channel_order_acceptance_deleted',
|
|
7211
7097
|
'channel_order_acceptance_failed',
|
|
7212
|
-
'checkout_configuration_upserted',
|
|
7213
|
-
'checkout_configuration_deleted',
|
|
7214
7098
|
'commercial_invoice_internal_upserted',
|
|
7215
7099
|
'commercial_invoice_internal_deleted',
|
|
7216
|
-
'localized_content_upserted',
|
|
7217
|
-
'localization_upserted',
|
|
7218
7100
|
'internal_channel_rate_deleted',
|
|
7219
7101
|
'internal_channel_rate_upserted',
|
|
7220
7102
|
'rate_deleted',
|
|
@@ -7315,8 +7197,6 @@ const factories = {
|
|
|
7315
7197
|
'item_harmonization_upserted',
|
|
7316
7198
|
'item_harmonization_deleted',
|
|
7317
7199
|
'harmonization_classification_statistics_published',
|
|
7318
|
-
'issuer_upserted',
|
|
7319
|
-
'issuer_deleted',
|
|
7320
7200
|
'item_form_import_request',
|
|
7321
7201
|
'label_request_error_upserted',
|
|
7322
7202
|
'label_request_error_deleted',
|
|
@@ -7414,10 +7294,8 @@ const factories = {
|
|
|
7414
7294
|
'restriction_rule_effect_deleted',
|
|
7415
7295
|
'taxonomy_category_hs6_ref_upserted',
|
|
7416
7296
|
'taxonomy_category_hs6_ref_deleted',
|
|
7417
|
-
'
|
|
7418
|
-
'
|
|
7419
|
-
'shopify_experience_short_id_upserted',
|
|
7420
|
-
'shopify_experience_short_id_deleted',
|
|
7297
|
+
'shopify_hs10_codes_upserted',
|
|
7298
|
+
'shopify_hs10_codes_deleted',
|
|
7421
7299
|
'shopify_markets_order_upserted',
|
|
7422
7300
|
'shopify_markets_order_deleted',
|
|
7423
7301
|
'shopify_markets_shop_upserted',
|
|
@@ -7463,6 +7341,8 @@ const factories = {
|
|
|
7463
7341
|
'shopify_merchant_plan_deleted',
|
|
7464
7342
|
'shopify_dispute_upserted',
|
|
7465
7343
|
'shopify_dispute_deleted',
|
|
7344
|
+
'shopify_report_file_upserted',
|
|
7345
|
+
'shopify_report_file_deleted',
|
|
7466
7346
|
'stripe_authorization_deleted',
|
|
7467
7347
|
'stripe_authorization_upserted',
|
|
7468
7348
|
'stripe_reversal_deleted',
|
|
@@ -7507,23 +7387,11 @@ const factories = {
|
|
|
7507
7387
|
'io.flow.internal.v0.enums.feature_status': (): io.flow.internal.v0.enums.FeatureStatus => faker.helpers.arrayElement(['draft', 'active', 'archived']),
|
|
7508
7388
|
'io.flow.internal.v0.enums.feature_type': (): io.flow.internal.v0.enums.FeatureType => faker.helpers.arrayElement(['boolean', 'decimal', 'string']),
|
|
7509
7389
|
'io.flow.internal.v0.enums.fees_source': (): io.flow.internal.v0.enums.FeesSource => faker.helpers.arrayElement(['settings', 'authorization_bundle']),
|
|
7510
|
-
'io.flow.internal.v0.enums.financial_reporting_responsible_party': (): io.flow.internal.v0.enums.FinancialReportingResponsibleParty => faker.helpers.arrayElement(['flow', 'organization']),
|
|
7511
|
-
'io.flow.internal.v0.enums.flow_app': (): io.flow.internal.v0.enums.FlowApp => faker.helpers.arrayElement(['console']),
|
|
7512
|
-
'io.flow.internal.v0.enums.format': (): io.flow.internal.v0.enums.Format => faker.helpers.arrayElement(['text', 'phone', 'email']),
|
|
7513
7390
|
'io.flow.internal.v0.enums.fraud_provider': (): io.flow.internal.v0.enums.FraudProvider => faker.helpers.arrayElement(['flow', 'forter', 'paypal', 'riskified', 'rps', 'other', 'none']),
|
|
7514
7391
|
'io.flow.internal.v0.enums.fraud_provider_status': (): io.flow.internal.v0.enums.FraudProviderStatus => faker.helpers.arrayElement(['active', 'archived']),
|
|
7515
7392
|
'io.flow.internal.v0.enums.fraud_review_responsible_party': (): io.flow.internal.v0.enums.FraudReviewResponsibleParty => faker.helpers.arrayElement(['flow', 'organization']),
|
|
7516
|
-
|
|
7517
|
-
'io.flow.internal.v0.enums.ftp_intent': (): io.flow.internal.v0.enums.FtpIntent => faker.helpers.arrayElement([
|
|
7518
|
-
'orders_from_flow',
|
|
7519
|
-
'pricebooks_from_flow',
|
|
7520
|
-
'pricebooks_to_flow',
|
|
7521
|
-
'catalog_to_flow',
|
|
7522
|
-
'inventory_to_flow',
|
|
7523
|
-
]),
|
|
7524
|
-
|
|
7525
|
-
'io.flow.internal.v0.enums.ftp_protocol': (): io.flow.internal.v0.enums.FtpProtocol => faker.helpers.arrayElement(['sftp', 'ftp']),
|
|
7526
7393
|
'io.flow.internal.v0.enums.ge_ingestion_file_status': (): io.flow.internal.v0.enums.GeIngestionFileStatus => faker.helpers.arrayElement(['pending', 'processed']),
|
|
7394
|
+
'io.flow.internal.v0.enums.ge_revenue_share_transaction_type': (): io.flow.internal.v0.enums.GeRevenueShareTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'revenue_share']),
|
|
7527
7395
|
'io.flow.internal.v0.enums.google_analytics_plugin': (): io.flow.internal.v0.enums.GoogleAnalyticsPlugin => faker.helpers.arrayElement(['ec']),
|
|
7528
7396
|
|
|
7529
7397
|
'io.flow.internal.v0.enums.graphql_service_types': (): io.flow.internal.v0.enums.GraphqlServiceTypes => faker.helpers.arrayElement([
|
|
@@ -7563,6 +7431,7 @@ const factories = {
|
|
|
7563
7431
|
|
|
7564
7432
|
'io.flow.internal.v0.enums.item_quantity_action': (): io.flow.internal.v0.enums.ItemQuantityAction => faker.helpers.arrayElement(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']),
|
|
7565
7433
|
'io.flow.internal.v0.enums.item_type': (): io.flow.internal.v0.enums.ItemType => faker.helpers.arrayElement(['standard', 'multi_product']),
|
|
7434
|
+
'io.flow.internal.v0.enums.journal_operation': (): io.flow.internal.v0.enums.JournalOperation => faker.helpers.arrayElement(['insert', 'update', 'delete']),
|
|
7566
7435
|
'io.flow.internal.v0.enums.keyword_type': (): io.flow.internal.v0.enums.KeywordType => faker.helpers.arrayElement(['positive', 'negative']),
|
|
7567
7436
|
'io.flow.internal.v0.enums.label_billing_strategy': (): io.flow.internal.v0.enums.LabelBillingStrategy => faker.helpers.arrayElement(['quote', 'carrier']),
|
|
7568
7437
|
'io.flow.internal.v0.enums.label_cancellation_error_code': (): io.flow.internal.v0.enums.LabelCancellationErrorCode => faker.helpers.arrayElement(['already_used', 'carrier_unsupported']),
|
|
@@ -7766,11 +7635,7 @@ const factories = {
|
|
|
7766
7635
|
]),
|
|
7767
7636
|
|
|
7768
7637
|
'io.flow.internal.v0.enums.processor_entity_status': (): io.flow.internal.v0.enums.ProcessorEntityStatus => faker.helpers.arrayElement(['active', 'draft', 'archived']),
|
|
7769
|
-
'io.flow.internal.v0.enums.product_status': (): io.flow.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft']),
|
|
7770
|
-
'io.flow.internal.v0.enums.prompt_action': (): io.flow.internal.v0.enums.PromptAction => faker.helpers.arrayElement(['prompt_displayed', 'consent_granted', 'consent_denied']),
|
|
7771
|
-
'io.flow.internal.v0.enums.prompt_checkout_display_position': (): io.flow.internal.v0.enums.PromptCheckoutDisplayPosition => faker.helpers.arrayElement(['email', 'submission']),
|
|
7772
|
-
'io.flow.internal.v0.enums.prompt_options': (): io.flow.internal.v0.enums.PromptOptions => faker.helpers.arrayElement(['notice_only', 'require_consent', 'consent_by_default']),
|
|
7773
|
-
'io.flow.internal.v0.enums.prompt_target': (): io.flow.internal.v0.enums.PromptTarget => faker.helpers.arrayElement(['browse', 'checkout']),
|
|
7638
|
+
'io.flow.internal.v0.enums.product_status': (): io.flow.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft', 'unlisted']),
|
|
7774
7639
|
|
|
7775
7640
|
'io.flow.internal.v0.enums.rate_level_key': (): io.flow.internal.v0.enums.RateLevelKey => faker.helpers.arrayElement([
|
|
7776
7641
|
'shopify_small_usa',
|
|
@@ -7780,7 +7645,6 @@ const factories = {
|
|
|
7780
7645
|
]),
|
|
7781
7646
|
|
|
7782
7647
|
'io.flow.internal.v0.enums.rate_source': (): io.flow.internal.v0.enums.RateSource => faker.helpers.arrayElement(['calculated', 'market']),
|
|
7783
|
-
'io.flow.internal.v0.enums.rebound_configuration_status': (): io.flow.internal.v0.enums.ReboundConfigurationStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
7784
7648
|
'io.flow.internal.v0.enums.redirect_reason': (): io.flow.internal.v0.enums.RedirectReason => faker.helpers.arrayElement(['three_d_secure']),
|
|
7785
7649
|
|
|
7786
7650
|
'io.flow.internal.v0.enums.rejection_reason': (): io.flow.internal.v0.enums.RejectionReason => faker.helpers.arrayElement([
|
|
@@ -7812,6 +7676,7 @@ const factories = {
|
|
|
7812
7676
|
'reconcile_not_recorded',
|
|
7813
7677
|
'products_record',
|
|
7814
7678
|
'disputes',
|
|
7679
|
+
'sales_payments_record',
|
|
7815
7680
|
]),
|
|
7816
7681
|
|
|
7817
7682
|
'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
|
|
@@ -7828,6 +7693,7 @@ const factories = {
|
|
|
7828
7693
|
'io.flow.internal.v0.enums.restriction_decision': (): io.flow.internal.v0.enums.RestrictionDecision => faker.helpers.arrayElement(['accept', 'escalate', 'reject', 'review']),
|
|
7829
7694
|
'io.flow.internal.v0.enums.restriction_organization_channel': (): io.flow.internal.v0.enums.RestrictionOrganizationChannel => faker.helpers.arrayElement(['shopify', 'enterprise', 'shopify-sandbox', 'enterprise-sandbox']),
|
|
7830
7695
|
'io.flow.internal.v0.enums.restriction_organization_source': (): io.flow.internal.v0.enums.RestrictionOrganizationSource => faker.helpers.arrayElement(['shopify', 'enterprise']),
|
|
7696
|
+
'io.flow.internal.v0.enums.restriction_rule_community_exemption': (): io.flow.internal.v0.enums.RestrictionRuleCommunityExemption => faker.helpers.arrayElement(['domestic_exemption', 'intra_eu_exemption']),
|
|
7831
7697
|
'io.flow.internal.v0.enums.restriction_rule_exception_action': (): io.flow.internal.v0.enums.RestrictionRuleExceptionAction => faker.helpers.arrayElement(['allow', 'deny']),
|
|
7832
7698
|
'io.flow.internal.v0.enums.restriction_state_review_status': (): io.flow.internal.v0.enums.RestrictionStateReviewStatus => faker.helpers.arrayElement(['reviewed', 'in_review']),
|
|
7833
7699
|
'io.flow.internal.v0.enums.restriction_status': (): io.flow.internal.v0.enums.RestrictionStatus => faker.helpers.arrayElement(['pending', 'in_review', 'escalated', 'accepted', 'restricted']),
|
|
@@ -7835,8 +7701,7 @@ const factories = {
|
|
|
7835
7701
|
'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
|
|
7836
7702
|
'io.flow.internal.v0.enums.risk_evaluation': (): io.flow.internal.v0.enums.RiskEvaluation => faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']),
|
|
7837
7703
|
'io.flow.internal.v0.enums.rohan_item_type': (): io.flow.internal.v0.enums.RohanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7838
|
-
'io.flow.internal.v0.enums.
|
|
7839
|
-
'io.flow.internal.v0.enums.shopify_grant_status': (): io.flow.internal.v0.enums.ShopifyGrantStatus => faker.helpers.arrayElement(['pass', 'fail']),
|
|
7704
|
+
'io.flow.internal.v0.enums.sarvesh_item_type': (): io.flow.internal.v0.enums.SarveshItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7840
7705
|
'io.flow.internal.v0.enums.shopify_incoterm_configuration': (): io.flow.internal.v0.enums.ShopifyIncotermConfiguration => faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']),
|
|
7841
7706
|
|
|
7842
7707
|
'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
|
|
@@ -7897,25 +7762,11 @@ const factories = {
|
|
|
7897
7762
|
'io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status': (): io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus => faker.helpers.arrayElement(['in_review', 'reviewed']),
|
|
7898
7763
|
'io.flow.internal.v0.enums.shopify_monitoring_tracking_field': (): io.flow.internal.v0.enums.ShopifyMonitoringTrackingField => faker.helpers.arrayElement(['tracking_number', 'carrier_service', 'tracking_url']),
|
|
7899
7764
|
'io.flow.internal.v0.enums.shopify_plan_type': (): io.flow.internal.v0.enums.ShopifyPlanType => faker.helpers.arrayElement(['standard', 'shopify_plus']),
|
|
7900
|
-
'io.flow.internal.v0.enums.shopify_promotion_behavior': (): io.flow.internal.v0.enums.ShopifyPromotionBehavior => faker.helpers.arrayElement(['disable_discount_codes']),
|
|
7901
|
-
'io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method': (): io.flow.internal.v0.enums.ShopifyPromotionOfferAllocationMethod => faker.helpers.arrayElement(['each', 'across']),
|
|
7902
|
-
'io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component': (): io.flow.internal.v0.enums.ShopifyPromotionOrderEntitlementComponent => faker.helpers.arrayElement(['subtotal', 'shipping', 'vat', 'duty']),
|
|
7903
|
-
'io.flow.internal.v0.enums.shopify_promotion_status': (): io.flow.internal.v0.enums.ShopifyPromotionStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
7904
7765
|
'io.flow.internal.v0.enums.shopify_service': (): io.flow.internal.v0.enums.ShopifyService => faker.helpers.arrayElement(['payment', 'duty_tax_calculator', 'sellability']),
|
|
7905
7766
|
'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
|
|
7906
7767
|
'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
|
|
7907
7768
|
'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task', 'invariant']),
|
|
7908
7769
|
'io.flow.internal.v0.enums.source_type_filter': (): io.flow.internal.v0.enums.SourceTypeFilter => faker.helpers.arrayElement(['organization', 'channel']),
|
|
7909
|
-
|
|
7910
|
-
'io.flow.internal.v0.enums.statement_status': (): io.flow.internal.v0.enums.StatementStatus => faker.helpers.arrayElement([
|
|
7911
|
-
'created',
|
|
7912
|
-
'no_transactions',
|
|
7913
|
-
'transactions_assigned',
|
|
7914
|
-
'statement_generated',
|
|
7915
|
-
'statement_regenerated',
|
|
7916
|
-
'failed',
|
|
7917
|
-
]),
|
|
7918
|
-
|
|
7919
7770
|
'io.flow.internal.v0.enums.statement_transfer_transaction_location': (): io.flow.internal.v0.enums.StatementTransferTransactionLocation => faker.helpers.arrayElement(['transactions_file', 'summary']),
|
|
7920
7771
|
|
|
7921
7772
|
'io.flow.internal.v0.enums.statistic_type': (): io.flow.internal.v0.enums.StatisticType => faker.helpers.arrayElement([
|
|
@@ -7949,6 +7800,15 @@ const factories = {
|
|
|
7949
7800
|
'io.flow.internal.v0.enums.tax_calculation_error_code': (): io.flow.internal.v0.enums.TaxCalculationErrorCode => faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']),
|
|
7950
7801
|
'io.flow.internal.v0.enums.tax_party': (): io.flow.internal.v0.enums.TaxParty => faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']),
|
|
7951
7802
|
'io.flow.internal.v0.enums.tax_transaction_type': (): io.flow.internal.v0.enums.TaxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'tax', 'refund']),
|
|
7803
|
+
|
|
7804
|
+
'io.flow.internal.v0.enums.taxonomy_category_classification_alignment': (): io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment => faker.helpers.arrayElement([
|
|
7805
|
+
'aligned',
|
|
7806
|
+
'not_aligned',
|
|
7807
|
+
'product_missing_category',
|
|
7808
|
+
'config_missing_category',
|
|
7809
|
+
'product_not_found',
|
|
7810
|
+
]),
|
|
7811
|
+
|
|
7952
7812
|
'io.flow.internal.v0.enums.tracking_integration_type': (): io.flow.internal.v0.enums.TrackingIntegrationType => faker.helpers.arrayElement(['api', 'bulk', 'aftership']),
|
|
7953
7813
|
'io.flow.internal.v0.enums.tracking_label_dimensions_source': (): io.flow.internal.v0.enums.TrackingLabelDimensionsSource => faker.helpers.arrayElement(['aftership', 'carrier_api']),
|
|
7954
7814
|
|
|
@@ -8224,19 +8084,6 @@ const factories = {
|
|
|
8224
8084
|
rate: factories.decimal(),
|
|
8225
8085
|
}),
|
|
8226
8086
|
|
|
8227
|
-
'io.flow.internal.v0.models.address_configuration_province_setting': (): io.flow.internal.v0.models.AddressConfigurationProvinceSetting => ({
|
|
8228
|
-
code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
|
|
8229
|
-
}),
|
|
8230
|
-
|
|
8231
|
-
'io.flow.internal.v0.models.address_configuration_setting': (): io.flow.internal.v0.models.AddressConfigurationSetting => ({
|
|
8232
|
-
id: factories.string(),
|
|
8233
|
-
province: factories['io.flow.internal.v0.models.address_configuration_province_setting'](),
|
|
8234
|
-
}),
|
|
8235
|
-
|
|
8236
|
-
'io.flow.internal.v0.models.address_configuration_setting_form': (): io.flow.internal.v0.models.AddressConfigurationSettingForm => ({
|
|
8237
|
-
province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
|
|
8238
|
-
}),
|
|
8239
|
-
|
|
8240
8087
|
'io.flow.internal.v0.models.adjustment_amount_fixed': (): io.flow.internal.v0.models.AdjustmentAmountFixed => ({
|
|
8241
8088
|
discriminator: 'fixed',
|
|
8242
8089
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
@@ -8688,37 +8535,6 @@ const factories = {
|
|
|
8688
8535
|
added_on: factories.date_iso_8601(),
|
|
8689
8536
|
}),
|
|
8690
8537
|
|
|
8691
|
-
'io.flow.internal.v0.models.alert_error_summary': (): io.flow.internal.v0.models.AlertErrorSummary => ({
|
|
8692
|
-
event_id: factories.long(),
|
|
8693
|
-
error: factories.string(),
|
|
8694
|
-
}),
|
|
8695
|
-
|
|
8696
|
-
'io.flow.internal.v0.models.alert_failure_summary': (): io.flow.internal.v0.models.AlertFailureSummary => ({
|
|
8697
|
-
database: factories.string(),
|
|
8698
|
-
|
|
8699
|
-
summaries: arrayOf(
|
|
8700
|
-
() => factories['io.flow.internal.v0.models.alert_failure_summary_detail'](),
|
|
8701
|
-
),
|
|
8702
|
-
}),
|
|
8703
|
-
|
|
8704
|
-
'io.flow.internal.v0.models.alert_failure_summary_detail': (): io.flow.internal.v0.models.AlertFailureSummaryDetail => ({
|
|
8705
|
-
queue: factories.string(),
|
|
8706
|
-
count: factories.long(),
|
|
8707
|
-
errors: arrayOf(() => factories['io.flow.internal.v0.models.alert_error_summary']()),
|
|
8708
|
-
}),
|
|
8709
|
-
|
|
8710
|
-
'io.flow.internal.v0.models.alert_import_summary': (): io.flow.internal.v0.models.AlertImportSummary => ({
|
|
8711
|
-
organization_id: factories.string(),
|
|
8712
|
-
filename: factories.string(),
|
|
8713
|
-
type: factories.string(),
|
|
8714
|
-
started_at: factories.date_time_iso_8601(),
|
|
8715
|
-
}),
|
|
8716
|
-
|
|
8717
|
-
'io.flow.internal.v0.models.alert_requeue_summary': (): io.flow.internal.v0.models.AlertRequeueSummary => ({
|
|
8718
|
-
queue: factories.string(),
|
|
8719
|
-
count: factories.long(),
|
|
8720
|
-
}),
|
|
8721
|
-
|
|
8722
8538
|
'io.flow.internal.v0.models.all_items_export': (): io.flow.internal.v0.models.AllItemsExport => ({
|
|
8723
8539
|
discriminator: 'all_items_export',
|
|
8724
8540
|
event_id: factories.string(),
|
|
@@ -8758,10 +8574,6 @@ const factories = {
|
|
|
8758
8574
|
added_on: factories.date_iso_8601(),
|
|
8759
8575
|
}),
|
|
8760
8576
|
|
|
8761
|
-
'io.flow.internal.v0.models.apm_content': (): io.flow.internal.v0.models.ApmContent => ({
|
|
8762
|
-
processor_description: factories['io.flow.internal.v0.unions.content_item'](),
|
|
8763
|
-
}),
|
|
8764
|
-
|
|
8765
8577
|
'io.flow.internal.v0.models.apple_pay_authorization_payload': (): io.flow.internal.v0.models.ApplePayAuthorizationPayload => ({
|
|
8766
8578
|
discriminator: 'apple_pay_authorization_payload',
|
|
8767
8579
|
apple_pay_token: factories.string(),
|
|
@@ -8892,6 +8704,27 @@ const factories = {
|
|
|
8892
8704
|
id: factories.string(),
|
|
8893
8705
|
}),
|
|
8894
8706
|
|
|
8707
|
+
'io.flow.internal.v0.models.bank_payment_detail': (): io.flow.internal.v0.models.BankPaymentDetail => ({
|
|
8708
|
+
id: factories.string(),
|
|
8709
|
+
source_type: factories['io.flow.internal.v0.enums.account_type'](),
|
|
8710
|
+
source_id: factories.string(),
|
|
8711
|
+
status: factories['io.flow.internal.v0.enums.bank_payment_status_code'](),
|
|
8712
|
+
amount: factories.decimal(),
|
|
8713
|
+
currency: factories.string(),
|
|
8714
|
+
created_at: factories.date_time_iso_8601(),
|
|
8715
|
+
payment_transactions_url: factories.string(),
|
|
8716
|
+
|
|
8717
|
+
statement_attachments: arrayOf(
|
|
8718
|
+
() => factories['io.flow.internal.v0.models.bank_payment_detail_attachment'](),
|
|
8719
|
+
),
|
|
8720
|
+
}),
|
|
8721
|
+
|
|
8722
|
+
'io.flow.internal.v0.models.bank_payment_detail_attachment': (): io.flow.internal.v0.models.BankPaymentDetailAttachment => ({
|
|
8723
|
+
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
8724
|
+
statement_url: factories.string(),
|
|
8725
|
+
statement_transactions_url: factories.string(),
|
|
8726
|
+
}),
|
|
8727
|
+
|
|
8895
8728
|
'io.flow.internal.v0.models.bank_payment_form': (): io.flow.internal.v0.models.BankPaymentForm => ({
|
|
8896
8729
|
account_id: factories.string(),
|
|
8897
8730
|
reference: factories.string(),
|
|
@@ -10099,14 +9932,6 @@ const factories = {
|
|
|
10099
9932
|
chargeback: factories['io.flow.internal.v0.models.chargeback'](),
|
|
10100
9933
|
}),
|
|
10101
9934
|
|
|
10102
|
-
'io.flow.internal.v0.models.checkbox': (): io.flow.internal.v0.models.Checkbox => ({
|
|
10103
|
-
name: factories.string(),
|
|
10104
|
-
value: factories.string(),
|
|
10105
|
-
label: factories.string(),
|
|
10106
|
-
checked_by_default: factories.boolean(),
|
|
10107
|
-
required: factories.boolean(),
|
|
10108
|
-
}),
|
|
10109
|
-
|
|
10110
9935
|
'io.flow.internal.v0.models.checkout_analytics': (): io.flow.internal.v0.models.CheckoutAnalytics => ({
|
|
10111
9936
|
trackers: arrayOf(() => factories['io.flow.internal.v0.unions.tracker']()),
|
|
10112
9937
|
use_base_currency: factories.boolean(),
|
|
@@ -10147,14 +9972,6 @@ const factories = {
|
|
|
10147
9972
|
domain: factories.string(),
|
|
10148
9973
|
}),
|
|
10149
9974
|
|
|
10150
|
-
'io.flow.internal.v0.models.checkout_configuration_deleted': (): io.flow.internal.v0.models.CheckoutConfigurationDeleted => ({
|
|
10151
|
-
discriminator: 'checkout_configuration_deleted',
|
|
10152
|
-
event_id: factories.string(),
|
|
10153
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10154
|
-
organization: factories.string(),
|
|
10155
|
-
checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
|
|
10156
|
-
}),
|
|
10157
|
-
|
|
10158
9975
|
'io.flow.internal.v0.models.checkout_configuration_form': (): io.flow.internal.v0.models.CheckoutConfigurationForm => ({
|
|
10159
9976
|
behavior: factories['io.flow.internal.v0.models.checkout_behavior'](),
|
|
10160
9977
|
settings: factories['io.flow.internal.v0.models.checkout_settings'](),
|
|
@@ -10166,70 +9983,6 @@ const factories = {
|
|
|
10166
9983
|
id: factories.string(),
|
|
10167
9984
|
}),
|
|
10168
9985
|
|
|
10169
|
-
'io.flow.internal.v0.models.checkout_configuration_upserted': (): io.flow.internal.v0.models.CheckoutConfigurationUpserted => ({
|
|
10170
|
-
discriminator: 'checkout_configuration_upserted',
|
|
10171
|
-
event_id: factories.string(),
|
|
10172
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10173
|
-
organization: factories.string(),
|
|
10174
|
-
checkout_configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
|
|
10175
|
-
}),
|
|
10176
|
-
|
|
10177
|
-
'io.flow.internal.v0.models.checkout_content': (): io.flow.internal.v0.models.CheckoutContent => ({
|
|
10178
|
-
global: factories['io.flow.internal.v0.models.checkout_content_summary'](),
|
|
10179
|
-
items: arrayOf(() => factories['io.flow.experience.v0.models.checkout_item_content']()),
|
|
10180
|
-
}),
|
|
10181
|
-
|
|
10182
|
-
'io.flow.internal.v0.models.checkout_content_details': (): io.flow.internal.v0.models.CheckoutContentDetails => ({
|
|
10183
|
-
contact_us: factories['io.flow.internal.v0.unions.content_item'](),
|
|
10184
|
-
logo: factories['io.flow.internal.v0.models.logo'](),
|
|
10185
|
-
privacy_policy: factories['io.flow.internal.v0.unions.content_item'](),
|
|
10186
|
-
terms: factories['io.flow.internal.v0.unions.content_item'](),
|
|
10187
|
-
order_summary_message: factories['io.flow.internal.v0.models.content_label'](),
|
|
10188
|
-
}),
|
|
10189
|
-
|
|
10190
|
-
'io.flow.internal.v0.models.checkout_content_summary': (): io.flow.internal.v0.models.CheckoutContentSummary => ({
|
|
10191
|
-
customer_service: factories['io.flow.internal.v0.models.labeled_content'](),
|
|
10192
|
-
checkout: factories['io.flow.internal.v0.models.checkout_content_details'](),
|
|
10193
|
-
payments: factories['io.flow.internal.v0.models.checkout_payment_content'](),
|
|
10194
|
-
marketing: factories['io.flow.internal.v0.models.checkout_marketing_content'](),
|
|
10195
|
-
footer: arrayOf(() => factories['io.flow.internal.v0.unions.content_item']()),
|
|
10196
|
-
}),
|
|
10197
|
-
|
|
10198
|
-
'io.flow.internal.v0.models.checkout_error': (): io.flow.internal.v0.models.CheckoutError => ({
|
|
10199
|
-
code: factories['io.flow.internal.v0.enums.checkout_error_code'](),
|
|
10200
|
-
messages: arrayOf(() => factories.string()),
|
|
10201
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
10202
|
-
redirect: factories['io.flow.internal.v0.models.checkout_redirect'](),
|
|
10203
|
-
}),
|
|
10204
|
-
|
|
10205
|
-
'io.flow.internal.v0.models.checkout_marketing_content': (): io.flow.internal.v0.models.CheckoutMarketingContent => ({
|
|
10206
|
-
optins: arrayOf(() => factories['io.flow.internal.v0.models.checkbox']()),
|
|
10207
|
-
}),
|
|
10208
|
-
|
|
10209
|
-
'io.flow.internal.v0.models.checkout_payment': (): io.flow.internal.v0.models.CheckoutPayment => ({
|
|
10210
|
-
authorizations: arrayOf(() => factories['io.flow.payment.v0.unions.authorization']()),
|
|
10211
|
-
sources: arrayOf(() => factories['io.flow.payment.v0.unions.payment_source']()),
|
|
10212
|
-
public_key: factories['io.flow.payment.v0.models.public_key'](),
|
|
10213
|
-
method_types: arrayOf(() => factories['io.flow.reference.v0.enums.payment_method_type']()),
|
|
10214
|
-
method_rules: arrayOf(() => factories['io.flow.experience.v0.models.payment_method_rule']()),
|
|
10215
|
-
authorization_parameters: arrayOf(() => factories['io.flow.internal.v0.models.authorization_parameters']()),
|
|
10216
|
-
}),
|
|
10217
|
-
|
|
10218
|
-
'io.flow.internal.v0.models.checkout_payment_content': (): io.flow.internal.v0.models.CheckoutPaymentContent => ({
|
|
10219
|
-
'default': factories['io.flow.internal.v0.models.apm_content'](),
|
|
10220
|
-
paypal: factories['io.flow.internal.v0.models.apm_content'](),
|
|
10221
|
-
}),
|
|
10222
|
-
|
|
10223
|
-
'io.flow.internal.v0.models.checkout_platform_data': (): io.flow.internal.v0.models.CheckoutPlatformData => ({
|
|
10224
|
-
order_number: factories.string(),
|
|
10225
|
-
}),
|
|
10226
|
-
|
|
10227
|
-
'io.flow.internal.v0.models.checkout_redirect': (): io.flow.internal.v0.models.CheckoutRedirect => ({
|
|
10228
|
-
method: factories['io.flow.internal.v0.enums.checkout_redirect_method'](),
|
|
10229
|
-
url: factories.string(),
|
|
10230
|
-
body: factories.string(),
|
|
10231
|
-
}),
|
|
10232
|
-
|
|
10233
9986
|
'io.flow.internal.v0.models.checkout_settings': (): io.flow.internal.v0.models.CheckoutSettings => ({
|
|
10234
9987
|
session_persistence_timeout: factories['io.flow.common.v0.models.duration'](),
|
|
10235
9988
|
session_persistence_attribute_keys: arrayOf(() => factories.string()),
|
|
@@ -10567,99 +10320,6 @@ const factories = {
|
|
|
10567
10320
|
note: factories.string(),
|
|
10568
10321
|
}),
|
|
10569
10322
|
|
|
10570
|
-
'io.flow.internal.v0.models.consumer_optin_activity': (): io.flow.internal.v0.models.ConsumerOptinActivity => ({
|
|
10571
|
-
optin_attribute_key: factories.string(),
|
|
10572
|
-
optin_region: factories.string(),
|
|
10573
|
-
consent_granted: factories.boolean(),
|
|
10574
|
-
last_seen_at: factories.date_time_iso_8601(),
|
|
10575
|
-
last_acted_at: factories.date_time_iso_8601(),
|
|
10576
|
-
}),
|
|
10577
|
-
|
|
10578
|
-
'io.flow.internal.v0.models.content_label': (): io.flow.internal.v0.models.ContentLabel => ({
|
|
10579
|
-
discriminator: 'content_label',
|
|
10580
|
-
key: factories.string(),
|
|
10581
|
-
format: factories['io.flow.internal.v0.enums.format'](),
|
|
10582
|
-
value: factories.string(),
|
|
10583
|
-
}),
|
|
10584
|
-
|
|
10585
|
-
'io.flow.internal.v0.models.content_schema': (): io.flow.internal.v0.models.ContentSchema => ({
|
|
10586
|
-
key: factories.string(),
|
|
10587
|
-
description: factories.string(),
|
|
10588
|
-
elements: objectOf(() => factories['io.flow.internal.v0.models.content_schema_element']()),
|
|
10589
|
-
allow_multiple: factories.boolean(),
|
|
10590
|
-
}),
|
|
10591
|
-
|
|
10592
|
-
'io.flow.internal.v0.models.content_schema_element': (): io.flow.internal.v0.models.ContentSchemaElement => ({
|
|
10593
|
-
type: factories['io.flow.internal.v0.enums.content_element_type'](),
|
|
10594
|
-
description: factories.string(),
|
|
10595
|
-
example: factories.string(),
|
|
10596
|
-
required: factories.boolean(),
|
|
10597
|
-
validation: arrayOf(() => factories['io.flow.internal.v0.unions.validation_rule']()),
|
|
10598
|
-
}),
|
|
10599
|
-
|
|
10600
|
-
'io.flow.internal.v0.models.content_schema_form': (): io.flow.internal.v0.models.ContentSchemaForm => ({
|
|
10601
|
-
description: factories.string(),
|
|
10602
|
-
elements: objectOf(() => factories['io.flow.internal.v0.models.content_schema_element']()),
|
|
10603
|
-
allow_multiple: factories.boolean(),
|
|
10604
|
-
}),
|
|
10605
|
-
|
|
10606
|
-
'io.flow.internal.v0.models.content_schema_summary': (): io.flow.internal.v0.models.ContentSchemaSummary => ({
|
|
10607
|
-
key: factories.string(),
|
|
10608
|
-
description: factories.string(),
|
|
10609
|
-
}),
|
|
10610
|
-
|
|
10611
|
-
'io.flow.internal.v0.models.country_picker_country': (): io.flow.internal.v0.models.CountryPickerCountry => ({
|
|
10612
|
-
iso_3166_2: factories.string(),
|
|
10613
|
-
iso_3166_3: factories.string(),
|
|
10614
|
-
name: factories.string(),
|
|
10615
|
-
default_currency: factories.string(),
|
|
10616
|
-
}),
|
|
10617
|
-
|
|
10618
|
-
'io.flow.internal.v0.models.country_picker_country_data': (): io.flow.internal.v0.models.CountryPickerCountryData => ({
|
|
10619
|
-
country: factories.string(),
|
|
10620
|
-
|
|
10621
|
-
delivery_window: arrayOf(
|
|
10622
|
-
() => factories['io.flow.internal.v0.models.country_picker_delivery_window'](),
|
|
10623
|
-
),
|
|
10624
|
-
}),
|
|
10625
|
-
|
|
10626
|
-
'io.flow.internal.v0.models.country_picker_currency': (): io.flow.internal.v0.models.CountryPickerCurrency => ({
|
|
10627
|
-
iso_4217_3: factories.string(),
|
|
10628
|
-
name: factories.string(),
|
|
10629
|
-
}),
|
|
10630
|
-
|
|
10631
|
-
'io.flow.internal.v0.models.country_picker_data': (): io.flow.internal.v0.models.CountryPickerData => ({
|
|
10632
|
-
countries: arrayOf(() => factories['io.flow.internal.v0.models.country_picker_country']()),
|
|
10633
|
-
currencies: arrayOf(() => factories['io.flow.internal.v0.models.country_picker_currency']()),
|
|
10634
|
-
|
|
10635
|
-
experience_data: arrayOf(
|
|
10636
|
-
() => factories['io.flow.internal.v0.models.country_picker_experience_data'](),
|
|
10637
|
-
),
|
|
10638
|
-
|
|
10639
|
-
country_data: arrayOf(
|
|
10640
|
-
() => factories['io.flow.internal.v0.models.country_picker_country_data'](),
|
|
10641
|
-
),
|
|
10642
|
-
}),
|
|
10643
|
-
|
|
10644
|
-
'io.flow.internal.v0.models.country_picker_delivery_window': (): io.flow.internal.v0.models.CountryPickerDeliveryWindow => ({
|
|
10645
|
-
name: factories.string(),
|
|
10646
|
-
from: factories.date_time_iso_8601(),
|
|
10647
|
-
to: factories.date_time_iso_8601(),
|
|
10648
|
-
timezone: factories.string(),
|
|
10649
|
-
}),
|
|
10650
|
-
|
|
10651
|
-
'io.flow.internal.v0.models.country_picker_experience_data': (): io.flow.internal.v0.models.CountryPickerExperienceData => ({
|
|
10652
|
-
experience_key: factories.string(),
|
|
10653
|
-
|
|
10654
|
-
payment_methods: arrayOf(
|
|
10655
|
-
() => factories['io.flow.internal.v0.models.country_picker_payment_method'](),
|
|
10656
|
-
),
|
|
10657
|
-
}),
|
|
10658
|
-
|
|
10659
|
-
'io.flow.internal.v0.models.country_picker_payment_method': (): io.flow.internal.v0.models.CountryPickerPaymentMethod => ({
|
|
10660
|
-
id: factories.string(),
|
|
10661
|
-
}),
|
|
10662
|
-
|
|
10663
10323
|
'io.flow.internal.v0.models.courthouse_product_summary': (): io.flow.internal.v0.models.CourthouseProductSummary => ({
|
|
10664
10324
|
organization: factories['io.flow.common.v0.models.organization_summary'](),
|
|
10665
10325
|
product_id: factories.string(),
|
|
@@ -10724,6 +10384,8 @@ const factories = {
|
|
|
10724
10384
|
discount: factories['io.flow.internal.v0.models.other_record_discount'](),
|
|
10725
10385
|
net: factories.decimal(),
|
|
10726
10386
|
identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
|
|
10387
|
+
revenue_share_percentage: factories.decimal(),
|
|
10388
|
+
revenue_share_plan: factories.string(),
|
|
10727
10389
|
created_at: factories.date_time_iso_8601(),
|
|
10728
10390
|
updated_at: factories.date_time_iso_8601(),
|
|
10729
10391
|
posted_at: factories.date_time_iso_8601(),
|
|
@@ -10842,6 +10504,10 @@ const factories = {
|
|
|
10842
10504
|
daily_value: factories['io.flow.internal.v0.models.daily_value'](),
|
|
10843
10505
|
}),
|
|
10844
10506
|
|
|
10507
|
+
'io.flow.internal.v0.models.database': (): io.flow.internal.v0.models.Database => ({
|
|
10508
|
+
name: factories.string(),
|
|
10509
|
+
}),
|
|
10510
|
+
|
|
10845
10511
|
'io.flow.internal.v0.models.debug_accounting_transaction': (): io.flow.internal.v0.models.DebugAccountingTransaction => ({
|
|
10846
10512
|
type: factories['io.flow.internal.v0.enums.debug_accounting_transaction_type'](),
|
|
10847
10513
|
type_id: factories.string(),
|
|
@@ -11089,12 +10755,6 @@ const factories = {
|
|
|
11089
10755
|
pickup_name: factories.string(),
|
|
11090
10756
|
}),
|
|
11091
10757
|
|
|
11092
|
-
'io.flow.internal.v0.models.dict': (): io.flow.internal.v0.models.Dict => ({
|
|
11093
|
-
discriminator: 'dict',
|
|
11094
|
-
label: factories['io.flow.internal.v0.models.content_label'](),
|
|
11095
|
-
description: factories['io.flow.internal.v0.models.content_label'](),
|
|
11096
|
-
}),
|
|
11097
|
-
|
|
11098
10758
|
'io.flow.internal.v0.models.dimension_estimate_ops_input': (): io.flow.internal.v0.models.DimensionEstimateOpsInput => ({
|
|
11099
10759
|
organization_id: factories.string(),
|
|
11100
10760
|
length_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
@@ -11984,30 +11644,6 @@ const factories = {
|
|
|
11984
11644
|
description: factories.string(),
|
|
11985
11645
|
}),
|
|
11986
11646
|
|
|
11987
|
-
'io.flow.internal.v0.models.financial_reporting_statement': (): io.flow.internal.v0.models.FinancialReportingStatement => ({
|
|
11988
|
-
id: factories.string(),
|
|
11989
|
-
statement_number: factories.string(),
|
|
11990
|
-
status: factories['io.flow.internal.v0.enums.statement_status'](),
|
|
11991
|
-
transactions_start_date: factories.date_time_iso_8601(),
|
|
11992
|
-
transactions_end_date: factories.date_time_iso_8601(),
|
|
11993
|
-
processing_start_at: factories.date_time_iso_8601(),
|
|
11994
|
-
processing_end_at: factories.date_time_iso_8601(),
|
|
11995
|
-
organization_id: factories.string(),
|
|
11996
|
-
flow_entity_country_code: factories.string(),
|
|
11997
|
-
captures_url: factories.string(),
|
|
11998
|
-
missing_captures_url: factories.string(),
|
|
11999
|
-
refunds_url: factories.string(),
|
|
12000
|
-
missing_refunds_url: factories.string(),
|
|
12001
|
-
adjustments_url: factories.string(),
|
|
12002
|
-
}),
|
|
12003
|
-
|
|
12004
|
-
'io.flow.internal.v0.models.financial_reporting_statement_form': (): io.flow.internal.v0.models.FinancialReportingStatementForm => ({
|
|
12005
|
-
transactions_start_date: factories.date_time_iso_8601(),
|
|
12006
|
-
transactions_end_date: factories.date_time_iso_8601(),
|
|
12007
|
-
organization_id: factories.string(),
|
|
12008
|
-
flow_entity_country_code: factories.string(),
|
|
12009
|
-
}),
|
|
12010
|
-
|
|
12011
11647
|
'io.flow.internal.v0.models.fiserv_account': (): io.flow.internal.v0.models.FiservAccount => ({
|
|
12012
11648
|
discriminator: 'fiserv_account',
|
|
12013
11649
|
id: factories.string(),
|
|
@@ -12434,37 +12070,6 @@ const factories = {
|
|
|
12434
12070
|
ftp_file: factories['io.flow.ftp.v0.models.ftp_file'](),
|
|
12435
12071
|
}),
|
|
12436
12072
|
|
|
12437
|
-
'io.flow.internal.v0.models.ftp_setting': (): io.flow.internal.v0.models.FtpSetting => ({
|
|
12438
|
-
id: factories.string(),
|
|
12439
|
-
protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
|
|
12440
|
-
paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
|
|
12441
|
-
username: factories.string(),
|
|
12442
|
-
password: factories.string(),
|
|
12443
|
-
host: factories.string(),
|
|
12444
|
-
intents: arrayOf(() => factories['io.flow.internal.v0.enums.ftp_intent']()),
|
|
12445
|
-
}),
|
|
12446
|
-
|
|
12447
|
-
'io.flow.internal.v0.models.ftp_setting_form': (): io.flow.internal.v0.models.FtpSettingForm => ({
|
|
12448
|
-
protocol: factories['io.flow.internal.v0.enums.ftp_protocol'](),
|
|
12449
|
-
paths: factories['io.flow.internal.v0.models.ftp_settings_paths'](),
|
|
12450
|
-
username: factories.string(),
|
|
12451
|
-
password: factories.string(),
|
|
12452
|
-
host: factories.string(),
|
|
12453
|
-
intents: arrayOf(() => factories['io.flow.internal.v0.enums.ftp_intent']()),
|
|
12454
|
-
}),
|
|
12455
|
-
|
|
12456
|
-
'io.flow.internal.v0.models.ftp_setting_version': (): io.flow.internal.v0.models.FtpSettingVersion => ({
|
|
12457
|
-
id: factories.string(),
|
|
12458
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12459
|
-
type: factories['io.flow.common.v0.enums.change_type'](),
|
|
12460
|
-
ftp_setting: factories['io.flow.internal.v0.models.ftp_setting'](),
|
|
12461
|
-
}),
|
|
12462
|
-
|
|
12463
|
-
'io.flow.internal.v0.models.ftp_settings_paths': (): io.flow.internal.v0.models.FtpSettingsPaths => ({
|
|
12464
|
-
inbound: factories.string(),
|
|
12465
|
-
outbound: factories.string(),
|
|
12466
|
-
}),
|
|
12467
|
-
|
|
12468
12073
|
'io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form': (): io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm => ({
|
|
12469
12074
|
discriminator: 'fuel_surcharge_service_fee_amount_by_weight_put_form',
|
|
12470
12075
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
@@ -12894,12 +12499,6 @@ const factories = {
|
|
|
12894
12499
|
added_on: factories.date_time_iso_8601(),
|
|
12895
12500
|
}),
|
|
12896
12501
|
|
|
12897
|
-
'io.flow.internal.v0.models.href': (): io.flow.internal.v0.models.Href => ({
|
|
12898
|
-
discriminator: 'href',
|
|
12899
|
-
label: factories['io.flow.internal.v0.models.content_label'](),
|
|
12900
|
-
url: factories.string(),
|
|
12901
|
-
}),
|
|
12902
|
-
|
|
12903
12502
|
'io.flow.internal.v0.models.hs6': (): io.flow.internal.v0.models.Hs6 => ({
|
|
12904
12503
|
code: factories.string(),
|
|
12905
12504
|
description: factories.string(),
|
|
@@ -12927,10 +12526,6 @@ const factories = {
|
|
|
12927
12526
|
error: factories.string(),
|
|
12928
12527
|
}),
|
|
12929
12528
|
|
|
12930
|
-
'io.flow.internal.v0.models.install_form': (): io.flow.internal.v0.models.InstallForm => ({
|
|
12931
|
-
token: factories.string(),
|
|
12932
|
-
}),
|
|
12933
|
-
|
|
12934
12529
|
'io.flow.internal.v0.models.internal_adyen_authorization_details': (): io.flow.internal.v0.models.InternalAdyenAuthorizationDetails => ({
|
|
12935
12530
|
discriminator: 'internal_adyen_authorization_details',
|
|
12936
12531
|
adyen_authentication_data: factories['io.flow.internal.v0.models.adyen_authentication_data_reference'](),
|
|
@@ -13201,33 +12796,7 @@ const factories = {
|
|
|
13201
12796
|
created_at: factories.date_time_iso_8601(),
|
|
13202
12797
|
}),
|
|
13203
12798
|
|
|
13204
|
-
'io.flow.internal.v0.models.
|
|
13205
|
-
id: factories.string(),
|
|
13206
|
-
iin: factories.string(),
|
|
13207
|
-
name: factories.string(),
|
|
13208
|
-
country: factories.string(),
|
|
13209
|
-
brand: factories.string(),
|
|
13210
|
-
type: factories.string(),
|
|
13211
|
-
category: factories.string(),
|
|
13212
|
-
website: factories.string(),
|
|
13213
|
-
phone: factories.string(),
|
|
13214
|
-
}),
|
|
13215
|
-
|
|
13216
|
-
'io.flow.internal.v0.models.issuer_deleted': (): io.flow.internal.v0.models.IssuerDeleted => ({
|
|
13217
|
-
discriminator: 'issuer_deleted',
|
|
13218
|
-
event_id: factories.string(),
|
|
13219
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13220
|
-
issuer: factories['io.flow.internal.v0.models.issuer'](),
|
|
13221
|
-
}),
|
|
13222
|
-
|
|
13223
|
-
'io.flow.internal.v0.models.issuer_upserted': (): io.flow.internal.v0.models.IssuerUpserted => ({
|
|
13224
|
-
discriminator: 'issuer_upserted',
|
|
13225
|
-
event_id: factories.string(),
|
|
13226
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13227
|
-
issuer: factories['io.flow.internal.v0.models.issuer'](),
|
|
13228
|
-
}),
|
|
13229
|
-
|
|
13230
|
-
'io.flow.internal.v0.models.item_classification': (): io.flow.internal.v0.models.ItemClassification => ({
|
|
12799
|
+
'io.flow.internal.v0.models.item_classification': (): io.flow.internal.v0.models.ItemClassification => ({
|
|
13231
12800
|
id: factories.string(),
|
|
13232
12801
|
organization: factories.string(),
|
|
13233
12802
|
uid: factories.string(),
|
|
@@ -13331,6 +12900,7 @@ const factories = {
|
|
|
13331
12900
|
tariffs: objectOf(() => factories['io.flow.internal.v0.models.tariff_code_duty']()),
|
|
13332
12901
|
decision_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
|
|
13333
12902
|
classification_scope: factories['io.flow.internal.v0.enums.classification_scope'](),
|
|
12903
|
+
taxonomy_category_classification_alignment: factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'](),
|
|
13334
12904
|
created_at: factories.date_time_iso_8601(),
|
|
13335
12905
|
updated_at: factories.date_time_iso_8601(),
|
|
13336
12906
|
updated_by_user_id: factories.string(),
|
|
@@ -13453,6 +13023,21 @@ const factories = {
|
|
|
13453
13023
|
name: factories.string(),
|
|
13454
13024
|
}),
|
|
13455
13025
|
|
|
13026
|
+
'io.flow.internal.v0.models.journal': (): io.flow.internal.v0.models.Journal => ({
|
|
13027
|
+
name: factories.string(),
|
|
13028
|
+
queued: factories.integer(),
|
|
13029
|
+
failed: factories.integer(),
|
|
13030
|
+
}),
|
|
13031
|
+
|
|
13032
|
+
'io.flow.internal.v0.models.journal_failure': (): io.flow.internal.v0.models.JournalFailure => ({
|
|
13033
|
+
journal_id: factories.long(),
|
|
13034
|
+
operation: factories['io.flow.internal.v0.enums.journal_operation'](),
|
|
13035
|
+
created_at: factories.date_time_iso_8601(),
|
|
13036
|
+
failed_at: factories.date_time_iso_8601(),
|
|
13037
|
+
error: factories.string(),
|
|
13038
|
+
organization_id: factories.string(),
|
|
13039
|
+
}),
|
|
13040
|
+
|
|
13456
13041
|
'io.flow.internal.v0.models.key': (): io.flow.internal.v0.models.Key => ({
|
|
13457
13042
|
id: factories.string(),
|
|
13458
13043
|
created_at: factories.date_time_iso_8601(),
|
|
@@ -13767,11 +13352,6 @@ const factories = {
|
|
|
13767
13352
|
label_transaction: factories['io.flow.internal.v0.models.label_transaction'](),
|
|
13768
13353
|
}),
|
|
13769
13354
|
|
|
13770
|
-
'io.flow.internal.v0.models.labeled_content': (): io.flow.internal.v0.models.LabeledContent => ({
|
|
13771
|
-
label: factories['io.flow.internal.v0.models.content_label'](),
|
|
13772
|
-
contents: arrayOf(() => factories['io.flow.internal.v0.unions.content_item']()),
|
|
13773
|
-
}),
|
|
13774
|
-
|
|
13775
13355
|
'io.flow.internal.v0.models.labels_prediction': (): io.flow.internal.v0.models.LabelsPrediction => ({
|
|
13776
13356
|
main_material: factories.string(),
|
|
13777
13357
|
gender: factories.string(),
|
|
@@ -13902,75 +13482,6 @@ const factories = {
|
|
|
13902
13482
|
action_quantity: arrayOf(() => factories['io.flow.internal.v0.models.action_quantity']()),
|
|
13903
13483
|
}),
|
|
13904
13484
|
|
|
13905
|
-
'io.flow.internal.v0.models.load': (): io.flow.internal.v0.models.Load => ({
|
|
13906
|
-
discriminator: 'load',
|
|
13907
|
-
label: factories['io.flow.internal.v0.models.content_label'](),
|
|
13908
|
-
location: factories['io.flow.internal.v0.models.location'](),
|
|
13909
|
-
}),
|
|
13910
|
-
|
|
13911
|
-
'io.flow.internal.v0.models.localizable_content_reference': (): io.flow.internal.v0.models.LocalizableContentReference => ({
|
|
13912
|
-
discriminator: 'localizable_content_reference',
|
|
13913
|
-
content_id: factories.string(),
|
|
13914
|
-
}),
|
|
13915
|
-
|
|
13916
|
-
'io.flow.internal.v0.models.localization': (): io.flow.internal.v0.models.Localization => ({
|
|
13917
|
-
discriminator: 'localization',
|
|
13918
|
-
id: factories.string(),
|
|
13919
|
-
content_id: factories.string(),
|
|
13920
|
-
locale: factories.string(),
|
|
13921
|
-
status: factories['io.flow.internal.v0.enums.content_status'](),
|
|
13922
|
-
elements: objectOf(() => factories['io.flow.internal.v0.models.localized_content_element']()),
|
|
13923
|
-
}),
|
|
13924
|
-
|
|
13925
|
-
'io.flow.internal.v0.models.localization_form': (): io.flow.internal.v0.models.LocalizationForm => ({
|
|
13926
|
-
locale: factories.string(),
|
|
13927
|
-
status: factories['io.flow.internal.v0.enums.content_status'](),
|
|
13928
|
-
elements: objectOf(() => factories['io.flow.internal.v0.models.localized_content_element']()),
|
|
13929
|
-
}),
|
|
13930
|
-
|
|
13931
|
-
'io.flow.internal.v0.models.localization_ref': (): io.flow.internal.v0.models.LocalizationRef => ({
|
|
13932
|
-
id: factories.string(),
|
|
13933
|
-
locale: factories.string(),
|
|
13934
|
-
status: factories['io.flow.internal.v0.enums.content_status'](),
|
|
13935
|
-
}),
|
|
13936
|
-
|
|
13937
|
-
'io.flow.internal.v0.models.localization_upserted': (): io.flow.internal.v0.models.LocalizationUpserted => ({
|
|
13938
|
-
discriminator: 'localization_upserted',
|
|
13939
|
-
event_id: factories.string(),
|
|
13940
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13941
|
-
localization_id: factories.string(),
|
|
13942
|
-
locale: factories.string(),
|
|
13943
|
-
status: factories['io.flow.internal.v0.enums.content_status'](),
|
|
13944
|
-
}),
|
|
13945
|
-
|
|
13946
|
-
'io.flow.internal.v0.models.localized_content': (): io.flow.internal.v0.models.LocalizedContent => ({
|
|
13947
|
-
id: factories.string(),
|
|
13948
|
-
schema_key: factories.string(),
|
|
13949
|
-
status: factories['io.flow.internal.v0.enums.content_status'](),
|
|
13950
|
-
source: factories['io.flow.internal.v0.models.localization'](),
|
|
13951
|
-
localizations: arrayOf(() => factories['io.flow.internal.v0.models.localization_ref']()),
|
|
13952
|
-
}),
|
|
13953
|
-
|
|
13954
|
-
'io.flow.internal.v0.models.localized_content_element': (): io.flow.internal.v0.models.LocalizedContentElement => ({
|
|
13955
|
-
value: factories.string(),
|
|
13956
|
-
type: factories['io.flow.internal.v0.enums.content_element_type'](),
|
|
13957
|
-
}),
|
|
13958
|
-
|
|
13959
|
-
'io.flow.internal.v0.models.localized_content_form': (): io.flow.internal.v0.models.LocalizedContentForm => ({
|
|
13960
|
-
schema_key: factories.string(),
|
|
13961
|
-
status: factories['io.flow.internal.v0.enums.content_status'](),
|
|
13962
|
-
source: factories['io.flow.internal.v0.models.localization_form'](),
|
|
13963
|
-
}),
|
|
13964
|
-
|
|
13965
|
-
'io.flow.internal.v0.models.localized_content_upserted': (): io.flow.internal.v0.models.LocalizedContentUpserted => ({
|
|
13966
|
-
discriminator: 'localized_content_upserted',
|
|
13967
|
-
event_id: factories.string(),
|
|
13968
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13969
|
-
content_id: factories.string(),
|
|
13970
|
-
schema_key: factories.string(),
|
|
13971
|
-
source_localization_id: factories.string(),
|
|
13972
|
-
}),
|
|
13973
|
-
|
|
13974
13485
|
'io.flow.internal.v0.models.localized_item_prices_export_request': (): io.flow.internal.v0.models.LocalizedItemPricesExportRequest => ({
|
|
13975
13486
|
discriminator: 'localized_item_prices_export_request',
|
|
13976
13487
|
event_id: factories.string(),
|
|
@@ -13998,11 +13509,6 @@ const factories = {
|
|
|
13998
13509
|
price_end_date: factories.date_time_iso_8601(),
|
|
13999
13510
|
}),
|
|
14000
13511
|
|
|
14001
|
-
'io.flow.internal.v0.models.location': (): io.flow.internal.v0.models.Location => ({
|
|
14002
|
-
type: factories['io.flow.internal.v0.enums.content_type'](),
|
|
14003
|
-
url: factories.string(),
|
|
14004
|
-
}),
|
|
14005
|
-
|
|
14006
13512
|
'io.flow.internal.v0.models.logistics_capabilities': (): io.flow.internal.v0.models.LogisticsCapabilities => ({
|
|
14007
13513
|
id: factories.string(),
|
|
14008
13514
|
capabilities: arrayOf(() => factories['io.flow.internal.v0.enums.logistics_capability']()),
|
|
@@ -14048,10 +13554,6 @@ const factories = {
|
|
|
14048
13554
|
external_reference_number: factories.string(),
|
|
14049
13555
|
}),
|
|
14050
13556
|
|
|
14051
|
-
'io.flow.internal.v0.models.logo': (): io.flow.internal.v0.models.Logo => ({
|
|
14052
|
-
url: factories.string(),
|
|
14053
|
-
}),
|
|
14054
|
-
|
|
14055
13557
|
'io.flow.internal.v0.models.lost_chargeback': (): io.flow.internal.v0.models.LostChargeback => ({
|
|
14056
13558
|
id: factories.string(),
|
|
14057
13559
|
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
@@ -14077,10 +13579,6 @@ const factories = {
|
|
|
14077
13579
|
applied: arrayOf(() => factories['io.flow.internal.v0.models.loyalty_program_reward']()),
|
|
14078
13580
|
}),
|
|
14079
13581
|
|
|
14080
|
-
'io.flow.internal.v0.models.magento_install_form': (): io.flow.internal.v0.models.MagentoInstallForm => ({
|
|
14081
|
-
token: factories.string(),
|
|
14082
|
-
}),
|
|
14083
|
-
|
|
14084
13582
|
'io.flow.internal.v0.models.main_transaction': (): io.flow.internal.v0.models.MainTransaction => ({
|
|
14085
13583
|
id: factories.string(),
|
|
14086
13584
|
account: factories['io.flow.billing.v0.models.account_reference'](),
|
|
@@ -14518,59 +14016,6 @@ const factories = {
|
|
|
14518
14016
|
expires_at: factories.date_time_iso_8601(),
|
|
14519
14017
|
}),
|
|
14520
14018
|
|
|
14521
|
-
'io.flow.internal.v0.models.optin_attribute': (): io.flow.internal.v0.models.OptinAttribute => ({
|
|
14522
|
-
name: factories.string(),
|
|
14523
|
-
optin_attribute_key: factories.string(),
|
|
14524
|
-
target: factories['io.flow.internal.v0.enums.prompt_target'](),
|
|
14525
|
-
status: factories['io.flow.internal.v0.enums.content_status'](),
|
|
14526
|
-
created_at: factories.date_time_iso_8601(),
|
|
14527
|
-
updated_at: factories.date_time_iso_8601(),
|
|
14528
|
-
}),
|
|
14529
|
-
|
|
14530
|
-
'io.flow.internal.v0.models.optin_attribute_form': (): io.flow.internal.v0.models.OptinAttributeForm => ({
|
|
14531
|
-
name: factories.string(),
|
|
14532
|
-
optin_attribute_key: factories.string(),
|
|
14533
|
-
target: factories['io.flow.internal.v0.enums.prompt_target'](),
|
|
14534
|
-
status: factories['io.flow.internal.v0.enums.content_status'](),
|
|
14535
|
-
}),
|
|
14536
|
-
|
|
14537
|
-
'io.flow.internal.v0.models.optin_prompt': (): io.flow.internal.v0.models.OptinPrompt => ({
|
|
14538
|
-
id: factories.string(),
|
|
14539
|
-
optin_attribute: factories['io.flow.internal.v0.models.optin_attribute'](),
|
|
14540
|
-
region: factories.string(),
|
|
14541
|
-
options: arrayOf(() => factories['io.flow.internal.v0.enums.prompt_options']()),
|
|
14542
|
-
content: factories['io.flow.internal.v0.unions.localizable_content'](),
|
|
14543
|
-
position: factories.long(),
|
|
14544
|
-
enforce_on: factories.date_time_iso_8601(),
|
|
14545
|
-
display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
|
|
14546
|
-
}),
|
|
14547
|
-
|
|
14548
|
-
'io.flow.internal.v0.models.optin_prompt_checkout_display': (): io.flow.internal.v0.models.OptinPromptCheckoutDisplay => ({
|
|
14549
|
-
discriminator: 'optin_prompt_checkout_display',
|
|
14550
|
-
display_position: factories['io.flow.internal.v0.enums.prompt_checkout_display_position'](),
|
|
14551
|
-
}),
|
|
14552
|
-
|
|
14553
|
-
'io.flow.internal.v0.models.optin_prompt_copy': (): io.flow.internal.v0.models.OptinPromptCopy => ({
|
|
14554
|
-
from: factories.string(),
|
|
14555
|
-
to: factories.string(),
|
|
14556
|
-
number_prompts: factories.long(),
|
|
14557
|
-
}),
|
|
14558
|
-
|
|
14559
|
-
'io.flow.internal.v0.models.optin_prompt_copy_form': (): io.flow.internal.v0.models.OptinPromptCopyForm => ({
|
|
14560
|
-
from: factories.string(),
|
|
14561
|
-
to: factories.string(),
|
|
14562
|
-
}),
|
|
14563
|
-
|
|
14564
|
-
'io.flow.internal.v0.models.optin_prompt_form': (): io.flow.internal.v0.models.OptinPromptForm => ({
|
|
14565
|
-
optin_attribute_key: factories.string(),
|
|
14566
|
-
region: factories.string(),
|
|
14567
|
-
options: arrayOf(() => factories['io.flow.internal.v0.enums.prompt_options']()),
|
|
14568
|
-
content: factories['io.flow.internal.v0.models.localization_form'](),
|
|
14569
|
-
position: factories.integer(),
|
|
14570
|
-
enforce_on: factories.date_time_iso_8601(),
|
|
14571
|
-
display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
|
|
14572
|
-
}),
|
|
14573
|
-
|
|
14574
14019
|
'io.flow.internal.v0.models.order_actionability': (): io.flow.internal.v0.models.OrderActionability => ({
|
|
14575
14020
|
action: arrayOf(() => factories['io.flow.internal.v0.enums.order_action']()),
|
|
14576
14021
|
lines: arrayOf(() => factories['io.flow.internal.v0.models.line_action_quantities']()),
|
|
@@ -14782,10 +14227,6 @@ const factories = {
|
|
|
14782
14227
|
to_service_id: factories.string(),
|
|
14783
14228
|
}),
|
|
14784
14229
|
|
|
14785
|
-
'io.flow.internal.v0.models.order_submission_form': (): io.flow.internal.v0.models.OrderSubmissionForm => ({
|
|
14786
|
-
authorization: factories['io.flow.payment.v0.unions.authorization_form'](),
|
|
14787
|
-
}),
|
|
14788
|
-
|
|
14789
14230
|
'io.flow.internal.v0.models.order_summary': (): io.flow.internal.v0.models.OrderSummary => ({
|
|
14790
14231
|
id: factories.string(),
|
|
14791
14232
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
@@ -15335,6 +14776,8 @@ const factories = {
|
|
|
15335
14776
|
discount: factories['io.flow.internal.v0.models.other_record_discount'](),
|
|
15336
14777
|
net: factories.decimal(),
|
|
15337
14778
|
identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
|
|
14779
|
+
revenue_share_percentage: factories.decimal(),
|
|
14780
|
+
revenue_share_plan: factories.string(),
|
|
15338
14781
|
created_at: factories.date_time_iso_8601(),
|
|
15339
14782
|
updated_at: factories.date_time_iso_8601(),
|
|
15340
14783
|
posted_at: factories.date_time_iso_8601(),
|
|
@@ -15613,6 +15056,11 @@ const factories = {
|
|
|
15613
15056
|
tribe: factories['io.flow.internal.v0.models.tribe'](),
|
|
15614
15057
|
}),
|
|
15615
15058
|
|
|
15059
|
+
'io.flow.internal.v0.models.payment_is': (): io.flow.internal.v0.models.PaymentIs => ({
|
|
15060
|
+
lvg: factories.boolean(),
|
|
15061
|
+
manual: factories.boolean(),
|
|
15062
|
+
}),
|
|
15063
|
+
|
|
15616
15064
|
'io.flow.internal.v0.models.payment_method_detail': (): io.flow.internal.v0.models.PaymentMethodDetail => ({
|
|
15617
15065
|
method: factories['io.flow.reference.v0.models.payment_method'](),
|
|
15618
15066
|
method_options: arrayOf(() => factories['io.flow.internal.v0.models.payment_method_option']()),
|
|
@@ -16330,12 +15778,33 @@ const factories = {
|
|
|
16330
15778
|
rule_ids: arrayOf(() => factories.string()),
|
|
16331
15779
|
}),
|
|
16332
15780
|
|
|
15781
|
+
'io.flow.internal.v0.models.product_sellability_internal_form': (): io.flow.internal.v0.models.ProductSellabilityInternalForm => ({
|
|
15782
|
+
name: factories.string(),
|
|
15783
|
+
price: factories['io.flow.common.v0.models.money'](),
|
|
15784
|
+
description: factories.string(),
|
|
15785
|
+
hs6_code: factories.string(),
|
|
15786
|
+
categories: arrayOf(() => factories.string()),
|
|
15787
|
+
}),
|
|
15788
|
+
|
|
15789
|
+
'io.flow.internal.v0.models.product_sellability_internal_result': (): io.flow.internal.v0.models.ProductSellabilityInternalResult => ({
|
|
15790
|
+
restricted_regions: arrayOf(
|
|
15791
|
+
() => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
|
|
15792
|
+
),
|
|
15793
|
+
|
|
15794
|
+
rule_ids: arrayOf(() => factories.string()),
|
|
15795
|
+
}),
|
|
15796
|
+
|
|
16333
15797
|
'io.flow.internal.v0.models.product_sellability_result': (): io.flow.internal.v0.models.ProductSellabilityResult => ({
|
|
16334
15798
|
shop_id: factories.string(),
|
|
16335
15799
|
product_number: factories.string(),
|
|
16336
15800
|
request_id: factories.string(),
|
|
16337
15801
|
hs6_code: factories.string(),
|
|
16338
15802
|
restricted_regions: arrayOf(() => factories.string()),
|
|
15803
|
+
|
|
15804
|
+
restricted_regions_by_type: arrayOf(
|
|
15805
|
+
() => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
|
|
15806
|
+
),
|
|
15807
|
+
|
|
16339
15808
|
rule_ids: arrayOf(() => factories.string()),
|
|
16340
15809
|
}),
|
|
16341
15810
|
|
|
@@ -16803,21 +16272,6 @@ const factories = {
|
|
|
16803
16272
|
summaries: arrayOf(() => factories['io.flow.internal.v0.models.rate_name_summary']()),
|
|
16804
16273
|
}),
|
|
16805
16274
|
|
|
16806
|
-
'io.flow.internal.v0.models.rebound_configuration': (): io.flow.internal.v0.models.ReboundConfiguration => ({
|
|
16807
|
-
id: factories.string(),
|
|
16808
|
-
login: factories.string(),
|
|
16809
|
-
api_key: factories.string(),
|
|
16810
|
-
status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
|
|
16811
|
-
orders_since_submitted_at: factories.date_time_iso_8601(),
|
|
16812
|
-
}),
|
|
16813
|
-
|
|
16814
|
-
'io.flow.internal.v0.models.rebound_configuration_form': (): io.flow.internal.v0.models.ReboundConfigurationForm => ({
|
|
16815
|
-
login: factories.string(),
|
|
16816
|
-
api_key: factories.string(),
|
|
16817
|
-
status: factories['io.flow.internal.v0.enums.rebound_configuration_status'](),
|
|
16818
|
-
orders_since_submitted_at: factories.date_time_iso_8601(),
|
|
16819
|
-
}),
|
|
16820
|
-
|
|
16821
16275
|
'io.flow.internal.v0.models.record_reference': (): io.flow.internal.v0.models.RecordReference => ({
|
|
16822
16276
|
id: factories.string(),
|
|
16823
16277
|
}),
|
|
@@ -17016,6 +16470,12 @@ const factories = {
|
|
|
17016
16470
|
refund_records: arrayOf(() => factories.object()),
|
|
17017
16471
|
}),
|
|
17018
16472
|
|
|
16473
|
+
'io.flow.internal.v0.models.reporting_fees': (): io.flow.internal.v0.models.ReportingFees => ({
|
|
16474
|
+
mor: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16475
|
+
fx: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16476
|
+
sp: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16477
|
+
}),
|
|
16478
|
+
|
|
17019
16479
|
'io.flow.internal.v0.models.reporting_fulfillment': (): io.flow.internal.v0.models.ReportingFulfillment => ({
|
|
17020
16480
|
id: factories.string(),
|
|
17021
16481
|
sequence_number: factories.long(),
|
|
@@ -17192,6 +16652,15 @@ const factories = {
|
|
|
17192
16652
|
placeholder: factories.boolean(),
|
|
17193
16653
|
}),
|
|
17194
16654
|
|
|
16655
|
+
'io.flow.internal.v0.models.restriction_blanket_organization_exemption': (): io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption => ({
|
|
16656
|
+
id: factories.string(),
|
|
16657
|
+
organization_id: factories.string(),
|
|
16658
|
+
description: factories.string(),
|
|
16659
|
+
is_all_rules_exempt: factories.boolean(),
|
|
16660
|
+
exempt_regions: arrayOf(() => factories.string()),
|
|
16661
|
+
excluded_rules: arrayOf(() => factories.string()),
|
|
16662
|
+
}),
|
|
16663
|
+
|
|
17195
16664
|
'io.flow.internal.v0.models.restriction_category': (): io.flow.internal.v0.models.RestrictionCategory => ({
|
|
17196
16665
|
category: factories.string(),
|
|
17197
16666
|
}),
|
|
@@ -17242,6 +16711,7 @@ const factories = {
|
|
|
17242
16711
|
statuses: arrayOf(() => factories['io.flow.internal.v0.enums.restriction_status']()),
|
|
17243
16712
|
rule_ids: arrayOf(() => factories.string()),
|
|
17244
16713
|
user_ids: arrayOf(() => factories.string()),
|
|
16714
|
+
exclude_items_with_pc: factories.boolean(),
|
|
17245
16715
|
category: factories.string(),
|
|
17246
16716
|
product_name_query: factories.string(),
|
|
17247
16717
|
hs6: factories.string(),
|
|
@@ -17360,6 +16830,8 @@ const factories = {
|
|
|
17360
16830
|
reviews: arrayOf(() => factories['io.flow.internal.v0.models.restriction_item_review']()),
|
|
17361
16831
|
created_at: factories.date_time_iso_8601(),
|
|
17362
16832
|
updated_at: factories.date_time_iso_8601(),
|
|
16833
|
+
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
16834
|
+
taxonomy_data: arrayOf(() => factories['io.flow.product.v0.models.product_taxonomy_data']()),
|
|
17363
16835
|
}),
|
|
17364
16836
|
|
|
17365
16837
|
'io.flow.internal.v0.models.restriction_product_decision_form': (): io.flow.internal.v0.models.RestrictionProductDecisionForm => ({
|
|
@@ -17402,6 +16874,12 @@ const factories = {
|
|
|
17402
16874
|
auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
|
|
17403
16875
|
source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
|
|
17404
16876
|
sellability_positive_keywords: arrayOf(() => factories.string()),
|
|
16877
|
+
|
|
16878
|
+
community_exemption: arrayOf(
|
|
16879
|
+
() => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](),
|
|
16880
|
+
),
|
|
16881
|
+
|
|
16882
|
+
reason_code: factories.string(),
|
|
17405
16883
|
}),
|
|
17406
16884
|
|
|
17407
16885
|
'io.flow.internal.v0.models.restriction_rule_decision_form': (): io.flow.internal.v0.models.RestrictionRuleDecisionForm => ({
|
|
@@ -17457,6 +16935,12 @@ const factories = {
|
|
|
17457
16935
|
auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
|
|
17458
16936
|
source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
|
|
17459
16937
|
sellability_positive_keywords: arrayOf(() => factories.string()),
|
|
16938
|
+
|
|
16939
|
+
community_exemption: arrayOf(
|
|
16940
|
+
() => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](),
|
|
16941
|
+
),
|
|
16942
|
+
|
|
16943
|
+
reason_code: factories.string(),
|
|
17460
16944
|
}),
|
|
17461
16945
|
|
|
17462
16946
|
'io.flow.internal.v0.models.restriction_rule_lane_exemption': (): io.flow.internal.v0.models.RestrictionRuleLaneExemption => ({
|
|
@@ -17473,9 +16957,13 @@ const factories = {
|
|
|
17473
16957
|
rule_id: factories.string(),
|
|
17474
16958
|
description: factories.string(),
|
|
17475
16959
|
is_rule_exempt: factories.boolean(),
|
|
17476
|
-
|
|
16960
|
+
exempt_regions: arrayOf(() => factories.string()),
|
|
17477
16961
|
ignored_keywords: arrayOf(() => factories.string()),
|
|
17478
16962
|
additional_keywords: arrayOf(() => factories.string()),
|
|
16963
|
+
|
|
16964
|
+
community_exemption_override: arrayOf(
|
|
16965
|
+
() => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](),
|
|
16966
|
+
),
|
|
17479
16967
|
}),
|
|
17480
16968
|
|
|
17481
16969
|
'io.flow.internal.v0.models.restriction_rule_override': (): io.flow.internal.v0.models.RestrictionRuleOverride => ({
|
|
@@ -17511,8 +16999,14 @@ const factories = {
|
|
|
17511
16999
|
num_products_setup_complete_with_pvs: factories.decimal(),
|
|
17512
17000
|
num_orgs_transacting_with_pvs: factories.decimal(),
|
|
17513
17001
|
num_products_transacting_with_pvs: factories.decimal(),
|
|
17002
|
+
num_orgs_setup_complete_with_pcs: factories.decimal(),
|
|
17003
|
+
num_products_setup_complete_with_pcs: factories.decimal(),
|
|
17004
|
+
num_orgs_transacting_with_pcs: factories.decimal(),
|
|
17005
|
+
num_products_transacting_with_pcs: factories.decimal(),
|
|
17514
17006
|
oldest_pv_product_date_setup_complete: factories.date_iso_8601(),
|
|
17515
17007
|
oldest_pv_product_date_transacting: factories.date_iso_8601(),
|
|
17008
|
+
oldest_pc_product_date_setup_complete: factories.date_iso_8601(),
|
|
17009
|
+
oldest_pc_product_date_transacting: factories.date_iso_8601(),
|
|
17516
17010
|
num_orgs_setup_complete_prs: factories.decimal(),
|
|
17517
17011
|
num_products_setup_complete_prs: factories.decimal(),
|
|
17518
17012
|
num_orgs_transacting_prs: factories.decimal(),
|
|
@@ -17703,6 +17197,20 @@ const factories = {
|
|
|
17703
17197
|
processor: factories['io.flow.internal.v0.enums.processor'](),
|
|
17704
17198
|
}),
|
|
17705
17199
|
|
|
17200
|
+
'io.flow.internal.v0.models.sales_payment_record': (): io.flow.internal.v0.models.SalesPaymentRecord => ({
|
|
17201
|
+
id: factories.string(),
|
|
17202
|
+
organization: factories['io.flow.internal.v0.models.reporting_organization_summary'](),
|
|
17203
|
+
order: factories['io.flow.internal.v0.models.reporting_order_summary'](),
|
|
17204
|
+
order_total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
17205
|
+
shopper_breakdown: factories['io.flow.internal.v0.models.shopper_breakdown'](),
|
|
17206
|
+
payment: factories['io.flow.internal.v0.models.reporting_payment'](),
|
|
17207
|
+
fees: factories['io.flow.internal.v0.models.reporting_fees'](),
|
|
17208
|
+
conversion_rate: factories['io.flow.internal.v0.models.reporting_conversion_rates'](),
|
|
17209
|
+
payment_is: factories['io.flow.internal.v0.models.payment_is'](),
|
|
17210
|
+
destination_country: factories.string(),
|
|
17211
|
+
fulfilled_at: factories.date_time_iso_8601(),
|
|
17212
|
+
}),
|
|
17213
|
+
|
|
17706
17214
|
'io.flow.internal.v0.models.sandbox_setup': (): io.flow.internal.v0.models.SandboxSetup => ({
|
|
17707
17215
|
requested_by: factories.string(),
|
|
17708
17216
|
}),
|
|
@@ -17711,6 +17219,23 @@ const factories = {
|
|
|
17711
17219
|
requested_by: factories.string(),
|
|
17712
17220
|
}),
|
|
17713
17221
|
|
|
17222
|
+
'io.flow.internal.v0.models.sarvesh_item': (): io.flow.internal.v0.models.SarveshItem => ({
|
|
17223
|
+
id: factories.string(),
|
|
17224
|
+
number: factories.string(),
|
|
17225
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
17226
|
+
description: factories.string(),
|
|
17227
|
+
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
17228
|
+
added_on: factories.date_time_iso_8601(),
|
|
17229
|
+
}),
|
|
17230
|
+
|
|
17231
|
+
'io.flow.internal.v0.models.sarvesh_item_form': (): io.flow.internal.v0.models.SarveshItemForm => ({
|
|
17232
|
+
number: factories.string(),
|
|
17233
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
17234
|
+
description: factories.string(),
|
|
17235
|
+
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
17236
|
+
added_on: factories.date_time_iso_8601(),
|
|
17237
|
+
}),
|
|
17238
|
+
|
|
17714
17239
|
'io.flow.internal.v0.models.scheduled_payment': (): io.flow.internal.v0.models.ScheduledPayment => ({
|
|
17715
17240
|
payment: factories['io.flow.internal.v0.models.report_payment'](),
|
|
17716
17241
|
bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
|
|
@@ -17855,25 +17380,6 @@ const factories = {
|
|
|
17855
17380
|
customer_price: factories.decimal(),
|
|
17856
17381
|
}),
|
|
17857
17382
|
|
|
17858
|
-
'io.flow.internal.v0.models.shop': (): io.flow.internal.v0.models.Shop => ({
|
|
17859
|
-
id: factories.string(),
|
|
17860
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
17861
|
-
myshopify_domain: factories.string(),
|
|
17862
|
-
domain: factories.string(),
|
|
17863
|
-
}),
|
|
17864
|
-
|
|
17865
|
-
'io.flow.internal.v0.models.shop_form': (): io.flow.internal.v0.models.ShopForm => ({
|
|
17866
|
-
organization_id: factories.string(),
|
|
17867
|
-
token: factories.string(),
|
|
17868
|
-
}),
|
|
17869
|
-
|
|
17870
|
-
'io.flow.internal.v0.models.shop_version': (): io.flow.internal.v0.models.ShopVersion => ({
|
|
17871
|
-
id: factories.string(),
|
|
17872
|
-
timestamp: factories.date_time_iso_8601(),
|
|
17873
|
-
type: factories['io.flow.common.v0.enums.change_type'](),
|
|
17874
|
-
shop: factories['io.flow.internal.v0.models.shop'](),
|
|
17875
|
-
}),
|
|
17876
|
-
|
|
17877
17383
|
'io.flow.internal.v0.models.shopify_catalog_publication': (): io.flow.internal.v0.models.ShopifyCatalogPublication => ({
|
|
17878
17384
|
owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
|
|
17879
17385
|
}),
|
|
@@ -17887,16 +17393,6 @@ const factories = {
|
|
|
17887
17393
|
service: factories['io.flow.internal.v0.enums.shopify_service'](),
|
|
17888
17394
|
}),
|
|
17889
17395
|
|
|
17890
|
-
'io.flow.internal.v0.models.shopify_check_inventory_error': (): io.flow.internal.v0.models.ShopifyCheckInventoryError => ({
|
|
17891
|
-
code: factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code'](),
|
|
17892
|
-
messages: arrayOf(() => factories.string()),
|
|
17893
|
-
numbers: arrayOf(() => factories.string()),
|
|
17894
|
-
}),
|
|
17895
|
-
|
|
17896
|
-
'io.flow.internal.v0.models.shopify_code_form': (): io.flow.internal.v0.models.ShopifyCodeForm => ({
|
|
17897
|
-
code: factories.string(),
|
|
17898
|
-
}),
|
|
17899
|
-
|
|
17900
17396
|
'io.flow.internal.v0.models.shopify_dispute': (): io.flow.internal.v0.models.ShopifyDispute => ({
|
|
17901
17397
|
id: factories.string(),
|
|
17902
17398
|
organization_id: factories.string(),
|
|
@@ -17927,74 +17423,31 @@ const factories = {
|
|
|
17927
17423
|
dispute: factories['io.flow.internal.v0.models.shopify_dispute'](),
|
|
17928
17424
|
}),
|
|
17929
17425
|
|
|
17930
|
-
'io.flow.internal.v0.models.
|
|
17426
|
+
'io.flow.internal.v0.models.shopify_hs10_code': (): io.flow.internal.v0.models.ShopifyHs10Code => ({
|
|
17427
|
+
country_code: factories.string(),
|
|
17428
|
+
code: factories.string(),
|
|
17429
|
+
}),
|
|
17430
|
+
|
|
17431
|
+
'io.flow.internal.v0.models.shopify_hs10_codes': (): io.flow.internal.v0.models.ShopifyHs10Codes => ({
|
|
17931
17432
|
id: factories.string(),
|
|
17932
|
-
|
|
17933
|
-
|
|
17433
|
+
item_number: factories.string(),
|
|
17434
|
+
codes: arrayOf(() => factories['io.flow.internal.v0.models.shopify_hs10_code']()),
|
|
17934
17435
|
}),
|
|
17935
17436
|
|
|
17936
|
-
'io.flow.internal.v0.models.
|
|
17937
|
-
discriminator: '
|
|
17437
|
+
'io.flow.internal.v0.models.shopify_hs10_codes_deleted': (): io.flow.internal.v0.models.ShopifyHs10CodesDeleted => ({
|
|
17438
|
+
discriminator: 'shopify_hs10_codes_deleted',
|
|
17938
17439
|
event_id: factories.string(),
|
|
17939
17440
|
timestamp: factories.date_time_iso_8601(),
|
|
17940
17441
|
organization: factories.string(),
|
|
17941
|
-
|
|
17442
|
+
id: factories.string(),
|
|
17942
17443
|
}),
|
|
17943
17444
|
|
|
17944
|
-
'io.flow.internal.v0.models.
|
|
17945
|
-
discriminator: '
|
|
17445
|
+
'io.flow.internal.v0.models.shopify_hs10_codes_upserted': (): io.flow.internal.v0.models.ShopifyHs10CodesUpserted => ({
|
|
17446
|
+
discriminator: 'shopify_hs10_codes_upserted',
|
|
17946
17447
|
event_id: factories.string(),
|
|
17947
17448
|
timestamp: factories.date_time_iso_8601(),
|
|
17948
17449
|
organization: factories.string(),
|
|
17949
|
-
|
|
17950
|
-
}),
|
|
17951
|
-
|
|
17952
|
-
'io.flow.internal.v0.models.shopify_gift_card_balance': (): io.flow.internal.v0.models.ShopifyGiftCardBalance => ({
|
|
17953
|
-
gift_card_id: factories.long(),
|
|
17954
|
-
last_characters: factories.string(),
|
|
17955
|
-
amount: factories.decimal(),
|
|
17956
|
-
currency: factories.string(),
|
|
17957
|
-
}),
|
|
17958
|
-
|
|
17959
|
-
'io.flow.internal.v0.models.shopify_gift_card_balance_form': (): io.flow.internal.v0.models.ShopifyGiftCardBalanceForm => ({
|
|
17960
|
-
number: factories.string(),
|
|
17961
|
-
}),
|
|
17962
|
-
|
|
17963
|
-
'io.flow.internal.v0.models.shopify_gift_card_payment_form': (): io.flow.internal.v0.models.ShopifyGiftCardPaymentForm => ({
|
|
17964
|
-
code: factories.string(),
|
|
17965
|
-
customer_id: factories.long(),
|
|
17966
|
-
}),
|
|
17967
|
-
|
|
17968
|
-
'io.flow.internal.v0.models.shopify_gift_card_redemption': (): io.flow.internal.v0.models.ShopifyGiftCardRedemption => ({
|
|
17969
|
-
adjustment_id: factories.long(),
|
|
17970
|
-
gift_card_id: factories.long(),
|
|
17971
|
-
last_characters: factories.string(),
|
|
17972
|
-
amount: factories.decimal(),
|
|
17973
|
-
currency: factories.string(),
|
|
17974
|
-
}),
|
|
17975
|
-
|
|
17976
|
-
'io.flow.internal.v0.models.shopify_gift_card_redemption_form': (): io.flow.internal.v0.models.ShopifyGiftCardRedemptionForm => ({
|
|
17977
|
-
number: factories.string(),
|
|
17978
|
-
amount: factories.decimal(),
|
|
17979
|
-
currency: factories.string(),
|
|
17980
|
-
}),
|
|
17981
|
-
|
|
17982
|
-
'io.flow.internal.v0.models.shopify_gift_card_reversal': (): io.flow.internal.v0.models.ShopifyGiftCardReversal => ({
|
|
17983
|
-
adjustment_id: factories.long(),
|
|
17984
|
-
gift_card_id: factories.long(),
|
|
17985
|
-
last_characters: factories.string(),
|
|
17986
|
-
amount: factories.decimal(),
|
|
17987
|
-
currency: factories.string(),
|
|
17988
|
-
}),
|
|
17989
|
-
|
|
17990
|
-
'io.flow.internal.v0.models.shopify_gift_card_reversal_form': (): io.flow.internal.v0.models.ShopifyGiftCardReversalForm => ({
|
|
17991
|
-
number: factories.string(),
|
|
17992
|
-
amount: factories.decimal(),
|
|
17993
|
-
currency: factories.string(),
|
|
17994
|
-
}),
|
|
17995
|
-
|
|
17996
|
-
'io.flow.internal.v0.models.shopify_grants_check': (): io.flow.internal.v0.models.ShopifyGrantsCheck => ({
|
|
17997
|
-
placeholder: factories.string(),
|
|
17450
|
+
shopify_hs10_codes: factories['io.flow.internal.v0.models.shopify_hs10_codes'](),
|
|
17998
17451
|
}),
|
|
17999
17452
|
|
|
18000
17453
|
'io.flow.internal.v0.models.shopify_incoterm_includes': (): io.flow.internal.v0.models.ShopifyIncotermIncludes => ({
|
|
@@ -18384,12 +17837,6 @@ const factories = {
|
|
|
18384
17837
|
url: factories.string(),
|
|
18385
17838
|
}),
|
|
18386
17839
|
|
|
18387
|
-
'io.flow.internal.v0.models.shopify_order_authorization': (): io.flow.internal.v0.models.ShopifyOrderAuthorization => ({
|
|
18388
|
-
result: factories['io.flow.payment.v0.models.authorization_result'](),
|
|
18389
|
-
detail: factories['io.flow.internal.v0.models.shopify_order_detail'](),
|
|
18390
|
-
redirect: factories.string(),
|
|
18391
|
-
}),
|
|
18392
|
-
|
|
18393
17840
|
'io.flow.internal.v0.models.shopify_order_cancel_form': (): io.flow.internal.v0.models.ShopifyOrderCancelForm => ({
|
|
18394
17841
|
note: factories.string(),
|
|
18395
17842
|
}),
|
|
@@ -18400,32 +17847,11 @@ const factories = {
|
|
|
18400
17847
|
message: factories.string(),
|
|
18401
17848
|
}),
|
|
18402
17849
|
|
|
18403
|
-
'io.flow.internal.v0.models.shopify_order_content': (): io.flow.internal.v0.models.ShopifyOrderContent => ({
|
|
18404
|
-
lines: arrayOf(() => factories['io.flow.internal.v0.models.shopify_order_line_content']()),
|
|
18405
|
-
|
|
18406
|
-
discounts: arrayOf(
|
|
18407
|
-
() => factories['io.flow.internal.v0.models.shopify_order_discount_content'](),
|
|
18408
|
-
),
|
|
18409
|
-
}),
|
|
18410
|
-
|
|
18411
17850
|
'io.flow.internal.v0.models.shopify_order_destination_form': (): io.flow.internal.v0.models.ShopifyOrderDestinationForm => ({
|
|
18412
17851
|
destination: factories['io.flow.common.v0.models.address'](),
|
|
18413
17852
|
order_note: factories.string(),
|
|
18414
17853
|
}),
|
|
18415
17854
|
|
|
18416
|
-
'io.flow.internal.v0.models.shopify_order_detail': (): io.flow.internal.v0.models.ShopifyOrderDetail => ({
|
|
18417
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
18418
|
-
number: factories.string(),
|
|
18419
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
18420
|
-
payments: arrayOf(() => factories['io.flow.internal.v0.models.shopify_payment_summary']()),
|
|
18421
|
-
contents: factories['io.flow.internal.v0.models.shopify_order_content'](),
|
|
18422
|
-
}),
|
|
18423
|
-
|
|
18424
|
-
'io.flow.internal.v0.models.shopify_order_discount_content': (): io.flow.internal.v0.models.ShopifyOrderDiscountContent => ({
|
|
18425
|
-
description: factories.string(),
|
|
18426
|
-
code: factories.string(),
|
|
18427
|
-
}),
|
|
18428
|
-
|
|
18429
17855
|
'io.flow.internal.v0.models.shopify_order_fulfillments_snapshot': (): io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshot => ({
|
|
18430
17856
|
id: factories.string(),
|
|
18431
17857
|
organization_id: factories.string(),
|
|
@@ -18450,32 +17876,6 @@ const factories = {
|
|
|
18450
17876
|
shopify_order_fulfillments_snapshot: factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'](),
|
|
18451
17877
|
}),
|
|
18452
17878
|
|
|
18453
|
-
'io.flow.internal.v0.models.shopify_order_inventory_check': (): io.flow.internal.v0.models.ShopifyOrderInventoryCheck => ({
|
|
18454
|
-
item_number: factories.string(),
|
|
18455
|
-
quantity: factories.long(),
|
|
18456
|
-
order_number: factories.string(),
|
|
18457
|
-
}),
|
|
18458
|
-
|
|
18459
|
-
'io.flow.internal.v0.models.shopify_order_line_attribute': (): io.flow.internal.v0.models.ShopifyOrderLineAttribute => ({
|
|
18460
|
-
key: factories.string(),
|
|
18461
|
-
name: factories.string(),
|
|
18462
|
-
value: factories.string(),
|
|
18463
|
-
}),
|
|
18464
|
-
|
|
18465
|
-
'io.flow.internal.v0.models.shopify_order_line_content': (): io.flow.internal.v0.models.ShopifyOrderLineContent => ({
|
|
18466
|
-
item_number: factories.string(),
|
|
18467
|
-
quantity: factories.long(),
|
|
18468
|
-
price: factories['io.flow.common.v0.models.price_with_base'](),
|
|
18469
|
-
total: factories['io.flow.common.v0.models.price_with_base'](),
|
|
18470
|
-
name: factories.string(),
|
|
18471
|
-
image_url: factories.string(),
|
|
18472
|
-
variant_url: factories.string(),
|
|
18473
|
-
|
|
18474
|
-
attributes: arrayOf(
|
|
18475
|
-
() => factories['io.flow.internal.v0.models.shopify_order_line_attribute'](),
|
|
18476
|
-
),
|
|
18477
|
-
}),
|
|
18478
|
-
|
|
18479
17879
|
'io.flow.internal.v0.models.shopify_order_risk_assessment': (): io.flow.internal.v0.models.ShopifyOrderRiskAssessment => ({
|
|
18480
17880
|
id: factories.string(),
|
|
18481
17881
|
risk_level: factories.string(),
|
|
@@ -18519,19 +17919,6 @@ const factories = {
|
|
|
18519
17919
|
transaction: factories['io.flow.internal.v0.models.shopify_order_transaction'](),
|
|
18520
17920
|
}),
|
|
18521
17921
|
|
|
18522
|
-
'io.flow.internal.v0.models.shopify_organization_settings': (): io.flow.internal.v0.models.ShopifyOrganizationSettings => ({
|
|
18523
|
-
id: factories.string(),
|
|
18524
|
-
process_label: factories.boolean(),
|
|
18525
|
-
send_order_receipt: factories.boolean(),
|
|
18526
|
-
send_inventory_update: factories.boolean(),
|
|
18527
|
-
}),
|
|
18528
|
-
|
|
18529
|
-
'io.flow.internal.v0.models.shopify_organization_settings_form': (): io.flow.internal.v0.models.ShopifyOrganizationSettingsForm => ({
|
|
18530
|
-
process_label: factories.boolean(),
|
|
18531
|
-
send_order_receipt: factories.boolean(),
|
|
18532
|
-
send_inventory_update: factories.boolean(),
|
|
18533
|
-
}),
|
|
18534
|
-
|
|
18535
17922
|
'io.flow.internal.v0.models.shopify_partner_webhook': (): io.flow.internal.v0.models.ShopifyPartnerWebhook => ({
|
|
18536
17923
|
placeholder: factories.boolean(),
|
|
18537
17924
|
}),
|
|
@@ -18540,12 +17927,6 @@ const factories = {
|
|
|
18540
17927
|
placeholder: factories.boolean(),
|
|
18541
17928
|
}),
|
|
18542
17929
|
|
|
18543
|
-
'io.flow.internal.v0.models.shopify_payment_summary': (): io.flow.internal.v0.models.ShopifyPaymentSummary => ({
|
|
18544
|
-
description: factories.string(),
|
|
18545
|
-
address: factories['io.flow.common.v0.models.address'](),
|
|
18546
|
-
contact: factories['io.flow.common.v0.models.contact'](),
|
|
18547
|
-
}),
|
|
18548
|
-
|
|
18549
17930
|
'io.flow.internal.v0.models.shopify_product_bundle': (): io.flow.internal.v0.models.ShopifyProductBundle => ({
|
|
18550
17931
|
id: factories.string(),
|
|
18551
17932
|
underlying: factories['io.flow.internal.v0.models.shopify_product_bundle_underlying'](),
|
|
@@ -18641,109 +18022,18 @@ const factories = {
|
|
|
18641
18022
|
deleted_at: factories.date_time_iso_8601(),
|
|
18642
18023
|
}),
|
|
18643
18024
|
|
|
18644
|
-
'io.flow.internal.v0.models.
|
|
18645
|
-
|
|
18646
|
-
|
|
18647
|
-
|
|
18648
|
-
status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
|
|
18649
|
-
rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
|
|
18650
|
-
stackable_limit: factories.long(),
|
|
18651
|
-
behaviors: arrayOf(() => factories['io.flow.internal.v0.enums.shopify_promotion_behavior']()),
|
|
18652
|
-
}),
|
|
18653
|
-
|
|
18654
|
-
'io.flow.internal.v0.models.shopify_promotion': (): io.flow.internal.v0.models.ShopifyPromotion => ({
|
|
18025
|
+
'io.flow.internal.v0.models.shopify_report_file_deleted': (): io.flow.internal.v0.models.ShopifyReportFileDeleted => ({
|
|
18026
|
+
discriminator: 'shopify_report_file_deleted',
|
|
18027
|
+
event_id: factories.string(),
|
|
18028
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18655
18029
|
id: factories.string(),
|
|
18656
|
-
name: factories.string(),
|
|
18657
|
-
starts_at: factories.date_time_iso_8601(),
|
|
18658
|
-
ends_at: factories.date_time_iso_8601(),
|
|
18659
|
-
status: factories['io.flow.internal.v0.enums.shopify_promotion_status'](),
|
|
18660
|
-
rule: factories['io.flow.internal.v0.models.shopify_promotion_rule'](),
|
|
18661
|
-
stackable_limit: factories.long(),
|
|
18662
|
-
behaviors: arrayOf(() => factories['io.flow.internal.v0.enums.shopify_promotion_behavior']()),
|
|
18663
|
-
}),
|
|
18664
|
-
|
|
18665
|
-
'io.flow.internal.v0.models.shopify_promotion_attribute_value': (): io.flow.internal.v0.models.ShopifyPromotionAttributeValue => ({
|
|
18666
|
-
name: factories.string(),
|
|
18667
|
-
discount: factories['io.flow.common.v0.models.money'](),
|
|
18668
|
-
}),
|
|
18669
|
-
|
|
18670
|
-
'io.flow.internal.v0.models.shopify_promotion_fixed_amount': (): io.flow.internal.v0.models.ShopifyPromotionFixedAmount => ({
|
|
18671
|
-
discriminator: 'shopify_promotion_fixed_amount',
|
|
18672
|
-
amount: factories.decimal(),
|
|
18673
|
-
currency: factories.string(),
|
|
18674
|
-
}),
|
|
18675
|
-
|
|
18676
|
-
'io.flow.internal.v0.models.shopify_promotion_form': (): io.flow.internal.v0.models.ShopifyPromotionForm => ({
|
|
18677
|
-
code: factories.string(),
|
|
18678
|
-
}),
|
|
18679
|
-
|
|
18680
|
-
'io.flow.internal.v0.models.shopify_promotion_item_entitlement': (): io.flow.internal.v0.models.ShopifyPromotionItemEntitlement => ({
|
|
18681
|
-
discriminator: 'shopify_promotion_item_entitlement',
|
|
18682
|
-
q: factories.string(),
|
|
18683
|
-
allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
|
|
18684
18030
|
}),
|
|
18685
18031
|
|
|
18686
|
-
'io.flow.internal.v0.models.
|
|
18687
|
-
discriminator: '
|
|
18688
|
-
q: factories.string(),
|
|
18689
|
-
at_least: factories.long(),
|
|
18690
|
-
at_most: factories.long(),
|
|
18691
|
-
exclude_from_offer: factories.boolean(),
|
|
18692
|
-
}),
|
|
18693
|
-
|
|
18694
|
-
'io.flow.internal.v0.models.shopify_promotion_max_amount': (): io.flow.internal.v0.models.ShopifyPromotionMaxAmount => ({
|
|
18695
|
-
discriminator: 'shopify_promotion_max_amount',
|
|
18696
|
-
amount: factories.decimal(),
|
|
18697
|
-
currency: factories.string(),
|
|
18698
|
-
}),
|
|
18699
|
-
|
|
18700
|
-
'io.flow.internal.v0.models.shopify_promotion_max_limit': (): io.flow.internal.v0.models.ShopifyPromotionMaxLimit => ({
|
|
18701
|
-
discriminator: 'shopify_promotion_max_limit',
|
|
18702
|
-
limit: factories.long(),
|
|
18703
|
-
}),
|
|
18704
|
-
|
|
18705
|
-
'io.flow.internal.v0.models.shopify_promotion_offer': (): io.flow.internal.v0.models.ShopifyPromotionOffer => ({
|
|
18706
|
-
discount: factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount'](),
|
|
18707
|
-
entitlement: factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement'](),
|
|
18708
|
-
|
|
18709
|
-
max: arrayOf(
|
|
18710
|
-
() => factories['io.flow.internal.v0.unions.shopify_promotion_offer_max'](),
|
|
18711
|
-
),
|
|
18712
|
-
}),
|
|
18713
|
-
|
|
18714
|
-
'io.flow.internal.v0.models.shopify_promotion_order_entitlement': (): io.flow.internal.v0.models.ShopifyPromotionOrderEntitlement => ({
|
|
18715
|
-
discriminator: 'shopify_promotion_order_entitlement',
|
|
18716
|
-
|
|
18717
|
-
components: arrayOf(
|
|
18718
|
-
() => factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component'](),
|
|
18719
|
-
),
|
|
18720
|
-
|
|
18721
|
-
allocation_method: factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method'](),
|
|
18722
|
-
}),
|
|
18723
|
-
|
|
18724
|
-
'io.flow.internal.v0.models.shopify_promotion_order_prerequisite': (): io.flow.internal.v0.models.ShopifyPromotionOrderPrerequisite => ({
|
|
18725
|
-
discriminator: 'shopify_promotion_order_prerequisite',
|
|
18726
|
-
q: factories.string(),
|
|
18727
|
-
}),
|
|
18728
|
-
|
|
18729
|
-
'io.flow.internal.v0.models.shopify_promotion_percent': (): io.flow.internal.v0.models.ShopifyPromotionPercent => ({
|
|
18730
|
-
discriminator: 'shopify_promotion_percent',
|
|
18731
|
-
percent: factories.long(),
|
|
18732
|
-
}),
|
|
18733
|
-
|
|
18734
|
-
'io.flow.internal.v0.models.shopify_promotion_rule': (): io.flow.internal.v0.models.ShopifyPromotionRule => ({
|
|
18735
|
-
prerequisites: arrayOf(
|
|
18736
|
-
() => factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite'](),
|
|
18737
|
-
),
|
|
18738
|
-
|
|
18739
|
-
offers: arrayOf(() => factories['io.flow.internal.v0.models.shopify_promotion_offer']()),
|
|
18740
|
-
}),
|
|
18741
|
-
|
|
18742
|
-
'io.flow.internal.v0.models.shopify_shop_deleted': (): io.flow.internal.v0.models.ShopifyShopDeleted => ({
|
|
18743
|
-
discriminator: 'shopify_shop_deleted',
|
|
18032
|
+
'io.flow.internal.v0.models.shopify_report_file_upserted': (): io.flow.internal.v0.models.ShopifyReportFileUpserted => ({
|
|
18033
|
+
discriminator: 'shopify_report_file_upserted',
|
|
18744
18034
|
event_id: factories.string(),
|
|
18745
18035
|
timestamp: factories.date_time_iso_8601(),
|
|
18746
|
-
|
|
18036
|
+
shopify_report_file: factories['io.flow.internal.v0.models.report_file'](),
|
|
18747
18037
|
}),
|
|
18748
18038
|
|
|
18749
18039
|
'io.flow.internal.v0.models.shopify_shop_statistics': (): io.flow.internal.v0.models.ShopifyShopStatistics => ({
|
|
@@ -18756,13 +18046,6 @@ const factories = {
|
|
|
18756
18046
|
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
18757
18047
|
}),
|
|
18758
18048
|
|
|
18759
|
-
'io.flow.internal.v0.models.shopify_shop_upserted': (): io.flow.internal.v0.models.ShopifyShopUpserted => ({
|
|
18760
|
-
discriminator: 'shopify_shop_upserted',
|
|
18761
|
-
event_id: factories.string(),
|
|
18762
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18763
|
-
shop: factories['io.flow.internal.v0.models.shop'](),
|
|
18764
|
-
}),
|
|
18765
|
-
|
|
18766
18049
|
'io.flow.internal.v0.models.shopify_store_detail': (): io.flow.internal.v0.models.ShopifyStoreDetail => ({
|
|
18767
18050
|
shopify_domain: factories.string(),
|
|
18768
18051
|
shop_id: factories.string(),
|
|
@@ -18773,21 +18056,12 @@ const factories = {
|
|
|
18773
18056
|
request: factories.object(),
|
|
18774
18057
|
}),
|
|
18775
18058
|
|
|
18776
|
-
'io.flow.internal.v0.models.
|
|
18777
|
-
|
|
18778
|
-
|
|
18779
|
-
|
|
18780
|
-
|
|
18781
|
-
|
|
18782
|
-
|
|
18783
|
-
'io.flow.internal.v0.models.shopify_webhook_event': (): io.flow.internal.v0.models.ShopifyWebhookEvent => ({
|
|
18784
|
-
placeholder: factories.string(),
|
|
18785
|
-
}),
|
|
18786
|
-
|
|
18787
|
-
'io.flow.internal.v0.models.shopify_webhook_form': (): io.flow.internal.v0.models.ShopifyWebhookForm => ({
|
|
18788
|
-
myshopify_domain: factories.string(),
|
|
18789
|
-
address: factories.string(),
|
|
18790
|
-
topic: factories['io.flow.shopify.external.v0.enums.topic'](),
|
|
18059
|
+
'io.flow.internal.v0.models.shopper_breakdown': (): io.flow.internal.v0.models.ShopperBreakdown => ({
|
|
18060
|
+
product: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18061
|
+
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18062
|
+
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18063
|
+
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18064
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18791
18065
|
}),
|
|
18792
18066
|
|
|
18793
18067
|
'io.flow.internal.v0.models.shopper_fees': (): io.flow.internal.v0.models.ShopperFees => ({
|
|
@@ -18994,16 +18268,6 @@ const factories = {
|
|
|
18994
18268
|
period: factories['io.flow.common.v0.models.datetime_range'](),
|
|
18995
18269
|
}),
|
|
18996
18270
|
|
|
18997
|
-
'io.flow.internal.v0.models.store_connection': (): io.flow.internal.v0.models.StoreConnection => ({
|
|
18998
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
18999
|
-
id: factories.string(),
|
|
19000
|
-
domain: factories.string(),
|
|
19001
|
-
}),
|
|
19002
|
-
|
|
19003
|
-
'io.flow.internal.v0.models.store_connection_form': (): io.flow.internal.v0.models.StoreConnectionForm => ({
|
|
19004
|
-
organization: factories.string(),
|
|
19005
|
-
}),
|
|
19006
|
-
|
|
19007
18271
|
'io.flow.internal.v0.models.string_feature_default_value': (): io.flow.internal.v0.models.StringFeatureDefaultValue => ({
|
|
19008
18272
|
discriminator: 'string',
|
|
19009
18273
|
value: factories.string(),
|
|
@@ -19342,11 +18606,6 @@ const factories = {
|
|
|
19342
18606
|
reversal: factories['io.flow.internal.v0.models.stripe_internal_reversal'](),
|
|
19343
18607
|
}),
|
|
19344
18608
|
|
|
19345
|
-
'io.flow.internal.v0.models.subcatalog_item_count': (): io.flow.internal.v0.models.SubcatalogItemCount => ({
|
|
19346
|
-
key: factories.string(),
|
|
19347
|
-
count: factories.long(),
|
|
19348
|
-
}),
|
|
19349
|
-
|
|
19350
18609
|
'io.flow.internal.v0.models.submitted_order_upserted': (): io.flow.internal.v0.models.SubmittedOrderUpserted => ({
|
|
19351
18610
|
discriminator: 'submitted_order_upserted',
|
|
19352
18611
|
event_id: factories.string(),
|
|
@@ -19407,11 +18666,6 @@ const factories = {
|
|
|
19407
18666
|
snooze_id: factories.string(),
|
|
19408
18667
|
}),
|
|
19409
18668
|
|
|
19410
|
-
'io.flow.internal.v0.models.task_count': (): io.flow.internal.v0.models.TaskCount => ({
|
|
19411
|
-
discriminator: factories.string(),
|
|
19412
|
-
count: factories.long(),
|
|
19413
|
-
}),
|
|
19414
|
-
|
|
19415
18669
|
'io.flow.internal.v0.models.task_import': (): io.flow.internal.v0.models.TaskImport => ({
|
|
19416
18670
|
discriminator: 'task_import',
|
|
19417
18671
|
import_id: factories.string(),
|
|
@@ -20157,26 +19411,6 @@ const factories = {
|
|
|
20157
19411
|
user: factories['io.flow.common.v0.models.user'](),
|
|
20158
19412
|
}),
|
|
20159
19413
|
|
|
20160
|
-
'io.flow.internal.v0.models.v1_checkout': (): io.flow.internal.v0.models.V1Checkout => ({
|
|
20161
|
-
id: factories.string(),
|
|
20162
|
-
organization: factories['io.flow.common.v0.models.organization_summary'](),
|
|
20163
|
-
builder: factories['io.flow.experience.v0.models.order_builder'](),
|
|
20164
|
-
platform: factories['io.flow.internal.v0.models.checkout_platform_data'](),
|
|
20165
|
-
content: factories['io.flow.internal.v0.models.checkout_content'](),
|
|
20166
|
-
destinations: arrayOf(() => factories['io.flow.reference.v0.models.country']()),
|
|
20167
|
-
optins: arrayOf(() => factories['io.flow.internal.v0.models.optin_prompt']()),
|
|
20168
|
-
addresses: arrayOf(() => factories['io.flow.experience.v0.models.address_configuration']()),
|
|
20169
|
-
features: factories['io.flow.internal.v0.models.feature_value_result'](),
|
|
20170
|
-
configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
|
|
20171
|
-
cart: factories['io.flow.shopify.v0.models.shopify_cart'](),
|
|
20172
|
-
customer: factories['io.flow.customer.v0.models.customer'](),
|
|
20173
|
-
address_book: factories['io.flow.customer.v0.models.customer_address_book'](),
|
|
20174
|
-
gift_card_program: factories['io.flow.internal.v0.models.gift_card_program'](),
|
|
20175
|
-
loyalty_program: factories['io.flow.internal.v0.models.loyalty_program'](),
|
|
20176
|
-
payment: factories['io.flow.internal.v0.models.checkout_payment'](),
|
|
20177
|
-
customer_bundle: factories['io.flow.customer.v0.models.customer_bundle'](),
|
|
20178
|
-
}),
|
|
20179
|
-
|
|
20180
19414
|
'io.flow.internal.v0.models.validated_address': (): io.flow.internal.v0.models.ValidatedAddress => ({
|
|
20181
19415
|
company_name: factories.string(),
|
|
20182
19416
|
person_name: factories.string(),
|
|
@@ -20225,12 +19459,6 @@ const factories = {
|
|
|
20225
19459
|
package_dimensions_source: factories['io.flow.label.v0.enums.package_dimensions_source'](),
|
|
20226
19460
|
}),
|
|
20227
19461
|
|
|
20228
|
-
'io.flow.internal.v0.models.validation_character_length': (): io.flow.internal.v0.models.ValidationCharacterLength => ({
|
|
20229
|
-
discriminator: 'validation_character_length',
|
|
20230
|
-
min: factories.long(),
|
|
20231
|
-
max: factories.long(),
|
|
20232
|
-
}),
|
|
20233
|
-
|
|
20234
19462
|
'io.flow.internal.v0.models.vies_result': (): io.flow.internal.v0.models.ViesResult => ({
|
|
20235
19463
|
country: factories.string(),
|
|
20236
19464
|
number: factories.string(),
|
|
@@ -20442,17 +19670,6 @@ const factories = {
|
|
|
20442
19670
|
return f();
|
|
20443
19671
|
},
|
|
20444
19672
|
|
|
20445
|
-
'io.flow.internal.v0.unions.content_item': (): io.flow.internal.v0.unions.ContentItem => {
|
|
20446
|
-
const f = faker.helpers.arrayElement([
|
|
20447
|
-
() => factories['io.flow.internal.v0.models.dict'](),
|
|
20448
|
-
() => factories['io.flow.internal.v0.models.href'](),
|
|
20449
|
-
() => factories['io.flow.internal.v0.models.content_label'](),
|
|
20450
|
-
() => factories['io.flow.internal.v0.models.load'](),
|
|
20451
|
-
]);
|
|
20452
|
-
|
|
20453
|
-
return f();
|
|
20454
|
-
},
|
|
20455
|
-
|
|
20456
19673
|
'io.flow.internal.v0.unions.decline_reason': (): io.flow.internal.v0.unions.DeclineReason => {
|
|
20457
19674
|
const f = faker.helpers.arrayElement([
|
|
20458
19675
|
() => factories['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'](),
|
|
@@ -20573,12 +19790,8 @@ const factories = {
|
|
|
20573
19790
|
() => factories['io.flow.internal.v0.models.channel_order_acceptance_upserted'](),
|
|
20574
19791
|
() => factories['io.flow.internal.v0.models.channel_order_acceptance_deleted'](),
|
|
20575
19792
|
() => factories['io.flow.internal.v0.models.channel_order_acceptance_failed'](),
|
|
20576
|
-
() => factories['io.flow.internal.v0.models.checkout_configuration_upserted'](),
|
|
20577
|
-
() => factories['io.flow.internal.v0.models.checkout_configuration_deleted'](),
|
|
20578
19793
|
() => factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted'](),
|
|
20579
19794
|
() => factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted'](),
|
|
20580
|
-
() => factories['io.flow.internal.v0.models.localized_content_upserted'](),
|
|
20581
|
-
() => factories['io.flow.internal.v0.models.localization_upserted'](),
|
|
20582
19795
|
() => factories['io.flow.internal.v0.models.internal_channel_rate_deleted'](),
|
|
20583
19796
|
() => factories['io.flow.internal.v0.models.internal_channel_rate_upserted'](),
|
|
20584
19797
|
() => factories['io.flow.internal.v0.models.rate_deleted'](),
|
|
@@ -20679,8 +19892,6 @@ const factories = {
|
|
|
20679
19892
|
() => factories['io.flow.internal.v0.models.item_harmonization_upserted'](),
|
|
20680
19893
|
() => factories['io.flow.internal.v0.models.item_harmonization_deleted'](),
|
|
20681
19894
|
() => factories['io.flow.internal.v0.models.harmonization_classification_statistics_published'](),
|
|
20682
|
-
() => factories['io.flow.internal.v0.models.issuer_upserted'](),
|
|
20683
|
-
() => factories['io.flow.internal.v0.models.issuer_deleted'](),
|
|
20684
19895
|
() => factories['io.flow.internal.v0.models.item_form_import_request'](),
|
|
20685
19896
|
() => factories['io.flow.internal.v0.models.label_request_error_upserted'](),
|
|
20686
19897
|
() => factories['io.flow.internal.v0.models.label_request_error_deleted'](),
|
|
@@ -20778,10 +19989,8 @@ const factories = {
|
|
|
20778
19989
|
() => factories['io.flow.internal.v0.models.restriction_rule_effect_deleted'](),
|
|
20779
19990
|
() => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](),
|
|
20780
19991
|
() => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'](),
|
|
20781
|
-
() => factories['io.flow.internal.v0.models.
|
|
20782
|
-
() => factories['io.flow.internal.v0.models.
|
|
20783
|
-
() => factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](),
|
|
20784
|
-
() => factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted'](),
|
|
19992
|
+
() => factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted'](),
|
|
19993
|
+
() => factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted'](),
|
|
20785
19994
|
() => factories['io.flow.internal.v0.models.shopify_markets_order_upserted'](),
|
|
20786
19995
|
() => factories['io.flow.internal.v0.models.shopify_markets_order_deleted'](),
|
|
20787
19996
|
() => factories['io.flow.internal.v0.models.shopify_markets_shop_upserted'](),
|
|
@@ -20827,6 +20036,8 @@ const factories = {
|
|
|
20827
20036
|
() => factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](),
|
|
20828
20037
|
() => factories['io.flow.internal.v0.models.shopify_dispute_upserted'](),
|
|
20829
20038
|
() => factories['io.flow.internal.v0.models.shopify_dispute_deleted'](),
|
|
20039
|
+
() => factories['io.flow.internal.v0.models.shopify_report_file_upserted'](),
|
|
20040
|
+
() => factories['io.flow.internal.v0.models.shopify_report_file_deleted'](),
|
|
20830
20041
|
() => factories['io.flow.internal.v0.models.stripe_authorization_deleted'](),
|
|
20831
20042
|
() => factories['io.flow.internal.v0.models.stripe_authorization_upserted'](),
|
|
20832
20043
|
() => factories['io.flow.internal.v0.models.stripe_reversal_deleted'](),
|
|
@@ -21050,23 +20261,6 @@ const factories = {
|
|
|
21050
20261
|
return f();
|
|
21051
20262
|
},
|
|
21052
20263
|
|
|
21053
|
-
'io.flow.internal.v0.unions.localizable_content': (): io.flow.internal.v0.unions.LocalizableContent => {
|
|
21054
|
-
const f = faker.helpers.arrayElement([
|
|
21055
|
-
() => factories['io.flow.internal.v0.models.localizable_content_reference'](),
|
|
21056
|
-
() => factories['io.flow.internal.v0.models.localization'](),
|
|
21057
|
-
]);
|
|
21058
|
-
|
|
21059
|
-
return f();
|
|
21060
|
-
},
|
|
21061
|
-
|
|
21062
|
-
'io.flow.internal.v0.unions.optin_prompt_display': (): io.flow.internal.v0.unions.OptinPromptDisplay => {
|
|
21063
|
-
const f = faker.helpers.arrayElement([
|
|
21064
|
-
() => factories['io.flow.internal.v0.models.optin_prompt_checkout_display'](),
|
|
21065
|
-
]);
|
|
21066
|
-
|
|
21067
|
-
return f();
|
|
21068
|
-
},
|
|
21069
|
-
|
|
21070
20264
|
'io.flow.internal.v0.unions.order_action_form': (): io.flow.internal.v0.unions.OrderActionForm => {
|
|
21071
20265
|
const f = faker.helpers.arrayElement([
|
|
21072
20266
|
() => factories['io.flow.internal.v0.models.whole_order_action_form'](),
|
|
@@ -21229,42 +20423,6 @@ const factories = {
|
|
|
21229
20423
|
return f();
|
|
21230
20424
|
},
|
|
21231
20425
|
|
|
21232
|
-
'io.flow.internal.v0.unions.shopify_promotion_offer_discount': (): io.flow.internal.v0.unions.ShopifyPromotionOfferDiscount => {
|
|
21233
|
-
const f = faker.helpers.arrayElement([
|
|
21234
|
-
() => factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount'](),
|
|
21235
|
-
() => factories['io.flow.internal.v0.models.shopify_promotion_percent'](),
|
|
21236
|
-
]);
|
|
21237
|
-
|
|
21238
|
-
return f();
|
|
21239
|
-
},
|
|
21240
|
-
|
|
21241
|
-
'io.flow.internal.v0.unions.shopify_promotion_offer_entitlement': (): io.flow.internal.v0.unions.ShopifyPromotionOfferEntitlement => {
|
|
21242
|
-
const f = faker.helpers.arrayElement([
|
|
21243
|
-
() => factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement'](),
|
|
21244
|
-
() => factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement'](),
|
|
21245
|
-
]);
|
|
21246
|
-
|
|
21247
|
-
return f();
|
|
21248
|
-
},
|
|
21249
|
-
|
|
21250
|
-
'io.flow.internal.v0.unions.shopify_promotion_offer_max': (): io.flow.internal.v0.unions.ShopifyPromotionOfferMax => {
|
|
21251
|
-
const f = faker.helpers.arrayElement([
|
|
21252
|
-
() => factories['io.flow.internal.v0.models.shopify_promotion_max_limit'](),
|
|
21253
|
-
() => factories['io.flow.internal.v0.models.shopify_promotion_max_amount'](),
|
|
21254
|
-
]);
|
|
21255
|
-
|
|
21256
|
-
return f();
|
|
21257
|
-
},
|
|
21258
|
-
|
|
21259
|
-
'io.flow.internal.v0.unions.shopify_promotion_prerequisite': (): io.flow.internal.v0.unions.ShopifyPromotionPrerequisite => {
|
|
21260
|
-
const f = faker.helpers.arrayElement([
|
|
21261
|
-
() => factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite'](),
|
|
21262
|
-
() => factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite'](),
|
|
21263
|
-
]);
|
|
21264
|
-
|
|
21265
|
-
return f();
|
|
21266
|
-
},
|
|
21267
|
-
|
|
21268
20426
|
'io.flow.internal.v0.unions.simplified_classification_taxonomy': (): io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy => {
|
|
21269
20427
|
const f = faker.helpers.arrayElement([
|
|
21270
20428
|
() => factories['io.flow.internal.v0.models.simplified_taxonomy_category'](),
|
|
@@ -21384,14 +20542,6 @@ const factories = {
|
|
|
21384
20542
|
return f();
|
|
21385
20543
|
},
|
|
21386
20544
|
|
|
21387
|
-
'io.flow.internal.v0.unions.validation_rule': (): io.flow.internal.v0.unions.ValidationRule => {
|
|
21388
|
-
const f = faker.helpers.arrayElement([
|
|
21389
|
-
() => factories['io.flow.internal.v0.models.validation_character_length'](),
|
|
21390
|
-
]);
|
|
21391
|
-
|
|
21392
|
-
return f();
|
|
21393
|
-
},
|
|
21394
|
-
|
|
21395
20545
|
'io.flow.inventory.v0.enums.aggregate': (): io.flow.inventory.v0.enums.Aggregate => faker.helpers.arrayElement(['maximum', 'minimum']),
|
|
21396
20546
|
'io.flow.inventory.v0.enums.inventory_status': (): io.flow.inventory.v0.enums.InventoryStatus => faker.helpers.arrayElement(['has_inventory', 'no_inventory']),
|
|
21397
20547
|
'io.flow.inventory.v0.enums.update_type': (): io.flow.inventory.v0.enums.UpdateType => faker.helpers.arrayElement(['change', 'set']),
|
|
@@ -22190,75 +21340,6 @@ const factories = {
|
|
|
22190
21340
|
return f();
|
|
22191
21341
|
},
|
|
22192
21342
|
|
|
22193
|
-
'io.flow.order.management.event.v0.models.fulfillment_item_allocation_details': (): io.flow.order.management.event.v0.models.FulfillmentItemAllocationDetails => ({
|
|
22194
|
-
item_number: factories.string(),
|
|
22195
|
-
line_number: factories.long(),
|
|
22196
|
-
levies: factories['io.flow.common.v0.models.price_with_base'](),
|
|
22197
|
-
total: factories['io.flow.common.v0.models.price_with_base'](),
|
|
22198
|
-
}),
|
|
22199
|
-
|
|
22200
|
-
'io.flow.order.management.event.v0.models.order_placed': (): io.flow.order.management.event.v0.models.OrderPlaced => ({
|
|
22201
|
-
discriminator: 'order_placed',
|
|
22202
|
-
event_id: factories.string(),
|
|
22203
|
-
timestamp: factories.date_time_iso_8601(),
|
|
22204
|
-
organization: factories.string(),
|
|
22205
|
-
order_number: factories.string(),
|
|
22206
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
22207
|
-
allocation: factories['io.flow.experience.v0.models.allocation_v2'](),
|
|
22208
|
-
}),
|
|
22209
|
-
|
|
22210
|
-
'io.flow.order.management.event.v0.models.order_placed_v2': (): io.flow.order.management.event.v0.models.OrderPlacedV2 => ({
|
|
22211
|
-
discriminator: 'order_placed_v2',
|
|
22212
|
-
event_id: factories.string(),
|
|
22213
|
-
timestamp: factories.date_time_iso_8601(),
|
|
22214
|
-
organization: factories.string(),
|
|
22215
|
-
order_placed: factories['io.flow.order.management.v0.models.order_placed_details'](),
|
|
22216
|
-
}),
|
|
22217
|
-
|
|
22218
|
-
'io.flow.order.management.event.v0.models.ready_to_fulfill': (): io.flow.order.management.event.v0.models.ReadyToFulfill => ({
|
|
22219
|
-
discriminator: 'ready_to_fulfill',
|
|
22220
|
-
event_id: factories.string(),
|
|
22221
|
-
timestamp: factories.date_time_iso_8601(),
|
|
22222
|
-
organization: factories.string(),
|
|
22223
|
-
order_number: factories.string(),
|
|
22224
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
22225
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
22226
|
-
|
|
22227
|
-
fulfillment_item_allocation_details: arrayOf(
|
|
22228
|
-
() => factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](),
|
|
22229
|
-
),
|
|
22230
|
-
}),
|
|
22231
|
-
|
|
22232
|
-
'io.flow.order.management.event.v0.models.ready_to_fulfill_details': (): io.flow.order.management.event.v0.models.ReadyToFulfillDetails => ({
|
|
22233
|
-
id: factories.string(),
|
|
22234
|
-
order_number: factories.string(),
|
|
22235
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
22236
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
22237
|
-
|
|
22238
|
-
fulfillment_item_allocation_details: arrayOf(
|
|
22239
|
-
() => factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](),
|
|
22240
|
-
),
|
|
22241
|
-
}),
|
|
22242
|
-
|
|
22243
|
-
'io.flow.order.management.event.v0.models.ready_to_fulfill_v2': (): io.flow.order.management.event.v0.models.ReadyToFulfillV2 => ({
|
|
22244
|
-
discriminator: 'ready_to_fulfill_v2',
|
|
22245
|
-
event_id: factories.string(),
|
|
22246
|
-
timestamp: factories.date_time_iso_8601(),
|
|
22247
|
-
organization: factories.string(),
|
|
22248
|
-
ready_to_fulfill: factories['io.flow.order.management.event.v0.models.ready_to_fulfill_details'](),
|
|
22249
|
-
}),
|
|
22250
|
-
|
|
22251
|
-
'io.flow.order.management.event.v0.unions.order_management_event': (): io.flow.order.management.event.v0.unions.OrderManagementEvent => {
|
|
22252
|
-
const f = faker.helpers.arrayElement([
|
|
22253
|
-
() => factories['io.flow.order.management.event.v0.models.order_placed'](),
|
|
22254
|
-
() => factories['io.flow.order.management.event.v0.models.order_placed_v2'](),
|
|
22255
|
-
() => factories['io.flow.order.management.event.v0.models.ready_to_fulfill'](),
|
|
22256
|
-
() => factories['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'](),
|
|
22257
|
-
]);
|
|
22258
|
-
|
|
22259
|
-
return f();
|
|
22260
|
-
},
|
|
22261
|
-
|
|
22262
21343
|
'io.flow.order.management.v0.enums.cancel_reason': (): io.flow.order.management.v0.enums.CancelReason => faker.helpers.arrayElement(['out_of_stock', 'consumer_requested', 'flow_cancel']),
|
|
22263
21344
|
'io.flow.order.management.v0.enums.fulfillment_item_quantity_status': (): io.flow.order.management.v0.enums.FulfillmentItemQuantityStatus => faker.helpers.arrayElement(['new', 'shipped', 'cancelled']),
|
|
22264
21345
|
'io.flow.order.management.v0.enums.order_change_source': (): io.flow.order.management.v0.enums.OrderChangeSource => faker.helpers.arrayElement(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']),
|
|
@@ -25361,6 +24442,7 @@ const factories = {
|
|
|
25361
24442
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
25362
24443
|
taxonomy_data: arrayOf(() => factories['io.flow.product.v0.models.product_taxonomy_data']()),
|
|
25363
24444
|
item_numbers: arrayOf(() => factories.string()),
|
|
24445
|
+
highest_value_item_number: factories.string(),
|
|
25364
24446
|
updated_at: factories.date_time_iso_8601(),
|
|
25365
24447
|
deleted_at: factories.date_time_iso_8601(),
|
|
25366
24448
|
}),
|
|
@@ -26314,18 +25396,13 @@ const factories = {
|
|
|
26314
25396
|
shop_id: factories.string(),
|
|
26315
25397
|
product_id: factories.string(),
|
|
26316
25398
|
name: factories.string(),
|
|
26317
|
-
price: factories['io.flow.
|
|
25399
|
+
price: factories['io.flow.common.v0.models.money'](),
|
|
26318
25400
|
description: factories.string(),
|
|
26319
25401
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
26320
25402
|
status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
|
|
26321
25403
|
dry_run: factories.boolean(),
|
|
26322
25404
|
}),
|
|
26323
25405
|
|
|
26324
|
-
'io.flow.sellability.v0.models.product_sellability_price': (): io.flow.sellability.v0.models.ProductSellabilityPrice => ({
|
|
26325
|
-
currency: factories.string(),
|
|
26326
|
-
amount: factories.decimal(),
|
|
26327
|
-
}),
|
|
26328
|
-
|
|
26329
25406
|
'io.flow.sellability.v0.models.sellability_error': (): io.flow.sellability.v0.models.SellabilityError => ({
|
|
26330
25407
|
discriminator: 'sellability_error',
|
|
26331
25408
|
code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
|
|
@@ -26346,106 +25423,6 @@ const factories = {
|
|
|
26346
25423
|
return f();
|
|
26347
25424
|
},
|
|
26348
25425
|
|
|
26349
|
-
'io.flow.session.v0.models.cart_reference': (): io.flow.session.v0.models.CartReference => ({
|
|
26350
|
-
id: factories.string(),
|
|
26351
|
-
}),
|
|
26352
|
-
|
|
26353
|
-
'io.flow.session.v0.models.local_session': (): io.flow.session.v0.models.LocalSession => ({
|
|
26354
|
-
country: factories['io.flow.reference.v0.models.country'](),
|
|
26355
|
-
currency: factories['io.flow.reference.v0.models.currency'](),
|
|
26356
|
-
language: factories['io.flow.reference.v0.models.language'](),
|
|
26357
|
-
locale: factories['io.flow.reference.v0.models.locale'](),
|
|
26358
|
-
experience: factories['io.flow.experience.v0.models.experience_geo'](),
|
|
26359
|
-
}),
|
|
26360
|
-
|
|
26361
|
-
'io.flow.session.v0.models.organization_session': (): io.flow.session.v0.models.OrganizationSession => ({
|
|
26362
|
-
discriminator: 'organization_session',
|
|
26363
|
-
id: factories.string(),
|
|
26364
|
-
organization: factories.string(),
|
|
26365
|
-
visitor: factories['io.flow.session.v0.models.session_visitor'](),
|
|
26366
|
-
visit: factories['io.flow.session.v0.models.session_visit'](),
|
|
26367
|
-
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
26368
|
-
attributes: objectOf(() => factories.string()),
|
|
26369
|
-
ip: factories.string(),
|
|
26370
|
-
local: factories['io.flow.session.v0.models.local_session'](),
|
|
26371
|
-
geo: factories['io.flow.session.v0.models.session_geo'](),
|
|
26372
|
-
experience: factories['io.flow.experience.v0.models.experience_geo'](),
|
|
26373
|
-
format: factories['io.flow.session.v0.models.session_format'](),
|
|
26374
|
-
}),
|
|
26375
|
-
|
|
26376
|
-
'io.flow.session.v0.models.organization_session_authorization': (): io.flow.session.v0.models.OrganizationSessionAuthorization => ({
|
|
26377
|
-
discriminator: 'organization_session_authorization',
|
|
26378
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
26379
|
-
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
26380
|
-
}),
|
|
26381
|
-
|
|
26382
|
-
'io.flow.session.v0.models.session_authorization_form': (): io.flow.session.v0.models.SessionAuthorizationForm => ({
|
|
26383
|
-
session: factories.string(),
|
|
26384
|
-
}),
|
|
26385
|
-
|
|
26386
|
-
'io.flow.session.v0.models.session_currency_format': (): io.flow.session.v0.models.SessionCurrencyFormat => ({
|
|
26387
|
-
symbol: factories['io.flow.common.v0.enums.currency_symbol_format'](),
|
|
26388
|
-
label_formatters: arrayOf(() => factories['io.flow.common.v0.enums.currency_label_formatter']()),
|
|
26389
|
-
}),
|
|
26390
|
-
|
|
26391
|
-
'io.flow.session.v0.models.session_expiration_config': (): io.flow.session.v0.models.SessionExpirationConfig => ({
|
|
26392
|
-
unit: factories['io.flow.common.v0.enums.unit_of_time'](),
|
|
26393
|
-
value: factories.long(),
|
|
26394
|
-
}),
|
|
26395
|
-
|
|
26396
|
-
'io.flow.session.v0.models.session_form': (): io.flow.session.v0.models.SessionForm => ({
|
|
26397
|
-
ip: factories.string(),
|
|
26398
|
-
experience: factories.string(),
|
|
26399
|
-
country: factories.string(),
|
|
26400
|
-
currency: factories.string(),
|
|
26401
|
-
language: factories.string(),
|
|
26402
|
-
locale: factories.string(),
|
|
26403
|
-
attributes: objectOf(() => factories.string()),
|
|
26404
|
-
}),
|
|
26405
|
-
|
|
26406
|
-
'io.flow.session.v0.models.session_format': (): io.flow.session.v0.models.SessionFormat => ({
|
|
26407
|
-
currency: factories['io.flow.session.v0.models.session_currency_format'](),
|
|
26408
|
-
}),
|
|
26409
|
-
|
|
26410
|
-
'io.flow.session.v0.models.session_geo': (): io.flow.session.v0.models.SessionGeo => ({
|
|
26411
|
-
country: factories['io.flow.reference.v0.models.country'](),
|
|
26412
|
-
currency: factories['io.flow.reference.v0.models.currency'](),
|
|
26413
|
-
language: factories['io.flow.reference.v0.models.language'](),
|
|
26414
|
-
locale: factories['io.flow.reference.v0.models.locale'](),
|
|
26415
|
-
}),
|
|
26416
|
-
|
|
26417
|
-
'io.flow.session.v0.models.session_put_form': (): io.flow.session.v0.models.SessionPutForm => ({
|
|
26418
|
-
ip: factories.string(),
|
|
26419
|
-
experience: factories.string(),
|
|
26420
|
-
country: factories.string(),
|
|
26421
|
-
currency: factories.string(),
|
|
26422
|
-
language: factories.string(),
|
|
26423
|
-
locale: factories.string(),
|
|
26424
|
-
attributes: objectOf(() => factories.string()),
|
|
26425
|
-
}),
|
|
26426
|
-
|
|
26427
|
-
'io.flow.session.v0.models.session_visit': (): io.flow.session.v0.models.SessionVisit => ({
|
|
26428
|
-
id: factories.string(),
|
|
26429
|
-
expires_at: factories.date_time_iso_8601(),
|
|
26430
|
-
}),
|
|
26431
|
-
|
|
26432
|
-
'io.flow.session.v0.models.session_visitor': (): io.flow.session.v0.models.SessionVisitor => ({
|
|
26433
|
-
id: factories.string(),
|
|
26434
|
-
}),
|
|
26435
|
-
|
|
26436
|
-
'io.flow.session.v0.unions.session': (): io.flow.session.v0.unions.Session => {
|
|
26437
|
-
const f = faker.helpers.arrayElement([() => factories['io.flow.session.v0.models.organization_session']()]);
|
|
26438
|
-
return f();
|
|
26439
|
-
},
|
|
26440
|
-
|
|
26441
|
-
'io.flow.session.v0.unions.session_authorization': (): io.flow.session.v0.unions.SessionAuthorization => {
|
|
26442
|
-
const f = faker.helpers.arrayElement([
|
|
26443
|
-
() => factories['io.flow.session.v0.models.organization_session_authorization'](),
|
|
26444
|
-
]);
|
|
26445
|
-
|
|
26446
|
-
return f();
|
|
26447
|
-
},
|
|
26448
|
-
|
|
26449
25426
|
'io.flow.shopify.external.v0.enums.cancel_reason': (): io.flow.shopify.external.v0.enums.CancelReason => faker.helpers.arrayElement(['customer', 'fraud', 'inventory', 'declined', 'other']),
|
|
26450
25427
|
'io.flow.shopify.external.v0.enums.discount_status': (): io.flow.shopify.external.v0.enums.DiscountStatus => faker.helpers.arrayElement(['enabled', 'disabled', 'depleted']),
|
|
26451
25428
|
'io.flow.shopify.external.v0.enums.discount_type': (): io.flow.shopify.external.v0.enums.DiscountType => faker.helpers.arrayElement(['fixed_amount', 'percentage', 'shipping']),
|
|
@@ -27947,7 +26924,7 @@ const factories = {
|
|
|
27947
26924
|
'shopify_webhook',
|
|
27948
26925
|
]),
|
|
27949
26926
|
|
|
27950
|
-
'io.flow.shopify.markets.internal.v0.enums.product_status': (): io.flow.shopify.markets.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft']),
|
|
26927
|
+
'io.flow.shopify.markets.internal.v0.enums.product_status': (): io.flow.shopify.markets.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft', 'unlisted']),
|
|
27951
26928
|
|
|
27952
26929
|
'io.flow.shopify.markets.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.shopify.markets.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
|
|
27953
26930
|
'aerosols',
|
|
@@ -28081,6 +27058,20 @@ const factories = {
|
|
|
28081
27058
|
destination: factories.string(),
|
|
28082
27059
|
}),
|
|
28083
27060
|
|
|
27061
|
+
'io.flow.shopify.markets.internal.v0.models.shopify_hs10_code': (): io.flow.shopify.markets.internal.v0.models.ShopifyHs10Code => ({
|
|
27062
|
+
country_code: factories.string(),
|
|
27063
|
+
code: factories.string(),
|
|
27064
|
+
}),
|
|
27065
|
+
|
|
27066
|
+
'io.flow.shopify.markets.internal.v0.models.shopify_hs10_codes': (): io.flow.shopify.markets.internal.v0.models.ShopifyHs10Codes => ({
|
|
27067
|
+
id: factories.string(),
|
|
27068
|
+
item_number: factories.string(),
|
|
27069
|
+
|
|
27070
|
+
codes: arrayOf(
|
|
27071
|
+
() => factories['io.flow.shopify.markets.internal.v0.models.shopify_hs10_code'](),
|
|
27072
|
+
),
|
|
27073
|
+
}),
|
|
27074
|
+
|
|
28084
27075
|
'io.flow.shopify.markets.internal.v0.models.shopify_markets_best_selling_product': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct => ({
|
|
28085
27076
|
id: factories.string(),
|
|
28086
27077
|
}),
|
|
@@ -29341,291 +28332,6 @@ const factories = {
|
|
|
29341
28332
|
return f();
|
|
29342
28333
|
},
|
|
29343
28334
|
|
|
29344
|
-
'io.flow.shopify.v0.enums.shopify_grant': (): io.flow.shopify.v0.enums.ShopifyGrant => faker.helpers.arrayElement(['customer', 'discount', 'gift_card', 'metafield', 'order']),
|
|
29345
|
-
'io.flow.shopify.v0.enums.shopify_localization_method': (): io.flow.shopify.v0.enums.ShopifyLocalizationMethod => faker.helpers.arrayElement(['api', 'ssr']),
|
|
29346
|
-
'io.flow.shopify.v0.enums.shopify_sync_check': (): io.flow.shopify.v0.enums.ShopifySyncCheck => faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']),
|
|
29347
|
-
|
|
29348
|
-
'io.flow.shopify.v0.models.flow_center_reference': (): io.flow.shopify.v0.models.FlowCenterReference => ({
|
|
29349
|
-
key: factories.string(),
|
|
29350
|
-
}),
|
|
29351
|
-
|
|
29352
|
-
'io.flow.shopify.v0.models.geo_form': (): io.flow.shopify.v0.models.GeoForm => ({
|
|
29353
|
-
country: factories.string(),
|
|
29354
|
-
currency: factories.string(),
|
|
29355
|
-
language: factories.string(),
|
|
29356
|
-
locale: factories.string(),
|
|
29357
|
-
experience: factories.string(),
|
|
29358
|
-
}),
|
|
29359
|
-
|
|
29360
|
-
'io.flow.shopify.v0.models.shopify_cart': (): io.flow.shopify.v0.models.ShopifyCart => ({
|
|
29361
|
-
id: factories.string(),
|
|
29362
|
-
items: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_cart_item']()),
|
|
29363
|
-
item_count: factories.long(),
|
|
29364
|
-
total_price: factories.long(),
|
|
29365
|
-
local: factories['io.flow.shopify.v0.models.shopify_local_cart_metadata'](),
|
|
29366
|
-
attributes: factories.object(),
|
|
29367
|
-
note: factories.string(),
|
|
29368
|
-
requires_shipping: factories.boolean(),
|
|
29369
|
-
total_weight: factories.long(),
|
|
29370
|
-
}),
|
|
29371
|
-
|
|
29372
|
-
'io.flow.shopify.v0.models.shopify_cart_add_multiple_form': (): io.flow.shopify.v0.models.ShopifyCartAddMultipleForm => ({
|
|
29373
|
-
discriminator: 'shopify_cart_add_multiple_form',
|
|
29374
|
-
|
|
29375
|
-
items: arrayOf(
|
|
29376
|
-
() => factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](),
|
|
29377
|
-
),
|
|
29378
|
-
|
|
29379
|
-
attributes: objectOf(() => factories.string()),
|
|
29380
|
-
}),
|
|
29381
|
-
|
|
29382
|
-
'io.flow.shopify.v0.models.shopify_cart_add_single_form': (): io.flow.shopify.v0.models.ShopifyCartAddSingleForm => ({
|
|
29383
|
-
discriminator: 'shopify_cart_add_single_form',
|
|
29384
|
-
id: factories.long(),
|
|
29385
|
-
quantity: factories.long(),
|
|
29386
|
-
properties: objectOf(() => factories.string()),
|
|
29387
|
-
}),
|
|
29388
|
-
|
|
29389
|
-
'io.flow.shopify.v0.models.shopify_cart_change_form': (): io.flow.shopify.v0.models.ShopifyCartChangeForm => ({
|
|
29390
|
-
quantity: factories.long(),
|
|
29391
|
-
line: factories.long(),
|
|
29392
|
-
id: factories.long(),
|
|
29393
|
-
properties: objectOf(() => factories.string()),
|
|
29394
|
-
}),
|
|
29395
|
-
|
|
29396
|
-
'io.flow.shopify.v0.models.shopify_cart_conversion': (): io.flow.shopify.v0.models.ShopifyCartConversion => ({
|
|
29397
|
-
flow: factories['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'](),
|
|
29398
|
-
shopify: factories['io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart'](),
|
|
29399
|
-
}),
|
|
29400
|
-
|
|
29401
|
-
'io.flow.shopify.v0.models.shopify_cart_conversion_flow_order': (): io.flow.shopify.v0.models.ShopifyCartConversionFlowOrder => ({
|
|
29402
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
29403
|
-
errors: arrayOf(() => factories['io.flow.experience.v0.models.order_error']()),
|
|
29404
|
-
}),
|
|
29405
|
-
|
|
29406
|
-
'io.flow.shopify.v0.models.shopify_cart_conversion_shopify_cart': (): io.flow.shopify.v0.models.ShopifyCartConversionShopifyCart => ({
|
|
29407
|
-
cart: factories['io.flow.shopify.external.v0.models.shopify_external_cart'](),
|
|
29408
|
-
}),
|
|
29409
|
-
|
|
29410
|
-
'io.flow.shopify.v0.models.shopify_cart_item': (): io.flow.shopify.v0.models.ShopifyCartItem => ({
|
|
29411
|
-
id: factories.string(),
|
|
29412
|
-
handle: factories.string(),
|
|
29413
|
-
line_price: factories.double(),
|
|
29414
|
-
price: factories.long(),
|
|
29415
|
-
product_id: factories.long(),
|
|
29416
|
-
product_title: factories.string(),
|
|
29417
|
-
quantity: factories.long(),
|
|
29418
|
-
title: factories.string(),
|
|
29419
|
-
url: factories.string(),
|
|
29420
|
-
variant_id: factories.long(),
|
|
29421
|
-
local: factories['io.flow.shopify.v0.models.shopify_local_cart_item_metadata'](),
|
|
29422
|
-
gift_card: factories.boolean(),
|
|
29423
|
-
image: factories.string(),
|
|
29424
|
-
product_description: factories.string(),
|
|
29425
|
-
product_type: factories.string(),
|
|
29426
|
-
properties: objectOf(() => factories.string()),
|
|
29427
|
-
requires_shipping: factories.boolean(),
|
|
29428
|
-
sku: factories.string(),
|
|
29429
|
-
variant_title: factories.string(),
|
|
29430
|
-
variant_options: arrayOf(() => factories.string()),
|
|
29431
|
-
vendor: factories.string(),
|
|
29432
|
-
}),
|
|
29433
|
-
|
|
29434
|
-
'io.flow.shopify.v0.models.shopify_customer_metafield_value': (): io.flow.shopify.v0.models.ShopifyCustomerMetafieldValue => ({
|
|
29435
|
-
flow_consumer_id: factories.string(),
|
|
29436
|
-
}),
|
|
29437
|
-
|
|
29438
|
-
'io.flow.shopify.v0.models.shopify_item_event_bucket': (): io.flow.shopify.v0.models.ShopifyItemEventBucket => ({
|
|
29439
|
-
discriminator: 'shopify_item_event_bucket',
|
|
29440
|
-
range: factories['io.flow.common.v0.models.datetime_range'](),
|
|
29441
|
-
count: factories.long(),
|
|
29442
|
-
data: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_item_event_data']()),
|
|
29443
|
-
}),
|
|
29444
|
-
|
|
29445
|
-
'io.flow.shopify.v0.models.shopify_item_event_data': (): io.flow.shopify.v0.models.ShopifyItemEventData => ({
|
|
29446
|
-
created_at: factories.date_time_iso_8601(),
|
|
29447
|
-
experience: factories['io.flow.experience.v0.models.experience_reference'](),
|
|
29448
|
-
item: factories['io.flow.common.v0.models.catalog_item_summary'](),
|
|
29449
|
-
}),
|
|
29450
|
-
|
|
29451
|
-
'io.flow.shopify.v0.models.shopify_line': (): io.flow.shopify.v0.models.ShopifyLine => ({
|
|
29452
|
-
variant_id: factories.long(),
|
|
29453
|
-
quantity: factories.long(),
|
|
29454
|
-
price: factories['io.flow.shopify.v0.models.shopify_price'](),
|
|
29455
|
-
total: factories['io.flow.shopify.v0.models.shopify_price'](),
|
|
29456
|
-
price_source: factories['io.flow.common.v0.unions.price_source'](),
|
|
29457
|
-
}),
|
|
29458
|
-
|
|
29459
|
-
'io.flow.shopify.v0.models.shopify_local_cart_item_metadata': (): io.flow.shopify.v0.models.ShopifyLocalCartItemMetadata => ({
|
|
29460
|
-
line_price: factories['io.flow.common.v0.models.price_with_base'](),
|
|
29461
|
-
price: factories['io.flow.common.v0.models.price_with_base'](),
|
|
29462
|
-
}),
|
|
29463
|
-
|
|
29464
|
-
'io.flow.shopify.v0.models.shopify_local_cart_metadata': (): io.flow.shopify.v0.models.ShopifyLocalCartMetadata => ({
|
|
29465
|
-
total_price: factories['io.flow.common.v0.models.price_with_base'](),
|
|
29466
|
-
promotions: factories['io.flow.experience.v0.models.promotions'](),
|
|
29467
|
-
rules: factories['io.flow.experience.v0.models.order_rules_summary'](),
|
|
29468
|
-
subtotal: factories['io.flow.common.v0.models.price_with_base'](),
|
|
29469
|
-
vat: factories['io.flow.common.v0.models.price_with_base'](),
|
|
29470
|
-
duty: factories['io.flow.common.v0.models.price_with_base'](),
|
|
29471
|
-
discount: factories['io.flow.common.v0.models.price_with_base'](),
|
|
29472
|
-
}),
|
|
29473
|
-
|
|
29474
|
-
'io.flow.shopify.v0.models.shopify_local_price_metadata': (): io.flow.shopify.v0.models.ShopifyLocalPriceMetadata => ({
|
|
29475
|
-
price: factories['io.flow.common.v0.models.price_with_base'](),
|
|
29476
|
-
}),
|
|
29477
|
-
|
|
29478
|
-
'io.flow.shopify.v0.models.shopify_localization_setting': (): io.flow.shopify.v0.models.ShopifyLocalizationSetting => ({
|
|
29479
|
-
id: factories.string(),
|
|
29480
|
-
method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
|
|
29481
|
-
datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
|
|
29482
|
-
}),
|
|
29483
|
-
|
|
29484
|
-
'io.flow.shopify.v0.models.shopify_localization_setting_form': (): io.flow.shopify.v0.models.ShopifyLocalizationSettingForm => ({
|
|
29485
|
-
method: factories['io.flow.shopify.v0.enums.shopify_localization_method'](),
|
|
29486
|
-
datetime_range: factories['io.flow.common.v0.models.datetime_range'](),
|
|
29487
|
-
}),
|
|
29488
|
-
|
|
29489
|
-
'io.flow.shopify.v0.models.shopify_localized_order': (): io.flow.shopify.v0.models.ShopifyLocalizedOrder => ({
|
|
29490
|
-
id: factories.long(),
|
|
29491
|
-
lines: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_line']()),
|
|
29492
|
-
prices: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_price']()),
|
|
29493
|
-
total: factories['io.flow.shopify.v0.models.shopify_price'](),
|
|
29494
|
-
allocation_details: arrayOf(() => factories['io.flow.experience.v0.unions.allocation_detail']()),
|
|
29495
|
-
merchant_of_record: factories['io.flow.common.v0.enums.order_merchant_of_record'](),
|
|
29496
|
-
merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
29497
|
-
incoterm: factories['io.flow.common.v0.enums.incoterm'](),
|
|
29498
|
-
flow_order_id: factories.string(),
|
|
29499
|
-
tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
|
|
29500
|
-
geo: factories['io.flow.experience.v0.models.order_geo'](),
|
|
29501
|
-
}),
|
|
29502
|
-
|
|
29503
|
-
'io.flow.shopify.v0.models.shopify_localized_variant': (): io.flow.shopify.v0.models.ShopifyLocalizedVariant => ({
|
|
29504
|
-
id: factories.long(),
|
|
29505
|
-
handle: factories.string(),
|
|
29506
|
-
experience: factories['io.flow.experience.v0.models.experience_reference'](),
|
|
29507
|
-
prices: factories['io.flow.shopify.v0.models.shopify_localized_variant_prices'](),
|
|
29508
|
-
status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
|
|
29509
|
-
inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
|
|
29510
|
-
}),
|
|
29511
|
-
|
|
29512
|
-
'io.flow.shopify.v0.models.shopify_localized_variant_prices': (): io.flow.shopify.v0.models.ShopifyLocalizedVariantPrices => ({
|
|
29513
|
-
item: factories['io.flow.shopify.v0.models.shopify_price'](),
|
|
29514
|
-
compare_at: factories['io.flow.shopify.v0.models.shopify_price'](),
|
|
29515
|
-
vat: factories['io.flow.shopify.v0.models.shopify_price'](),
|
|
29516
|
-
duty: factories['io.flow.shopify.v0.models.shopify_price'](),
|
|
29517
|
-
}),
|
|
29518
|
-
|
|
29519
|
-
'io.flow.shopify.v0.models.shopify_location_flow_center_mapping': (): io.flow.shopify.v0.models.ShopifyLocationFlowCenterMapping => ({
|
|
29520
|
-
id: factories.string(),
|
|
29521
|
-
shopify_location: factories['io.flow.shopify.v0.models.shopify_location_reference'](),
|
|
29522
|
-
flow_center: factories['io.flow.shopify.v0.models.flow_center_reference'](),
|
|
29523
|
-
}),
|
|
29524
|
-
|
|
29525
|
-
'io.flow.shopify.v0.models.shopify_location_flow_center_mapping_form': (): io.flow.shopify.v0.models.ShopifyLocationFlowCenterMappingForm => ({
|
|
29526
|
-
shopify_location_id: factories.long(),
|
|
29527
|
-
flow_center_key: factories.string(),
|
|
29528
|
-
}),
|
|
29529
|
-
|
|
29530
|
-
'io.flow.shopify.v0.models.shopify_location_reference': (): io.flow.shopify.v0.models.ShopifyLocationReference => ({
|
|
29531
|
-
id: factories.string(),
|
|
29532
|
-
}),
|
|
29533
|
-
|
|
29534
|
-
'io.flow.shopify.v0.models.shopify_order_attributes_form': (): io.flow.shopify.v0.models.ShopifyOrderAttributesForm => ({
|
|
29535
|
-
attributes: objectOf(() => factories.string()),
|
|
29536
|
-
}),
|
|
29537
|
-
|
|
29538
|
-
'io.flow.shopify.v0.models.shopify_order_delivery_metafield': (): io.flow.shopify.v0.models.ShopifyOrderDeliveryMetafield => ({
|
|
29539
|
-
key: factories.string(),
|
|
29540
|
-
|
|
29541
|
-
items: arrayOf(
|
|
29542
|
-
() => factories['io.flow.shopify.v0.models.shopify_order_delivery_metafield_item'](),
|
|
29543
|
-
),
|
|
29544
|
-
|
|
29545
|
-
service: factories['io.flow.fulfillment.v0.models.service_summary'](),
|
|
29546
|
-
window: factories['io.flow.fulfillment.v0.models.delivery_window'](),
|
|
29547
|
-
liability: factories['io.flow.fulfillment.v0.enums.ratecard_owner'](),
|
|
29548
|
-
cost: factories['io.flow.common.v0.models.money_with_optional_base'](),
|
|
29549
|
-
prices: arrayOf(() => factories['io.flow.shopify.v0.models.shopify_price']()),
|
|
29550
|
-
total: factories['io.flow.shopify.v0.models.shopify_price'](),
|
|
29551
|
-
merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
29552
|
-
}),
|
|
29553
|
-
|
|
29554
|
-
'io.flow.shopify.v0.models.shopify_order_delivery_metafield_item': (): io.flow.shopify.v0.models.ShopifyOrderDeliveryMetafieldItem => ({
|
|
29555
|
-
number: factories.string(),
|
|
29556
|
-
quantity: factories.long(),
|
|
29557
|
-
}),
|
|
29558
|
-
|
|
29559
|
-
'io.flow.shopify.v0.models.shopify_order_price_attributes_metafield': (): io.flow.shopify.v0.models.ShopifyOrderPriceAttributesMetafield => ({
|
|
29560
|
-
item_number: factories.string(),
|
|
29561
|
-
price_attributes: objectOf(() => factories['io.flow.common.v0.models.price_with_base']()),
|
|
29562
|
-
}),
|
|
29563
|
-
|
|
29564
|
-
'io.flow.shopify.v0.models.shopify_order_romanization_metafield': (): io.flow.shopify.v0.models.ShopifyOrderRomanizationMetafield => ({
|
|
29565
|
-
destination: factories['io.flow.experience.v0.models.order_address'](),
|
|
29566
|
-
billing: factories['io.flow.common.v0.models.billing_address'](),
|
|
29567
|
-
}),
|
|
29568
|
-
|
|
29569
|
-
'io.flow.shopify.v0.models.shopify_price': (): io.flow.shopify.v0.models.ShopifyPrice => ({
|
|
29570
|
-
name: factories.string(),
|
|
29571
|
-
amount: factories.double(),
|
|
29572
|
-
cents: factories.double(),
|
|
29573
|
-
currency: factories.string(),
|
|
29574
|
-
label: factories.string(),
|
|
29575
|
-
includes: factories['io.flow.common.v0.models.included_levies'](),
|
|
29576
|
-
local: factories['io.flow.shopify.v0.models.shopify_local_price_metadata'](),
|
|
29577
|
-
}),
|
|
29578
|
-
|
|
29579
|
-
'io.flow.shopify.v0.models.shopify_private_app': (): io.flow.shopify.v0.models.ShopifyPrivateApp => ({
|
|
29580
|
-
id: factories.string(),
|
|
29581
|
-
api_key: factories.string(),
|
|
29582
|
-
password: factories.string(),
|
|
29583
|
-
}),
|
|
29584
|
-
|
|
29585
|
-
'io.flow.shopify.v0.models.shopify_private_app_form': (): io.flow.shopify.v0.models.ShopifyPrivateAppForm => ({
|
|
29586
|
-
api_key: factories.string(),
|
|
29587
|
-
password: factories.string(),
|
|
29588
|
-
}),
|
|
29589
|
-
|
|
29590
|
-
'io.flow.shopify.v0.models.shopify_sync_status': (): io.flow.shopify.v0.models.ShopifySyncStatus => ({
|
|
29591
|
-
sync_check: factories['io.flow.shopify.v0.enums.shopify_sync_check'](),
|
|
29592
|
-
range: factories['io.flow.common.v0.models.datetime_range'](),
|
|
29593
|
-
interval_seconds: factories.long(),
|
|
29594
|
-
total: factories.long(),
|
|
29595
|
-
buckets: arrayOf(() => factories['io.flow.shopify.v0.unions.shopify_event_bucket']()),
|
|
29596
|
-
}),
|
|
29597
|
-
|
|
29598
|
-
'io.flow.shopify.v0.models.shopify_variant_flow_metafield': (): io.flow.shopify.v0.models.ShopifyVariantFlowMetafield => ({
|
|
29599
|
-
prices_item: factories.string(),
|
|
29600
|
-
prices_currency: factories.string(),
|
|
29601
|
-
prices_includes: factories.string(),
|
|
29602
|
-
prices_vat: factories.string(),
|
|
29603
|
-
prices_vat_name: factories.string(),
|
|
29604
|
-
prices_duty: factories.string(),
|
|
29605
|
-
prices_compare_at: factories.string(),
|
|
29606
|
-
prices_status: factories['io.flow.catalog.v0.enums.subcatalog_item_status'](),
|
|
29607
|
-
inventory_status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
|
|
29608
|
-
}),
|
|
29609
|
-
|
|
29610
|
-
'io.flow.shopify.v0.models.shopify_variant_inventory_metafield': (): io.flow.shopify.v0.models.ShopifyVariantInventoryMetafield => ({
|
|
29611
|
-
experience: factories['io.flow.experience.v0.models.experience_reference'](),
|
|
29612
|
-
status: factories['io.flow.fulfillment.v0.enums.item_availability_status'](),
|
|
29613
|
-
}),
|
|
29614
|
-
|
|
29615
|
-
'io.flow.shopify.v0.unions.shopify_cart_add_form': (): io.flow.shopify.v0.unions.ShopifyCartAddForm => {
|
|
29616
|
-
const f = faker.helpers.arrayElement([
|
|
29617
|
-
() => factories['io.flow.shopify.v0.models.shopify_cart_add_single_form'](),
|
|
29618
|
-
() => factories['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'](),
|
|
29619
|
-
]);
|
|
29620
|
-
|
|
29621
|
-
return f();
|
|
29622
|
-
},
|
|
29623
|
-
|
|
29624
|
-
'io.flow.shopify.v0.unions.shopify_event_bucket': (): io.flow.shopify.v0.unions.ShopifyEventBucket => {
|
|
29625
|
-
const f = faker.helpers.arrayElement([() => factories['io.flow.shopify.v0.models.shopify_item_event_bucket']()]);
|
|
29626
|
-
return f();
|
|
29627
|
-
},
|
|
29628
|
-
|
|
29629
28335
|
'io.flow.stripe.v0.enums.account_type': (): io.flow.stripe.v0.enums.AccountType => faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']),
|
|
29630
28336
|
'io.flow.stripe.v0.enums.apple_pay_type': (): io.flow.stripe.v0.enums.ApplePayType => faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']),
|
|
29631
28337
|
|
|
@@ -31954,10 +30660,6 @@ export const makeAccountUpsertedV2 = () => factories['io.flow.internal.v0.models
|
|
|
31954
30660
|
export const makeAccountingPendingOrderMetadata = () => factories['io.flow.internal.v0.models.accounting_pending_order_metadata']();
|
|
31955
30661
|
export const makeActionQuantity = () => factories['io.flow.internal.v0.models.action_quantity']();
|
|
31956
30662
|
export const makeAdditionalImportTax = () => factories['io.flow.internal.v0.models.additional_import_tax']();
|
|
31957
|
-
export const makeAddressConfigurationProvinceSetting = () => factories['io.flow.internal.v0.models.address_configuration_province_setting']();
|
|
31958
|
-
export const makeAddressConfigurationSetting = () => factories['io.flow.internal.v0.models.address_configuration_setting']();
|
|
31959
|
-
export const makeAddressConfigurationSettingForm = () => factories['io.flow.internal.v0.models.address_configuration_setting_form']();
|
|
31960
|
-
export const makeAddressConfigurationSettingProvinceCode = () => factories['io.flow.internal.v0.enums.address_configuration_setting_province_code']();
|
|
31961
30663
|
export const makeAdjustmentAmount = () => factories['io.flow.internal.v0.unions.adjustment_amount']();
|
|
31962
30664
|
export const makeAdjustmentAmountFixed = () => factories['io.flow.internal.v0.models.adjustment_amount_fixed']();
|
|
31963
30665
|
export const makeAdjustmentAmountPercentage = () => factories['io.flow.internal.v0.models.adjustment_amount_percentage']();
|
|
@@ -32017,11 +30719,6 @@ export const makeAftershipWebhook = () => factories['io.flow.internal.v0.models.
|
|
|
32017
30719
|
export const makeAldoItem = () => factories['io.flow.internal.v0.models.aldo_item']();
|
|
32018
30720
|
export const makeAldoItemForm = () => factories['io.flow.internal.v0.models.aldo_item_form']();
|
|
32019
30721
|
export const makeAldoItemType = () => factories['io.flow.internal.v0.enums.aldo_item_type']();
|
|
32020
|
-
export const makeAlertErrorSummary = () => factories['io.flow.internal.v0.models.alert_error_summary']();
|
|
32021
|
-
export const makeAlertFailureSummary = () => factories['io.flow.internal.v0.models.alert_failure_summary']();
|
|
32022
|
-
export const makeAlertFailureSummaryDetail = () => factories['io.flow.internal.v0.models.alert_failure_summary_detail']();
|
|
32023
|
-
export const makeAlertImportSummary = () => factories['io.flow.internal.v0.models.alert_import_summary']();
|
|
32024
|
-
export const makeAlertRequeueSummary = () => factories['io.flow.internal.v0.models.alert_requeue_summary']();
|
|
32025
30722
|
export const makeAllItemsExport = () => factories['io.flow.internal.v0.models.all_items_export']();
|
|
32026
30723
|
export const makeAllOrganizationsMembership = () => factories['io.flow.internal.v0.models.all_organizations_membership']();
|
|
32027
30724
|
export const makeAllocationItemReference = () => factories['io.flow.internal.v0.models.allocation_item_reference']();
|
|
@@ -32031,7 +30728,6 @@ export const makeAnshItemForm = () => factories['io.flow.internal.v0.models.ansh
|
|
|
32031
30728
|
export const makeAnshItemType = () => factories['io.flow.internal.v0.enums.ansh_item_type']();
|
|
32032
30729
|
export const makeAnyDangerousGoods = () => factories['io.flow.internal.v0.enums.any_dangerous_goods']();
|
|
32033
30730
|
export const makeApiCallReferenceId = () => factories['io.flow.internal.v0.enums.api_call_reference_id']();
|
|
32034
|
-
export const makeApmContent = () => factories['io.flow.internal.v0.models.apm_content']();
|
|
32035
30731
|
export const makeApplePayAuthorizationPayload = () => factories['io.flow.internal.v0.models.apple_pay_authorization_payload']();
|
|
32036
30732
|
export const makeApplicablePreferentialRate = () => factories['io.flow.internal.v0.enums.applicable_preferential_rate']();
|
|
32037
30733
|
export const makeApplyAtValueForm = () => factories['io.flow.internal.v0.models.apply_at_value_form']();
|
|
@@ -32056,6 +30752,8 @@ export const makeBankAccountReference = () => factories['io.flow.internal.v0.mod
|
|
|
32056
30752
|
export const makeBankAccountStatus = () => factories['io.flow.internal.v0.enums.bank_account_status']();
|
|
32057
30753
|
export const makeBankPayment = () => factories['io.flow.internal.v0.models.bank_payment']();
|
|
32058
30754
|
export const makeBankPaymentDeletedV2 = () => factories['io.flow.internal.v0.models.bank_payment_deleted_v2']();
|
|
30755
|
+
export const makeBankPaymentDetail = () => factories['io.flow.internal.v0.models.bank_payment_detail']();
|
|
30756
|
+
export const makeBankPaymentDetailAttachment = () => factories['io.flow.internal.v0.models.bank_payment_detail_attachment']();
|
|
32059
30757
|
export const makeBankPaymentForm = () => factories['io.flow.internal.v0.models.bank_payment_form']();
|
|
32060
30758
|
export const makeBankPaymentOrder = () => factories['io.flow.internal.v0.models.bank_payment_order']();
|
|
32061
30759
|
export const makeBankPaymentOrderDeleted = () => factories['io.flow.internal.v0.models.bank_payment_order_deleted']();
|
|
@@ -32238,7 +30936,6 @@ export const makeChargebackPaymentStatus = () => factories['io.flow.internal.v0.
|
|
|
32238
30936
|
export const makeChargebackProcessStatus = () => factories['io.flow.internal.v0.enums.chargeback_process_status']();
|
|
32239
30937
|
export const makeChargebackUpserted = () => factories['io.flow.internal.v0.models.chargeback_upserted']();
|
|
32240
30938
|
export const makeChargebackVersion = () => factories['io.flow.internal.v0.models.chargeback_version']();
|
|
32241
|
-
export const makeCheckbox = () => factories['io.flow.internal.v0.models.checkbox']();
|
|
32242
30939
|
export const makeCheckoutAnalytics = () => factories['io.flow.internal.v0.models.checkout_analytics']();
|
|
32243
30940
|
export const makeCheckoutAsset = () => factories['io.flow.internal.v0.models.checkout_asset']();
|
|
32244
30941
|
export const makeCheckoutAssetType = () => factories['io.flow.internal.v0.enums.checkout_asset_type']();
|
|
@@ -32248,22 +30945,9 @@ export const makeCheckoutBehaviorCustomerInfoEmail = () => factories['io.flow.in
|
|
|
32248
30945
|
export const makeCheckoutBehaviorShippingAddress = () => factories['io.flow.internal.v0.models.checkout_behavior_shipping_address']();
|
|
32249
30946
|
export const makeCheckoutBehaviorShippingMethod = () => factories['io.flow.internal.v0.models.checkout_behavior_shipping_method']();
|
|
32250
30947
|
export const makeCheckoutConfiguration = () => factories['io.flow.internal.v0.models.checkout_configuration']();
|
|
32251
|
-
export const makeCheckoutConfigurationDeleted = () => factories['io.flow.internal.v0.models.checkout_configuration_deleted']();
|
|
32252
30948
|
export const makeCheckoutConfigurationForm = () => factories['io.flow.internal.v0.models.checkout_configuration_form']();
|
|
32253
30949
|
export const makeCheckoutConfigurationReference = () => factories['io.flow.internal.v0.models.checkout_configuration_reference']();
|
|
32254
|
-
export const makeCheckoutConfigurationUpserted = () => factories['io.flow.internal.v0.models.checkout_configuration_upserted']();
|
|
32255
|
-
export const makeCheckoutContent = () => factories['io.flow.internal.v0.models.checkout_content']();
|
|
32256
|
-
export const makeCheckoutContentDetails = () => factories['io.flow.internal.v0.models.checkout_content_details']();
|
|
32257
|
-
export const makeCheckoutContentSummary = () => factories['io.flow.internal.v0.models.checkout_content_summary']();
|
|
32258
|
-
export const makeCheckoutError = () => factories['io.flow.internal.v0.models.checkout_error']();
|
|
32259
|
-
export const makeCheckoutErrorCode = () => factories['io.flow.internal.v0.enums.checkout_error_code']();
|
|
32260
|
-
export const makeCheckoutMarketingContent = () => factories['io.flow.internal.v0.models.checkout_marketing_content']();
|
|
32261
|
-
export const makeCheckoutPayment = () => factories['io.flow.internal.v0.models.checkout_payment']();
|
|
32262
|
-
export const makeCheckoutPaymentContent = () => factories['io.flow.internal.v0.models.checkout_payment_content']();
|
|
32263
|
-
export const makeCheckoutPlatformData = () => factories['io.flow.internal.v0.models.checkout_platform_data']();
|
|
32264
30950
|
export const makeCheckoutPromptBehavior = () => factories['io.flow.internal.v0.enums.checkout_prompt_behavior']();
|
|
32265
|
-
export const makeCheckoutRedirect = () => factories['io.flow.internal.v0.models.checkout_redirect']();
|
|
32266
|
-
export const makeCheckoutRedirectMethod = () => factories['io.flow.internal.v0.enums.checkout_redirect_method']();
|
|
32267
30951
|
export const makeCheckoutSettings = () => factories['io.flow.internal.v0.models.checkout_settings']();
|
|
32268
30952
|
export const makeCheckoutShippingMethodPromptBehavior = () => factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior']();
|
|
32269
30953
|
export const makeCheckoutUrl = () => factories['io.flow.internal.v0.models.checkout_url']();
|
|
@@ -32328,24 +31012,6 @@ export const makeConnectReportTransferTransferType = () => factories['io.flow.in
|
|
|
32328
31012
|
export const makeConsoleLabelRequestForm = () => factories['io.flow.internal.v0.models.console_label_request_form']();
|
|
32329
31013
|
export const makeConsoleLabelValidationForm = () => factories['io.flow.internal.v0.unions.console_label_validation_form']();
|
|
32330
31014
|
export const makeConsoleMarkUnresolvableForm = () => factories['io.flow.internal.v0.models.console_mark_unresolvable_form']();
|
|
32331
|
-
export const makeConsumerOptinActivity = () => factories['io.flow.internal.v0.models.consumer_optin_activity']();
|
|
32332
|
-
export const makeContentElementType = () => factories['io.flow.internal.v0.enums.content_element_type']();
|
|
32333
|
-
export const makeContentItem = () => factories['io.flow.internal.v0.unions.content_item']();
|
|
32334
|
-
export const makeContentLabel = () => factories['io.flow.internal.v0.models.content_label']();
|
|
32335
|
-
export const makeContentSchema = () => factories['io.flow.internal.v0.models.content_schema']();
|
|
32336
|
-
export const makeContentSchemaElement = () => factories['io.flow.internal.v0.models.content_schema_element']();
|
|
32337
|
-
export const makeContentSchemaForm = () => factories['io.flow.internal.v0.models.content_schema_form']();
|
|
32338
|
-
export const makeContentSchemaSummary = () => factories['io.flow.internal.v0.models.content_schema_summary']();
|
|
32339
|
-
export const makeContentStatus = () => factories['io.flow.internal.v0.enums.content_status']();
|
|
32340
|
-
export const makeContentType = () => factories['io.flow.internal.v0.enums.content_type']();
|
|
32341
|
-
export const makeContentTypeCast = () => factories['io.flow.internal.v0.enums.content_type_cast']();
|
|
32342
|
-
export const makeCountryPickerCountry = () => factories['io.flow.internal.v0.models.country_picker_country']();
|
|
32343
|
-
export const makeCountryPickerCountryData = () => factories['io.flow.internal.v0.models.country_picker_country_data']();
|
|
32344
|
-
export const makeCountryPickerCurrency = () => factories['io.flow.internal.v0.models.country_picker_currency']();
|
|
32345
|
-
export const makeCountryPickerData = () => factories['io.flow.internal.v0.models.country_picker_data']();
|
|
32346
|
-
export const makeCountryPickerDeliveryWindow = () => factories['io.flow.internal.v0.models.country_picker_delivery_window']();
|
|
32347
|
-
export const makeCountryPickerExperienceData = () => factories['io.flow.internal.v0.models.country_picker_experience_data']();
|
|
32348
|
-
export const makeCountryPickerPaymentMethod = () => factories['io.flow.internal.v0.models.country_picker_payment_method']();
|
|
32349
31015
|
export const makeCourthouseProductSummary = () => factories['io.flow.internal.v0.models.courthouse_product_summary']();
|
|
32350
31016
|
export const makeCrossdockTrackingStatus = () => factories['io.flow.internal.v0.enums.crossdock_tracking_status']();
|
|
32351
31017
|
export const makeCryptoAccount = () => factories['io.flow.internal.v0.models.crypto_account']();
|
|
@@ -32368,6 +31034,7 @@ export const makeCustomsProductLabels = () => factories['io.flow.internal.v0.mod
|
|
|
32368
31034
|
export const makeDailyValue = () => factories['io.flow.internal.v0.models.daily_value']();
|
|
32369
31035
|
export const makeDailyValueDeleted = () => factories['io.flow.internal.v0.models.daily_value_deleted']();
|
|
32370
31036
|
export const makeDailyValueUpserted = () => factories['io.flow.internal.v0.models.daily_value_upserted']();
|
|
31037
|
+
export const makeDatabase = () => factories['io.flow.internal.v0.models.database']();
|
|
32371
31038
|
export const makeDebugAccountingTransaction = () => factories['io.flow.internal.v0.models.debug_accounting_transaction']();
|
|
32372
31039
|
export const makeDebugAccountingTransactionType = () => factories['io.flow.internal.v0.enums.debug_accounting_transaction_type']();
|
|
32373
31040
|
export const makeDebugAdjustment = () => factories['io.flow.internal.v0.models.debug_adjustment']();
|
|
@@ -32407,7 +31074,6 @@ export const makeDeminimisAdjustmentType = () => factories['io.flow.internal.v0.
|
|
|
32407
31074
|
export const makeDestinationError = () => factories['io.flow.internal.v0.models.destination_error']();
|
|
32408
31075
|
export const makeDhl = () => factories['io.flow.internal.v0.models.dhl']();
|
|
32409
31076
|
export const makeDhlEcommerce = () => factories['io.flow.internal.v0.models.dhl_ecommerce']();
|
|
32410
|
-
export const makeDict = () => factories['io.flow.internal.v0.models.dict']();
|
|
32411
31077
|
export const makeDimensionEstimateOpsInput = () => factories['io.flow.internal.v0.models.dimension_estimate_ops_input']();
|
|
32412
31078
|
export const makeDiscount = () => factories['io.flow.internal.v0.models.discount']();
|
|
32413
31079
|
export const makeDiscountCode = () => factories['io.flow.internal.v0.models.discount_code']();
|
|
@@ -32555,9 +31221,6 @@ export const makeFinanceBankAccount = () => factories['io.flow.internal.v0.model
|
|
|
32555
31221
|
export const makeFinanceBankAccountOwner = () => factories['io.flow.internal.v0.models.finance_bank_account_owner']();
|
|
32556
31222
|
export const makeFinanceBankPayment = () => factories['io.flow.internal.v0.models.finance_bank_payment']();
|
|
32557
31223
|
export const makeFinancialMerchantCategory = () => factories['io.flow.internal.v0.models.financial_merchant_category']();
|
|
32558
|
-
export const makeFinancialReportingResponsibleParty = () => factories['io.flow.internal.v0.enums.financial_reporting_responsible_party']();
|
|
32559
|
-
export const makeFinancialReportingStatement = () => factories['io.flow.internal.v0.models.financial_reporting_statement']();
|
|
32560
|
-
export const makeFinancialReportingStatementForm = () => factories['io.flow.internal.v0.models.financial_reporting_statement_form']();
|
|
32561
31224
|
export const makeFiservAccount = () => factories['io.flow.internal.v0.models.fiserv_account']();
|
|
32562
31225
|
export const makeFiservAccountModificationForm = () => factories['io.flow.internal.v0.models.fiserv_account_modification_form']();
|
|
32563
31226
|
export const makeFiservAccountPutForm = () => factories['io.flow.internal.v0.models.fiserv_account_put_form']();
|
|
@@ -32569,7 +31232,6 @@ export const makeFiservMerchantModificationForm = () => factories['io.flow.inter
|
|
|
32569
31232
|
export const makeFiservMerchantPutForm = () => factories['io.flow.internal.v0.models.fiserv_merchant_put_form']();
|
|
32570
31233
|
export const makeFlexeWebhook = () => factories['io.flow.internal.v0.models.flexe_webhook']();
|
|
32571
31234
|
export const makeFlowAccount = () => factories['io.flow.internal.v0.models.flow_account']();
|
|
32572
|
-
export const makeFlowApp = () => factories['io.flow.internal.v0.enums.flow_app']();
|
|
32573
31235
|
export const makeFlowBillingStatement = () => factories['io.flow.internal.v0.models.flow_billing_statement']();
|
|
32574
31236
|
export const makeFlowChannelOrganization = () => factories['io.flow.internal.v0.models.flow_channel_organization']();
|
|
32575
31237
|
export const makeFlowLabProject = () => factories['io.flow.internal.v0.models.flow_lab_project']();
|
|
@@ -32578,7 +31240,6 @@ export const makeFlowLabProjectPutForm = () => factories['io.flow.internal.v0.mo
|
|
|
32578
31240
|
export const makeFlowLabelSetting = () => factories['io.flow.internal.v0.models.flow_label_setting']();
|
|
32579
31241
|
export const makeFlowLabelSettingForm = () => factories['io.flow.internal.v0.models.flow_label_setting_form']();
|
|
32580
31242
|
export const makeFlowShopValidationError = () => factories['io.flow.internal.v0.models.flow_shop_validation_error']();
|
|
32581
|
-
export const makeFormat = () => factories['io.flow.internal.v0.enums.format']();
|
|
32582
31243
|
export const makeFraudAuthorizationSummary = () => factories['io.flow.internal.v0.models.fraud_authorization_summary']();
|
|
32583
31244
|
export const makeFraudPendingReview = () => factories['io.flow.internal.v0.models.fraud_pending_review']();
|
|
32584
31245
|
export const makeFraudPendingReviewAuthorization = () => factories['io.flow.internal.v0.models.fraud_pending_review_authorization']();
|
|
@@ -32614,12 +31275,6 @@ export const makeFraudSummary = () => factories['io.flow.internal.v0.models.frau
|
|
|
32614
31275
|
export const makeFtpFileDeleted = () => factories['io.flow.internal.v0.models.ftp_file_deleted']();
|
|
32615
31276
|
export const makeFtpFileToProcessUploaded = () => factories['io.flow.internal.v0.models.ftp_file_to_process_uploaded']();
|
|
32616
31277
|
export const makeFtpFileUpserted = () => factories['io.flow.internal.v0.models.ftp_file_upserted']();
|
|
32617
|
-
export const makeFtpIntent = () => factories['io.flow.internal.v0.enums.ftp_intent']();
|
|
32618
|
-
export const makeFtpProtocol = () => factories['io.flow.internal.v0.enums.ftp_protocol']();
|
|
32619
|
-
export const makeFtpSetting = () => factories['io.flow.internal.v0.models.ftp_setting']();
|
|
32620
|
-
export const makeFtpSettingForm = () => factories['io.flow.internal.v0.models.ftp_setting_form']();
|
|
32621
|
-
export const makeFtpSettingVersion = () => factories['io.flow.internal.v0.models.ftp_setting_version']();
|
|
32622
|
-
export const makeFtpSettingsPaths = () => factories['io.flow.internal.v0.models.ftp_settings_paths']();
|
|
32623
31278
|
export const makeFuelSurchargeServiceFeeAmountByWeightPutForm = () => factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form']();
|
|
32624
31279
|
export const makeFuelSurchargeServiceFeePercentPutForm = () => factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form']();
|
|
32625
31280
|
export const makeFuelSurchargeServiceFeePutForm = () => factories['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form']();
|
|
@@ -32655,6 +31310,7 @@ export const makeFxRevenueRecognitionRate = () => factories['io.flow.internal.v0
|
|
|
32655
31310
|
export const makeFxRevenueRecognitionSource = () => factories['io.flow.internal.v0.models.fx_revenue_recognition_source']();
|
|
32656
31311
|
export const makeGeIngestionFileStatus = () => factories['io.flow.internal.v0.enums.ge_ingestion_file_status']();
|
|
32657
31312
|
export const makeGeRevenueShareTransaction = () => factories['io.flow.internal.v0.models.ge_revenue_share_transaction']();
|
|
31313
|
+
export const makeGeRevenueShareTransactionType = () => factories['io.flow.internal.v0.enums.ge_revenue_share_transaction_type']();
|
|
32658
31314
|
export const makeGenerateLoad = () => factories['io.flow.internal.v0.unions.generate_load']();
|
|
32659
31315
|
export const makeGenerateLoadMultipleOrgs = () => factories['io.flow.internal.v0.models.generate_load_multiple_orgs']();
|
|
32660
31316
|
export const makeGenerateLoadSingleOrg = () => factories['io.flow.internal.v0.models.generate_load_single_org']();
|
|
@@ -32689,7 +31345,6 @@ export const makeHarmonizedItemsHs6Export = () => factories['io.flow.internal.v0
|
|
|
32689
31345
|
export const makeHoseinItem = () => factories['io.flow.internal.v0.models.hosein_item']();
|
|
32690
31346
|
export const makeHoseinItemForm = () => factories['io.flow.internal.v0.models.hosein_item_form']();
|
|
32691
31347
|
export const makeHoseinItemType = () => factories['io.flow.internal.v0.enums.hosein_item_type']();
|
|
32692
|
-
export const makeHref = () => factories['io.flow.internal.v0.models.href']();
|
|
32693
31348
|
export const makeHs6 = () => factories['io.flow.internal.v0.models.hs6']();
|
|
32694
31349
|
export const makeHs6Metadata = () => factories['io.flow.internal.v0.models.hs6_metadata']();
|
|
32695
31350
|
export const makeHttpMethod = () => factories['io.flow.internal.v0.enums.http_method']();
|
|
@@ -32697,7 +31352,6 @@ export const makeImportCompleted = () => factories['io.flow.internal.v0.models.i
|
|
|
32697
31352
|
export const makeImportFailed = () => factories['io.flow.internal.v0.models.import_failed']();
|
|
32698
31353
|
export const makeIndexTaskType = () => factories['io.flow.internal.v0.unions.index_task_type']();
|
|
32699
31354
|
export const makeInlineAuthorizationParameters = () => factories['io.flow.internal.v0.unions.inline_authorization_parameters']();
|
|
32700
|
-
export const makeInstallForm = () => factories['io.flow.internal.v0.models.install_form']();
|
|
32701
31355
|
export const makeInternalAdyenAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_adyen_authorization_details']();
|
|
32702
31356
|
export const makeInternalAfterpayAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_afterpay_authorization_details']();
|
|
32703
31357
|
export const makeInternalAuthorization = () => factories['io.flow.internal.v0.models.internal_authorization']();
|
|
@@ -32732,9 +31386,6 @@ export const makeInvoiceInfoForm = () => factories['io.flow.internal.v0.models.i
|
|
|
32732
31386
|
export const makeInvoiceLine = () => factories['io.flow.internal.v0.models.invoice_line']();
|
|
32733
31387
|
export const makeInvoiceLineItem = () => factories['io.flow.internal.v0.models.invoice_line_item']();
|
|
32734
31388
|
export const makeInvoiceTransaction = () => factories['io.flow.internal.v0.models.invoice_transaction']();
|
|
32735
|
-
export const makeIssuer = () => factories['io.flow.internal.v0.models.issuer']();
|
|
32736
|
-
export const makeIssuerDeleted = () => factories['io.flow.internal.v0.models.issuer_deleted']();
|
|
32737
|
-
export const makeIssuerUpserted = () => factories['io.flow.internal.v0.models.issuer_upserted']();
|
|
32738
31389
|
export const makeItemClassification = () => factories['io.flow.internal.v0.models.item_classification']();
|
|
32739
31390
|
export const makeItemClassificationAction = () => factories['io.flow.internal.v0.enums.item_classification_action']();
|
|
32740
31391
|
export const makeItemClassificationForm = () => factories['io.flow.internal.v0.models.item_classification_form']();
|
|
@@ -32767,6 +31418,9 @@ export const makeItemSummary = () => factories['io.flow.internal.v0.models.item_
|
|
|
32767
31418
|
export const makeItemType = () => factories['io.flow.internal.v0.enums.item_type']();
|
|
32768
31419
|
export const makeItemValuesForm = () => factories['io.flow.internal.v0.models.item_values_form']();
|
|
32769
31420
|
export const makeJeanDemoItem = () => factories['io.flow.internal.v0.models.jean_demo_item']();
|
|
31421
|
+
export const makeJournal = () => factories['io.flow.internal.v0.models.journal']();
|
|
31422
|
+
export const makeJournalFailure = () => factories['io.flow.internal.v0.models.journal_failure']();
|
|
31423
|
+
export const makeJournalOperation = () => factories['io.flow.internal.v0.enums.journal_operation']();
|
|
32770
31424
|
export const makeKey = () => factories['io.flow.internal.v0.models.key']();
|
|
32771
31425
|
export const makeKeyReference = () => factories['io.flow.internal.v0.models.key_reference']();
|
|
32772
31426
|
export const makeKeywordType = () => factories['io.flow.internal.v0.enums.keyword_type']();
|
|
@@ -32814,7 +31468,6 @@ export const makeLabelTransaction = () => factories['io.flow.internal.v0.models.
|
|
|
32814
31468
|
export const makeLabelTransactionDeleted = () => factories['io.flow.internal.v0.models.label_transaction_deleted']();
|
|
32815
31469
|
export const makeLabelTransactionType = () => factories['io.flow.internal.v0.enums.label_transaction_type']();
|
|
32816
31470
|
export const makeLabelTransactionUpserted = () => factories['io.flow.internal.v0.models.label_transaction_upserted']();
|
|
32817
|
-
export const makeLabeledContent = () => factories['io.flow.internal.v0.models.labeled_content']();
|
|
32818
31471
|
export const makeLabelsPrediction = () => factories['io.flow.internal.v0.models.labels_prediction']();
|
|
32819
31472
|
export const makeLandedCostItem = () => factories['io.flow.internal.v0.models.landed_cost_item']();
|
|
32820
31473
|
export const makeLandmark = () => factories['io.flow.internal.v0.models.landmark']();
|
|
@@ -32831,21 +31484,9 @@ export const makeLiabilityRemittancePlanUpserted = () => factories['io.flow.inte
|
|
|
32831
31484
|
export const makeLiabilityType = () => factories['io.flow.internal.v0.enums.liability_type']();
|
|
32832
31485
|
export const makeLineActionForm = () => factories['io.flow.internal.v0.models.line_action_form']();
|
|
32833
31486
|
export const makeLineActionQuantities = () => factories['io.flow.internal.v0.models.line_action_quantities']();
|
|
32834
|
-
export const makeLoad = () => factories['io.flow.internal.v0.models.load']();
|
|
32835
|
-
export const makeLocalizableContent = () => factories['io.flow.internal.v0.unions.localizable_content']();
|
|
32836
|
-
export const makeLocalizableContentReference = () => factories['io.flow.internal.v0.models.localizable_content_reference']();
|
|
32837
|
-
export const makeLocalization = () => factories['io.flow.internal.v0.models.localization']();
|
|
32838
|
-
export const makeLocalizationForm = () => factories['io.flow.internal.v0.models.localization_form']();
|
|
32839
|
-
export const makeLocalizationRef = () => factories['io.flow.internal.v0.models.localization_ref']();
|
|
32840
|
-
export const makeLocalizationUpserted = () => factories['io.flow.internal.v0.models.localization_upserted']();
|
|
32841
|
-
export const makeLocalizedContent = () => factories['io.flow.internal.v0.models.localized_content']();
|
|
32842
|
-
export const makeLocalizedContentElement = () => factories['io.flow.internal.v0.models.localized_content_element']();
|
|
32843
|
-
export const makeLocalizedContentForm = () => factories['io.flow.internal.v0.models.localized_content_form']();
|
|
32844
|
-
export const makeLocalizedContentUpserted = () => factories['io.flow.internal.v0.models.localized_content_upserted']();
|
|
32845
31487
|
export const makeLocalizedItemPricesExportRequest = () => factories['io.flow.internal.v0.models.localized_item_prices_export_request']();
|
|
32846
31488
|
export const makeLocalizedItemsExportSettings = () => factories['io.flow.internal.v0.models.localized_items_export_settings']();
|
|
32847
31489
|
export const makeLocalizedPriceBookItemData = () => factories['io.flow.internal.v0.models.localized_price_book_item_data']();
|
|
32848
|
-
export const makeLocation = () => factories['io.flow.internal.v0.models.location']();
|
|
32849
31490
|
export const makeLogisticsCapabilities = () => factories['io.flow.internal.v0.models.logistics_capabilities']();
|
|
32850
31491
|
export const makeLogisticsCapabilitiesDeleted = () => factories['io.flow.internal.v0.models.logistics_capabilities_deleted']();
|
|
32851
31492
|
export const makeLogisticsCapabilitiesForm = () => factories['io.flow.internal.v0.models.logistics_capabilities_form']();
|
|
@@ -32854,13 +31495,11 @@ export const makeLogisticsCapability = () => factories['io.flow.internal.v0.enum
|
|
|
32854
31495
|
export const makeLogisticsPayoutRequest = () => factories['io.flow.internal.v0.models.logistics_payout_request']();
|
|
32855
31496
|
export const makeLogisticsPayoutRequestForm = () => factories['io.flow.internal.v0.models.logistics_payout_request_form']();
|
|
32856
31497
|
export const makeLogisticsPayoutResolutionMethod = () => factories['io.flow.internal.v0.enums.logistics_payout_resolution_method']();
|
|
32857
|
-
export const makeLogo = () => factories['io.flow.internal.v0.models.logo']();
|
|
32858
31498
|
export const makeLostChargeback = () => factories['io.flow.internal.v0.models.lost_chargeback']();
|
|
32859
31499
|
export const makeLoyaltyProgram = () => factories['io.flow.internal.v0.models.loyalty_program']();
|
|
32860
31500
|
export const makeLoyaltyProgramMessage = () => factories['io.flow.internal.v0.models.loyalty_program_message']();
|
|
32861
31501
|
export const makeLoyaltyProgramReward = () => factories['io.flow.internal.v0.models.loyalty_program_reward']();
|
|
32862
31502
|
export const makeLoyaltyProgramRewards = () => factories['io.flow.internal.v0.models.loyalty_program_rewards']();
|
|
32863
|
-
export const makeMagentoInstallForm = () => factories['io.flow.internal.v0.models.magento_install_form']();
|
|
32864
31503
|
export const makeMainTransaction = () => factories['io.flow.internal.v0.models.main_transaction']();
|
|
32865
31504
|
export const makeMainTransactionDeleted = () => factories['io.flow.internal.v0.models.main_transaction_deleted']();
|
|
32866
31505
|
export const makeMainTransactionDeletedV2 = () => factories['io.flow.internal.v0.models.main_transaction_deleted_v2']();
|
|
@@ -32932,14 +31571,6 @@ export const makeOnboardingStateForm = () => factories['io.flow.internal.v0.mode
|
|
|
32932
31571
|
export const makeOnboardingStateSource = () => factories['io.flow.internal.v0.enums.onboarding_state_source']();
|
|
32933
31572
|
export const makeOneTimeTokenRedemptionForm = () => factories['io.flow.internal.v0.models.one_time_token_redemption_form']();
|
|
32934
31573
|
export const makeOnlineAuthorizationCompleted = () => factories['io.flow.internal.v0.models.online_authorization_completed']();
|
|
32935
|
-
export const makeOptinAttribute = () => factories['io.flow.internal.v0.models.optin_attribute']();
|
|
32936
|
-
export const makeOptinAttributeForm = () => factories['io.flow.internal.v0.models.optin_attribute_form']();
|
|
32937
|
-
export const makeOptinPrompt = () => factories['io.flow.internal.v0.models.optin_prompt']();
|
|
32938
|
-
export const makeOptinPromptCheckoutDisplay = () => factories['io.flow.internal.v0.models.optin_prompt_checkout_display']();
|
|
32939
|
-
export const makeOptinPromptCopy = () => factories['io.flow.internal.v0.models.optin_prompt_copy']();
|
|
32940
|
-
export const makeOptinPromptCopyForm = () => factories['io.flow.internal.v0.models.optin_prompt_copy_form']();
|
|
32941
|
-
export const makeOptinPromptDisplay = () => factories['io.flow.internal.v0.unions.optin_prompt_display']();
|
|
32942
|
-
export const makeOptinPromptForm = () => factories['io.flow.internal.v0.models.optin_prompt_form']();
|
|
32943
31574
|
export const makeOrderAction = () => factories['io.flow.internal.v0.enums.order_action']();
|
|
32944
31575
|
export const makeOrderActionForm = () => factories['io.flow.internal.v0.unions.order_action_form']();
|
|
32945
31576
|
export const makeOrderActionability = () => factories['io.flow.internal.v0.models.order_actionability']();
|
|
@@ -32978,7 +31609,6 @@ export const makeOrderRevenueRegionDataPoint = () => factories['io.flow.internal
|
|
|
32978
31609
|
export const makeOrderRevenueTimelineChart = () => factories['io.flow.internal.v0.models.order_revenue_timeline_chart']();
|
|
32979
31610
|
export const makeOrderRevenueTimelineDataPoint = () => factories['io.flow.internal.v0.models.order_revenue_timeline_data_point']();
|
|
32980
31611
|
export const makeOrderServiceChangeCsvForm = () => factories['io.flow.internal.v0.models.order_service_change_csv_form']();
|
|
32981
|
-
export const makeOrderSubmissionForm = () => factories['io.flow.internal.v0.models.order_submission_form']();
|
|
32982
31612
|
export const makeOrderSummary = () => factories['io.flow.internal.v0.models.order_summary']();
|
|
32983
31613
|
export const makeOrderTaxAndDutyInclusivitySetting = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting']();
|
|
32984
31614
|
export const makeOrderTaxAndDutyInclusivitySettingDeleted = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted']();
|
|
@@ -33098,6 +31728,7 @@ export const makePartnerTrackingSubscriptionUpserted = () => factories['io.flow.
|
|
|
33098
31728
|
export const makePassphrase = () => factories['io.flow.internal.v0.models.passphrase']();
|
|
33099
31729
|
export const makePassphraseForm = () => factories['io.flow.internal.v0.models.passphrase_form']();
|
|
33100
31730
|
export const makePassphraseSummary = () => factories['io.flow.internal.v0.models.passphrase_summary']();
|
|
31731
|
+
export const makePaymentIs = () => factories['io.flow.internal.v0.models.payment_is']();
|
|
33101
31732
|
export const makePaymentMethodDetail = () => factories['io.flow.internal.v0.models.payment_method_detail']();
|
|
33102
31733
|
export const makePaymentMethodOption = () => factories['io.flow.internal.v0.models.payment_method_option']();
|
|
33103
31734
|
export const makePaymentOrganizationSettings = () => factories['io.flow.internal.v0.models.payment_organization_settings']();
|
|
@@ -33199,13 +31830,11 @@ export const makeProductRestrictionStateInserted = () => factories['io.flow.inte
|
|
|
33199
31830
|
export const makeProductRestrictionStateUpdated = () => factories['io.flow.internal.v0.models.product_restriction_state_updated']();
|
|
33200
31831
|
export const makeProductReviewHistory = () => factories['io.flow.internal.v0.models.product_review_history']();
|
|
33201
31832
|
export const makeProductSellabilityInternal = () => factories['io.flow.internal.v0.models.product_sellability_internal']();
|
|
31833
|
+
export const makeProductSellabilityInternalForm = () => factories['io.flow.internal.v0.models.product_sellability_internal_form']();
|
|
31834
|
+
export const makeProductSellabilityInternalResult = () => factories['io.flow.internal.v0.models.product_sellability_internal_result']();
|
|
33202
31835
|
export const makeProductSellabilityResult = () => factories['io.flow.internal.v0.models.product_sellability_result']();
|
|
33203
31836
|
export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
|
|
33204
31837
|
export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
|
|
33205
|
-
export const makePromptAction = () => factories['io.flow.internal.v0.enums.prompt_action']();
|
|
33206
|
-
export const makePromptCheckoutDisplayPosition = () => factories['io.flow.internal.v0.enums.prompt_checkout_display_position']();
|
|
33207
|
-
export const makePromptOptions = () => factories['io.flow.internal.v0.enums.prompt_options']();
|
|
33208
|
-
export const makePromptTarget = () => factories['io.flow.internal.v0.enums.prompt_target']();
|
|
33209
31838
|
export const makeProofOfPosting = () => factories['io.flow.internal.v0.unions.proof_of_posting']();
|
|
33210
31839
|
export const makeProofOfPostingExternallyFulfilled = () => factories['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled']();
|
|
33211
31840
|
export const makeProofOfPostingFulfilled = () => factories['io.flow.internal.v0.models.proof_of_posting_fulfilled']();
|
|
@@ -33273,9 +31902,6 @@ export const makeRatecardStandardConfigurationUpserted = () => factories['io.flo
|
|
|
33273
31902
|
export const makeRatecardStandardSettings = () => factories['io.flow.internal.v0.models.ratecard_standard_settings']();
|
|
33274
31903
|
export const makeRatesChanged = () => factories['io.flow.internal.v0.models.rates_changed']();
|
|
33275
31904
|
export const makeRatesNamesSummary = () => factories['io.flow.internal.v0.models.rates_names_summary']();
|
|
33276
|
-
export const makeReboundConfiguration = () => factories['io.flow.internal.v0.models.rebound_configuration']();
|
|
33277
|
-
export const makeReboundConfigurationForm = () => factories['io.flow.internal.v0.models.rebound_configuration_form']();
|
|
33278
|
-
export const makeReboundConfigurationStatus = () => factories['io.flow.internal.v0.enums.rebound_configuration_status']();
|
|
33279
31905
|
export const makeRecordReference = () => factories['io.flow.internal.v0.models.record_reference']();
|
|
33280
31906
|
export const makeRedirect = () => factories['io.flow.internal.v0.models.redirect']();
|
|
33281
31907
|
export const makeRedirectActionCompleted = () => factories['io.flow.internal.v0.models.redirect_action_completed']();
|
|
@@ -33315,6 +31941,7 @@ export const makeReportingDebug = () => factories['io.flow.internal.v0.models.re
|
|
|
33315
31941
|
export const makeReportingDebugMissingSubsidies = () => factories['io.flow.internal.v0.models.reporting_debug_missing_subsidies']();
|
|
33316
31942
|
export const makeReportingDestination = () => factories['io.flow.internal.v0.models.reporting_destination']();
|
|
33317
31943
|
export const makeReportingDetails = () => factories['io.flow.internal.v0.models.reporting_details']();
|
|
31944
|
+
export const makeReportingFees = () => factories['io.flow.internal.v0.models.reporting_fees']();
|
|
33318
31945
|
export const makeReportingFulfillment = () => factories['io.flow.internal.v0.models.reporting_fulfillment']();
|
|
33319
31946
|
export const makeReportingFulfillmentHas = () => factories['io.flow.internal.v0.models.reporting_fulfillment_has']();
|
|
33320
31947
|
export const makeReportingFulfillmentIs = () => factories['io.flow.internal.v0.models.reporting_fulfillment_is']();
|
|
@@ -33342,6 +31969,7 @@ export const makeRequeueRequestForm = () => factories['io.flow.internal.v0.model
|
|
|
33342
31969
|
export const makeRescreenRestrictionsProducts = () => factories['io.flow.internal.v0.models.rescreen_restrictions_products']();
|
|
33343
31970
|
export const makeResponsibleParty = () => factories['io.flow.internal.v0.enums.responsible_party']();
|
|
33344
31971
|
export const makeRestrictionAction = () => factories['io.flow.internal.v0.enums.restriction_action']();
|
|
31972
|
+
export const makeRestrictionBlanketOrganizationExemption = () => factories['io.flow.internal.v0.models.restriction_blanket_organization_exemption']();
|
|
33345
31973
|
export const makeRestrictionCategory = () => factories['io.flow.internal.v0.models.restriction_category']();
|
|
33346
31974
|
export const makeRestrictionDecision = () => factories['io.flow.internal.v0.enums.restriction_decision']();
|
|
33347
31975
|
export const makeRestrictionFilter = () => factories['io.flow.internal.v0.models.restriction_filter']();
|
|
@@ -33365,6 +31993,7 @@ export const makeRestrictionProductDecisionForm = () => factories['io.flow.inter
|
|
|
33365
31993
|
export const makeRestrictionProductRequestForm = () => factories['io.flow.internal.v0.models.restriction_product_request_form']();
|
|
33366
31994
|
export const makeRestrictionProductSummary = () => factories['io.flow.internal.v0.models.restriction_product_summary']();
|
|
33367
31995
|
export const makeRestrictionRule = () => factories['io.flow.internal.v0.models.restriction_rule']();
|
|
31996
|
+
export const makeRestrictionRuleCommunityExemption = () => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption']();
|
|
33368
31997
|
export const makeRestrictionRuleDecisionForm = () => factories['io.flow.internal.v0.models.restriction_rule_decision_form']();
|
|
33369
31998
|
export const makeRestrictionRuleDeleted = () => factories['io.flow.internal.v0.models.restriction_rule_deleted']();
|
|
33370
31999
|
export const makeRestrictionRuleEffect = () => factories['io.flow.internal.v0.models.restriction_rule_effect']();
|
|
@@ -33409,8 +32038,12 @@ export const makeRoutingAccount = () => factories['io.flow.internal.v0.models.ro
|
|
|
33409
32038
|
export const makeRoutingEntity = () => factories['io.flow.internal.v0.unions.routing_entity']();
|
|
33410
32039
|
export const makeRoutingMerchant = () => factories['io.flow.internal.v0.models.routing_merchant']();
|
|
33411
32040
|
export const makeRoutingProcessor = () => factories['io.flow.internal.v0.models.routing_processor']();
|
|
32041
|
+
export const makeSalesPaymentRecord = () => factories['io.flow.internal.v0.models.sales_payment_record']();
|
|
33412
32042
|
export const makeSandboxSetup = () => factories['io.flow.internal.v0.models.sandbox_setup']();
|
|
33413
32043
|
export const makeSandboxSetupForm = () => factories['io.flow.internal.v0.models.sandbox_setup_form']();
|
|
32044
|
+
export const makeSarveshItem = () => factories['io.flow.internal.v0.models.sarvesh_item']();
|
|
32045
|
+
export const makeSarveshItemForm = () => factories['io.flow.internal.v0.models.sarvesh_item_form']();
|
|
32046
|
+
export const makeSarveshItemType = () => factories['io.flow.internal.v0.enums.sarvesh_item_type']();
|
|
33414
32047
|
export const makeScheduledPayment = () => factories['io.flow.internal.v0.models.scheduled_payment']();
|
|
33415
32048
|
export const makeScreen = () => factories['io.flow.internal.v0.models.screen']();
|
|
33416
32049
|
export const makeScreenForm = () => factories['io.flow.internal.v0.models.screen_form']();
|
|
@@ -33431,30 +32064,16 @@ export const makeShipmentCostSummary = () => factories['io.flow.internal.v0.mode
|
|
|
33431
32064
|
export const makeShippingLane = () => factories['io.flow.internal.v0.models.shipping_lane']();
|
|
33432
32065
|
export const makeShippingMethodReference = () => factories['io.flow.internal.v0.models.shipping_method_reference']();
|
|
33433
32066
|
export const makeShippingPricing = () => factories['io.flow.internal.v0.models.shipping_pricing']();
|
|
33434
|
-
export const makeShop = () => factories['io.flow.internal.v0.models.shop']();
|
|
33435
|
-
export const makeShopForm = () => factories['io.flow.internal.v0.models.shop_form']();
|
|
33436
|
-
export const makeShopVersion = () => factories['io.flow.internal.v0.models.shop_version']();
|
|
33437
32067
|
export const makeShopifyCatalogPublication = () => factories['io.flow.internal.v0.models.shopify_catalog_publication']();
|
|
33438
32068
|
export const makeShopifyChannelOrganizationToken = () => factories['io.flow.internal.v0.models.shopify_channel_organization_token']();
|
|
33439
32069
|
export const makeShopifyChannelOrganizationTokens = () => factories['io.flow.internal.v0.models.shopify_channel_organization_tokens']();
|
|
33440
|
-
export const makeShopifyCheckInventoryError = () => factories['io.flow.internal.v0.models.shopify_check_inventory_error']();
|
|
33441
|
-
export const makeShopifyCheckInventoryErrorCode = () => factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code']();
|
|
33442
|
-
export const makeShopifyCodeForm = () => factories['io.flow.internal.v0.models.shopify_code_form']();
|
|
33443
32070
|
export const makeShopifyDispute = () => factories['io.flow.internal.v0.models.shopify_dispute']();
|
|
33444
32071
|
export const makeShopifyDisputeDeleted = () => factories['io.flow.internal.v0.models.shopify_dispute_deleted']();
|
|
33445
32072
|
export const makeShopifyDisputeUpserted = () => factories['io.flow.internal.v0.models.shopify_dispute_upserted']();
|
|
33446
|
-
export const
|
|
33447
|
-
export const
|
|
33448
|
-
export const
|
|
33449
|
-
export const
|
|
33450
|
-
export const makeShopifyGiftCardBalanceForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_balance_form']();
|
|
33451
|
-
export const makeShopifyGiftCardPaymentForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_payment_form']();
|
|
33452
|
-
export const makeShopifyGiftCardRedemption = () => factories['io.flow.internal.v0.models.shopify_gift_card_redemption']();
|
|
33453
|
-
export const makeShopifyGiftCardRedemptionForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_redemption_form']();
|
|
33454
|
-
export const makeShopifyGiftCardReversal = () => factories['io.flow.internal.v0.models.shopify_gift_card_reversal']();
|
|
33455
|
-
export const makeShopifyGiftCardReversalForm = () => factories['io.flow.internal.v0.models.shopify_gift_card_reversal_form']();
|
|
33456
|
-
export const makeShopifyGrantStatus = () => factories['io.flow.internal.v0.enums.shopify_grant_status']();
|
|
33457
|
-
export const makeShopifyGrantsCheck = () => factories['io.flow.internal.v0.models.shopify_grants_check']();
|
|
32073
|
+
export const makeShopifyHs10Code = () => factories['io.flow.internal.v0.models.shopify_hs10_code']();
|
|
32074
|
+
export const makeShopifyHs10Codes = () => factories['io.flow.internal.v0.models.shopify_hs10_codes']();
|
|
32075
|
+
export const makeShopifyHs10CodesDeleted = () => factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted']();
|
|
32076
|
+
export const makeShopifyHs10CodesUpserted = () => factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted']();
|
|
33458
32077
|
export const makeShopifyIncotermConfiguration = () => factories['io.flow.internal.v0.enums.shopify_incoterm_configuration']();
|
|
33459
32078
|
export const makeShopifyIncotermIncludes = () => factories['io.flow.internal.v0.models.shopify_incoterm_includes']();
|
|
33460
32079
|
export const makeShopifyIncotermSummaryErrorData = () => factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data']();
|
|
@@ -33516,30 +32135,20 @@ export const makeShopifyMonitoringOrderMonitorType = () => factories['io.flow.in
|
|
|
33516
32135
|
export const makeShopifyMonitoringTrackingField = () => factories['io.flow.internal.v0.enums.shopify_monitoring_tracking_field']();
|
|
33517
32136
|
export const makeShopifyMonitoringTrackingNumber = () => factories['io.flow.internal.v0.models.shopify_monitoring_tracking_number']();
|
|
33518
32137
|
export const makeShopifyMonitoringTrackingUrl = () => factories['io.flow.internal.v0.models.shopify_monitoring_tracking_url']();
|
|
33519
|
-
export const makeShopifyOrderAuthorization = () => factories['io.flow.internal.v0.models.shopify_order_authorization']();
|
|
33520
32138
|
export const makeShopifyOrderCancelForm = () => factories['io.flow.internal.v0.models.shopify_order_cancel_form']();
|
|
33521
32139
|
export const makeShopifyOrderCancelResponse = () => factories['io.flow.internal.v0.models.shopify_order_cancel_response']();
|
|
33522
|
-
export const makeShopifyOrderContent = () => factories['io.flow.internal.v0.models.shopify_order_content']();
|
|
33523
32140
|
export const makeShopifyOrderDestinationForm = () => factories['io.flow.internal.v0.models.shopify_order_destination_form']();
|
|
33524
|
-
export const makeShopifyOrderDetail = () => factories['io.flow.internal.v0.models.shopify_order_detail']();
|
|
33525
|
-
export const makeShopifyOrderDiscountContent = () => factories['io.flow.internal.v0.models.shopify_order_discount_content']();
|
|
33526
32141
|
export const makeShopifyOrderFulfillmentsSnapshot = () => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot']();
|
|
33527
32142
|
export const makeShopifyOrderFulfillmentsSnapshotDeleted = () => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted']();
|
|
33528
32143
|
export const makeShopifyOrderFulfillmentsSnapshotUpserted = () => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted']();
|
|
33529
|
-
export const makeShopifyOrderInventoryCheck = () => factories['io.flow.internal.v0.models.shopify_order_inventory_check']();
|
|
33530
|
-
export const makeShopifyOrderLineAttribute = () => factories['io.flow.internal.v0.models.shopify_order_line_attribute']();
|
|
33531
|
-
export const makeShopifyOrderLineContent = () => factories['io.flow.internal.v0.models.shopify_order_line_content']();
|
|
33532
32144
|
export const makeShopifyOrderRiskAssessment = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment']();
|
|
33533
32145
|
export const makeShopifyOrderRiskAssessmentDeleted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted']();
|
|
33534
32146
|
export const makeShopifyOrderRiskAssessmentUpserted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted']();
|
|
33535
32147
|
export const makeShopifyOrderTransaction = () => factories['io.flow.internal.v0.models.shopify_order_transaction']();
|
|
33536
32148
|
export const makeShopifyOrderTransactionDeleted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_deleted']();
|
|
33537
32149
|
export const makeShopifyOrderTransactionUpserted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_upserted']();
|
|
33538
|
-
export const makeShopifyOrganizationSettings = () => factories['io.flow.internal.v0.models.shopify_organization_settings']();
|
|
33539
|
-
export const makeShopifyOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.shopify_organization_settings_form']();
|
|
33540
32150
|
export const makeShopifyPartnerWebhook = () => factories['io.flow.internal.v0.models.shopify_partner_webhook']();
|
|
33541
32151
|
export const makeShopifyPartnerWebhookRaw = () => factories['io.flow.internal.v0.models.shopify_partner_webhook_raw']();
|
|
33542
|
-
export const makeShopifyPaymentSummary = () => factories['io.flow.internal.v0.models.shopify_payment_summary']();
|
|
33543
32152
|
export const makeShopifyPlanType = () => factories['io.flow.internal.v0.enums.shopify_plan_type']();
|
|
33544
32153
|
export const makeShopifyProductBundle = () => factories['io.flow.internal.v0.models.shopify_product_bundle']();
|
|
33545
32154
|
export const makeShopifyProductBundleDeleted = () => factories['io.flow.internal.v0.models.shopify_product_bundle_deleted']();
|
|
@@ -33555,37 +32164,13 @@ export const makeShopifyProductUpdateDeleted = () => factories['io.flow.internal
|
|
|
33555
32164
|
export const makeShopifyProductUpdateUpserted = () => factories['io.flow.internal.v0.models.shopify_product_update_upserted']();
|
|
33556
32165
|
export const makeShopifyProductUpdateWebhookEvent = () => factories['io.flow.internal.v0.models.shopify_product_update_webhook_event']();
|
|
33557
32166
|
export const makeShopifyProductWrapper = () => factories['io.flow.internal.v0.models.shopify_product_wrapper']();
|
|
33558
|
-
export const
|
|
33559
|
-
export const
|
|
33560
|
-
export const makeShopifyPromotionAttributeValue = () => factories['io.flow.internal.v0.models.shopify_promotion_attribute_value']();
|
|
33561
|
-
export const makeShopifyPromotionBehavior = () => factories['io.flow.internal.v0.enums.shopify_promotion_behavior']();
|
|
33562
|
-
export const makeShopifyPromotionFixedAmount = () => factories['io.flow.internal.v0.models.shopify_promotion_fixed_amount']();
|
|
33563
|
-
export const makeShopifyPromotionForm = () => factories['io.flow.internal.v0.models.shopify_promotion_form']();
|
|
33564
|
-
export const makeShopifyPromotionItemEntitlement = () => factories['io.flow.internal.v0.models.shopify_promotion_item_entitlement']();
|
|
33565
|
-
export const makeShopifyPromotionItemPrerequisite = () => factories['io.flow.internal.v0.models.shopify_promotion_item_prerequisite']();
|
|
33566
|
-
export const makeShopifyPromotionMaxAmount = () => factories['io.flow.internal.v0.models.shopify_promotion_max_amount']();
|
|
33567
|
-
export const makeShopifyPromotionMaxLimit = () => factories['io.flow.internal.v0.models.shopify_promotion_max_limit']();
|
|
33568
|
-
export const makeShopifyPromotionOffer = () => factories['io.flow.internal.v0.models.shopify_promotion_offer']();
|
|
33569
|
-
export const makeShopifyPromotionOfferAllocationMethod = () => factories['io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method']();
|
|
33570
|
-
export const makeShopifyPromotionOfferDiscount = () => factories['io.flow.internal.v0.unions.shopify_promotion_offer_discount']();
|
|
33571
|
-
export const makeShopifyPromotionOfferEntitlement = () => factories['io.flow.internal.v0.unions.shopify_promotion_offer_entitlement']();
|
|
33572
|
-
export const makeShopifyPromotionOfferMax = () => factories['io.flow.internal.v0.unions.shopify_promotion_offer_max']();
|
|
33573
|
-
export const makeShopifyPromotionOrderEntitlement = () => factories['io.flow.internal.v0.models.shopify_promotion_order_entitlement']();
|
|
33574
|
-
export const makeShopifyPromotionOrderEntitlementComponent = () => factories['io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component']();
|
|
33575
|
-
export const makeShopifyPromotionOrderPrerequisite = () => factories['io.flow.internal.v0.models.shopify_promotion_order_prerequisite']();
|
|
33576
|
-
export const makeShopifyPromotionPercent = () => factories['io.flow.internal.v0.models.shopify_promotion_percent']();
|
|
33577
|
-
export const makeShopifyPromotionPrerequisite = () => factories['io.flow.internal.v0.unions.shopify_promotion_prerequisite']();
|
|
33578
|
-
export const makeShopifyPromotionRule = () => factories['io.flow.internal.v0.models.shopify_promotion_rule']();
|
|
33579
|
-
export const makeShopifyPromotionStatus = () => factories['io.flow.internal.v0.enums.shopify_promotion_status']();
|
|
32167
|
+
export const makeShopifyReportFileDeleted = () => factories['io.flow.internal.v0.models.shopify_report_file_deleted']();
|
|
32168
|
+
export const makeShopifyReportFileUpserted = () => factories['io.flow.internal.v0.models.shopify_report_file_upserted']();
|
|
33580
32169
|
export const makeShopifyService = () => factories['io.flow.internal.v0.enums.shopify_service']();
|
|
33581
|
-
export const makeShopifyShopDeleted = () => factories['io.flow.internal.v0.models.shopify_shop_deleted']();
|
|
33582
32170
|
export const makeShopifyShopStatistics = () => factories['io.flow.internal.v0.models.shopify_shop_statistics']();
|
|
33583
|
-
export const makeShopifyShopUpserted = () => factories['io.flow.internal.v0.models.shopify_shop_upserted']();
|
|
33584
32171
|
export const makeShopifyStoreDetail = () => factories['io.flow.internal.v0.models.shopify_store_detail']();
|
|
33585
32172
|
export const makeShopifyStripeEvent = () => factories['io.flow.internal.v0.models.shopify_stripe_event']();
|
|
33586
|
-
export const
|
|
33587
|
-
export const makeShopifyWebhookEvent = () => factories['io.flow.internal.v0.models.shopify_webhook_event']();
|
|
33588
|
-
export const makeShopifyWebhookForm = () => factories['io.flow.internal.v0.models.shopify_webhook_form']();
|
|
32173
|
+
export const makeShopperBreakdown = () => factories['io.flow.internal.v0.models.shopper_breakdown']();
|
|
33589
32174
|
export const makeShopperFees = () => factories['io.flow.internal.v0.models.shopper_fees']();
|
|
33590
32175
|
export const makeShopperFreight = () => factories['io.flow.internal.v0.models.shopper_freight']();
|
|
33591
32176
|
export const makeShopperLine = () => factories['io.flow.internal.v0.models.shopper_line']();
|
|
@@ -33618,11 +32203,8 @@ export const makeStandaloneAttachment = () => factories['io.flow.internal.v0.mod
|
|
|
33618
32203
|
export const makeStandaloneAttachmentDeleted = () => factories['io.flow.internal.v0.models.standalone_attachment_deleted']();
|
|
33619
32204
|
export const makeStandaloneAttachmentUpserted = () => factories['io.flow.internal.v0.models.standalone_attachment_upserted']();
|
|
33620
32205
|
export const makeStatementCreationMetadata = () => factories['io.flow.internal.v0.models.statement_creation_metadata']();
|
|
33621
|
-
export const makeStatementStatus = () => factories['io.flow.internal.v0.enums.statement_status']();
|
|
33622
32206
|
export const makeStatementTransferTransactionLocation = () => factories['io.flow.internal.v0.enums.statement_transfer_transaction_location']();
|
|
33623
32207
|
export const makeStatisticType = () => factories['io.flow.internal.v0.enums.statistic_type']();
|
|
33624
|
-
export const makeStoreConnection = () => factories['io.flow.internal.v0.models.store_connection']();
|
|
33625
|
-
export const makeStoreConnectionForm = () => factories['io.flow.internal.v0.models.store_connection_form']();
|
|
33626
32208
|
export const makeStringFeatureDefaultValue = () => factories['io.flow.internal.v0.models.string_feature_default_value']();
|
|
33627
32209
|
export const makeStringFeatureRule = () => factories['io.flow.internal.v0.models.string_feature_rule']();
|
|
33628
32210
|
export const makeStringFeatureRuleForm = () => factories['io.flow.internal.v0.models.string_feature_rule_form']();
|
|
@@ -33658,7 +32240,6 @@ export const makeStripeRefundDeleted = () => factories['io.flow.internal.v0.mode
|
|
|
33658
32240
|
export const makeStripeRefundUpserted = () => factories['io.flow.internal.v0.models.stripe_refund_upserted']();
|
|
33659
32241
|
export const makeStripeReversalDeleted = () => factories['io.flow.internal.v0.models.stripe_reversal_deleted']();
|
|
33660
32242
|
export const makeStripeReversalUpserted = () => factories['io.flow.internal.v0.models.stripe_reversal_upserted']();
|
|
33661
|
-
export const makeSubcatalogItemCount = () => factories['io.flow.internal.v0.models.subcatalog_item_count']();
|
|
33662
32243
|
export const makeSubmittedOrderUpserted = () => factories['io.flow.internal.v0.models.submitted_order_upserted']();
|
|
33663
32244
|
export const makeSubscription = () => factories['io.flow.internal.v0.models.subscription']();
|
|
33664
32245
|
export const makeSubscriptionFrequency = () => factories['io.flow.internal.v0.enums.subscription_frequency']();
|
|
@@ -33671,7 +32252,6 @@ export const makeTariffEligibilityData = () => factories['io.flow.internal.v0.un
|
|
|
33671
32252
|
export const makeTariffEligibilityForm = () => factories['io.flow.internal.v0.unions.tariff_eligibility_form']();
|
|
33672
32253
|
export const makeTariffEligibilityType = () => factories['io.flow.internal.v0.enums.tariff_eligibility_type']();
|
|
33673
32254
|
export const makeTask = () => factories['io.flow.internal.v0.models.task']();
|
|
33674
|
-
export const makeTaskCount = () => factories['io.flow.internal.v0.models.task_count']();
|
|
33675
32255
|
export const makeTaskData = () => factories['io.flow.internal.v0.unions.task_data']();
|
|
33676
32256
|
export const makeTaskImport = () => factories['io.flow.internal.v0.models.task_import']();
|
|
33677
32257
|
export const makeTaskItemUpserted = () => factories['io.flow.internal.v0.models.task_item_upserted']();
|
|
@@ -33697,6 +32277,7 @@ export const makeTaxTransactionDeleted = () => factories['io.flow.internal.v0.mo
|
|
|
33697
32277
|
export const makeTaxTransactionType = () => factories['io.flow.internal.v0.enums.tax_transaction_type']();
|
|
33698
32278
|
export const makeTaxTransactionUpserted = () => factories['io.flow.internal.v0.models.tax_transaction_upserted']();
|
|
33699
32279
|
export const makeTaxonomyCategory = () => factories['io.flow.internal.v0.models.taxonomy_category']();
|
|
32280
|
+
export const makeTaxonomyCategoryClassificationAlignment = () => factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment']();
|
|
33700
32281
|
export const makeTaxonomyCategoryHs6Ref = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref']();
|
|
33701
32282
|
export const makeTaxonomyCategoryHs6RefDeleted = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted']();
|
|
33702
32283
|
export const makeTaxonomyCategoryHs6RefUpserted = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted']();
|
|
@@ -33791,11 +32372,8 @@ export const makeUserStatusForm = () => factories['io.flow.internal.v0.models.us
|
|
|
33791
32372
|
export const makeUserStatusRule = () => factories['io.flow.internal.v0.models.user_status_rule']();
|
|
33792
32373
|
export const makeUserStatusRuleForm = () => factories['io.flow.internal.v0.models.user_status_rule_form']();
|
|
33793
32374
|
export const makeUserUpsertedV2 = () => factories['io.flow.internal.v0.models.user_upserted_v2']();
|
|
33794
|
-
export const makeV1Checkout = () => factories['io.flow.internal.v0.models.v1_checkout']();
|
|
33795
32375
|
export const makeValidatedAddress = () => factories['io.flow.internal.v0.models.validated_address']();
|
|
33796
32376
|
export const makeValidatedShippingData = () => factories['io.flow.internal.v0.models.validated_shipping_data']();
|
|
33797
|
-
export const makeValidationCharacterLength = () => factories['io.flow.internal.v0.models.validation_character_length']();
|
|
33798
|
-
export const makeValidationRule = () => factories['io.flow.internal.v0.unions.validation_rule']();
|
|
33799
32377
|
export const makeViesResult = () => factories['io.flow.internal.v0.models.vies_result']();
|
|
33800
32378
|
export const makeVirtualCardTransaction = () => factories['io.flow.internal.v0.models.virtual_card_transaction']();
|
|
33801
32379
|
export const makeWasteElectricalAndElectronicEquipmentComplianceData = () => factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data']();
|