@flowio/api-internal-factories 0.0.130 → 0.0.131
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-internal.js +260 -1544
- package/dist/esm/api-internal.js +200 -1360
- package/dist/types/api-internal.d.ts +24 -146
- package/package.json +2 -2
- package/src/api-internal.ts +235 -1618
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'](),
|
|
@@ -8758,10 +8605,6 @@ const factories = {
|
|
|
8758
8605
|
added_on: factories.date_iso_8601(),
|
|
8759
8606
|
}),
|
|
8760
8607
|
|
|
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
8608
|
'io.flow.internal.v0.models.apple_pay_authorization_payload': (): io.flow.internal.v0.models.ApplePayAuthorizationPayload => ({
|
|
8766
8609
|
discriminator: 'apple_pay_authorization_payload',
|
|
8767
8610
|
apple_pay_token: factories.string(),
|
|
@@ -8892,6 +8735,27 @@ const factories = {
|
|
|
8892
8735
|
id: factories.string(),
|
|
8893
8736
|
}),
|
|
8894
8737
|
|
|
8738
|
+
'io.flow.internal.v0.models.bank_payment_detail': (): io.flow.internal.v0.models.BankPaymentDetail => ({
|
|
8739
|
+
id: factories.string(),
|
|
8740
|
+
source_type: factories['io.flow.internal.v0.enums.account_type'](),
|
|
8741
|
+
source_id: factories.string(),
|
|
8742
|
+
status: factories['io.flow.internal.v0.enums.bank_payment_status_code'](),
|
|
8743
|
+
amount: factories.decimal(),
|
|
8744
|
+
currency: factories.string(),
|
|
8745
|
+
created_at: factories.date_time_iso_8601(),
|
|
8746
|
+
payment_transactions_url: factories.string(),
|
|
8747
|
+
|
|
8748
|
+
statement_attachments: arrayOf(
|
|
8749
|
+
() => factories['io.flow.internal.v0.models.bank_payment_detail_attachment'](),
|
|
8750
|
+
),
|
|
8751
|
+
}),
|
|
8752
|
+
|
|
8753
|
+
'io.flow.internal.v0.models.bank_payment_detail_attachment': (): io.flow.internal.v0.models.BankPaymentDetailAttachment => ({
|
|
8754
|
+
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
8755
|
+
statement_url: factories.string(),
|
|
8756
|
+
statement_transactions_url: factories.string(),
|
|
8757
|
+
}),
|
|
8758
|
+
|
|
8895
8759
|
'io.flow.internal.v0.models.bank_payment_form': (): io.flow.internal.v0.models.BankPaymentForm => ({
|
|
8896
8760
|
account_id: factories.string(),
|
|
8897
8761
|
reference: factories.string(),
|
|
@@ -10099,14 +9963,6 @@ const factories = {
|
|
|
10099
9963
|
chargeback: factories['io.flow.internal.v0.models.chargeback'](),
|
|
10100
9964
|
}),
|
|
10101
9965
|
|
|
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
9966
|
'io.flow.internal.v0.models.checkout_analytics': (): io.flow.internal.v0.models.CheckoutAnalytics => ({
|
|
10111
9967
|
trackers: arrayOf(() => factories['io.flow.internal.v0.unions.tracker']()),
|
|
10112
9968
|
use_base_currency: factories.boolean(),
|
|
@@ -10147,14 +10003,6 @@ const factories = {
|
|
|
10147
10003
|
domain: factories.string(),
|
|
10148
10004
|
}),
|
|
10149
10005
|
|
|
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
10006
|
'io.flow.internal.v0.models.checkout_configuration_form': (): io.flow.internal.v0.models.CheckoutConfigurationForm => ({
|
|
10159
10007
|
behavior: factories['io.flow.internal.v0.models.checkout_behavior'](),
|
|
10160
10008
|
settings: factories['io.flow.internal.v0.models.checkout_settings'](),
|
|
@@ -10166,70 +10014,6 @@ const factories = {
|
|
|
10166
10014
|
id: factories.string(),
|
|
10167
10015
|
}),
|
|
10168
10016
|
|
|
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
10017
|
'io.flow.internal.v0.models.checkout_settings': (): io.flow.internal.v0.models.CheckoutSettings => ({
|
|
10234
10018
|
session_persistence_timeout: factories['io.flow.common.v0.models.duration'](),
|
|
10235
10019
|
session_persistence_attribute_keys: arrayOf(() => factories.string()),
|
|
@@ -10567,99 +10351,6 @@ const factories = {
|
|
|
10567
10351
|
note: factories.string(),
|
|
10568
10352
|
}),
|
|
10569
10353
|
|
|
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
10354
|
'io.flow.internal.v0.models.courthouse_product_summary': (): io.flow.internal.v0.models.CourthouseProductSummary => ({
|
|
10664
10355
|
organization: factories['io.flow.common.v0.models.organization_summary'](),
|
|
10665
10356
|
product_id: factories.string(),
|
|
@@ -10724,6 +10415,8 @@ const factories = {
|
|
|
10724
10415
|
discount: factories['io.flow.internal.v0.models.other_record_discount'](),
|
|
10725
10416
|
net: factories.decimal(),
|
|
10726
10417
|
identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
|
|
10418
|
+
revenue_share_percentage: factories.decimal(),
|
|
10419
|
+
revenue_share_plan: factories.string(),
|
|
10727
10420
|
created_at: factories.date_time_iso_8601(),
|
|
10728
10421
|
updated_at: factories.date_time_iso_8601(),
|
|
10729
10422
|
posted_at: factories.date_time_iso_8601(),
|
|
@@ -10842,6 +10535,10 @@ const factories = {
|
|
|
10842
10535
|
daily_value: factories['io.flow.internal.v0.models.daily_value'](),
|
|
10843
10536
|
}),
|
|
10844
10537
|
|
|
10538
|
+
'io.flow.internal.v0.models.database': (): io.flow.internal.v0.models.Database => ({
|
|
10539
|
+
name: factories.string(),
|
|
10540
|
+
}),
|
|
10541
|
+
|
|
10845
10542
|
'io.flow.internal.v0.models.debug_accounting_transaction': (): io.flow.internal.v0.models.DebugAccountingTransaction => ({
|
|
10846
10543
|
type: factories['io.flow.internal.v0.enums.debug_accounting_transaction_type'](),
|
|
10847
10544
|
type_id: factories.string(),
|
|
@@ -11089,12 +10786,6 @@ const factories = {
|
|
|
11089
10786
|
pickup_name: factories.string(),
|
|
11090
10787
|
}),
|
|
11091
10788
|
|
|
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
10789
|
'io.flow.internal.v0.models.dimension_estimate_ops_input': (): io.flow.internal.v0.models.DimensionEstimateOpsInput => ({
|
|
11099
10790
|
organization_id: factories.string(),
|
|
11100
10791
|
length_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
@@ -11984,30 +11675,6 @@ const factories = {
|
|
|
11984
11675
|
description: factories.string(),
|
|
11985
11676
|
}),
|
|
11986
11677
|
|
|
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
11678
|
'io.flow.internal.v0.models.fiserv_account': (): io.flow.internal.v0.models.FiservAccount => ({
|
|
12012
11679
|
discriminator: 'fiserv_account',
|
|
12013
11680
|
id: factories.string(),
|
|
@@ -12434,37 +12101,6 @@ const factories = {
|
|
|
12434
12101
|
ftp_file: factories['io.flow.ftp.v0.models.ftp_file'](),
|
|
12435
12102
|
}),
|
|
12436
12103
|
|
|
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
12104
|
'io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form': (): io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm => ({
|
|
12469
12105
|
discriminator: 'fuel_surcharge_service_fee_amount_by_weight_put_form',
|
|
12470
12106
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
@@ -12894,12 +12530,6 @@ const factories = {
|
|
|
12894
12530
|
added_on: factories.date_time_iso_8601(),
|
|
12895
12531
|
}),
|
|
12896
12532
|
|
|
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
12533
|
'io.flow.internal.v0.models.hs6': (): io.flow.internal.v0.models.Hs6 => ({
|
|
12904
12534
|
code: factories.string(),
|
|
12905
12535
|
description: factories.string(),
|
|
@@ -12927,10 +12557,6 @@ const factories = {
|
|
|
12927
12557
|
error: factories.string(),
|
|
12928
12558
|
}),
|
|
12929
12559
|
|
|
12930
|
-
'io.flow.internal.v0.models.install_form': (): io.flow.internal.v0.models.InstallForm => ({
|
|
12931
|
-
token: factories.string(),
|
|
12932
|
-
}),
|
|
12933
|
-
|
|
12934
12560
|
'io.flow.internal.v0.models.internal_adyen_authorization_details': (): io.flow.internal.v0.models.InternalAdyenAuthorizationDetails => ({
|
|
12935
12561
|
discriminator: 'internal_adyen_authorization_details',
|
|
12936
12562
|
adyen_authentication_data: factories['io.flow.internal.v0.models.adyen_authentication_data_reference'](),
|
|
@@ -13201,32 +12827,6 @@ const factories = {
|
|
|
13201
12827
|
created_at: factories.date_time_iso_8601(),
|
|
13202
12828
|
}),
|
|
13203
12829
|
|
|
13204
|
-
'io.flow.internal.v0.models.issuer': (): io.flow.internal.v0.models.Issuer => ({
|
|
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
12830
|
'io.flow.internal.v0.models.item_classification': (): io.flow.internal.v0.models.ItemClassification => ({
|
|
13231
12831
|
id: factories.string(),
|
|
13232
12832
|
organization: factories.string(),
|
|
@@ -13331,6 +12931,7 @@ const factories = {
|
|
|
13331
12931
|
tariffs: objectOf(() => factories['io.flow.internal.v0.models.tariff_code_duty']()),
|
|
13332
12932
|
decision_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
|
|
13333
12933
|
classification_scope: factories['io.flow.internal.v0.enums.classification_scope'](),
|
|
12934
|
+
taxonomy_category_classification_alignment: factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'](),
|
|
13334
12935
|
created_at: factories.date_time_iso_8601(),
|
|
13335
12936
|
updated_at: factories.date_time_iso_8601(),
|
|
13336
12937
|
updated_by_user_id: factories.string(),
|
|
@@ -13453,8 +13054,23 @@ const factories = {
|
|
|
13453
13054
|
name: factories.string(),
|
|
13454
13055
|
}),
|
|
13455
13056
|
|
|
13456
|
-
'io.flow.internal.v0.models.
|
|
13457
|
-
|
|
13057
|
+
'io.flow.internal.v0.models.journal': (): io.flow.internal.v0.models.Journal => ({
|
|
13058
|
+
name: factories.string(),
|
|
13059
|
+
queued: factories.integer(),
|
|
13060
|
+
failed: factories.integer(),
|
|
13061
|
+
}),
|
|
13062
|
+
|
|
13063
|
+
'io.flow.internal.v0.models.journal_failure': (): io.flow.internal.v0.models.JournalFailure => ({
|
|
13064
|
+
journal_id: factories.long(),
|
|
13065
|
+
operation: factories['io.flow.internal.v0.enums.journal_operation'](),
|
|
13066
|
+
created_at: factories.date_time_iso_8601(),
|
|
13067
|
+
failed_at: factories.date_time_iso_8601(),
|
|
13068
|
+
error: factories.string(),
|
|
13069
|
+
organization_id: factories.string(),
|
|
13070
|
+
}),
|
|
13071
|
+
|
|
13072
|
+
'io.flow.internal.v0.models.key': (): io.flow.internal.v0.models.Key => ({
|
|
13073
|
+
id: factories.string(),
|
|
13458
13074
|
created_at: factories.date_time_iso_8601(),
|
|
13459
13075
|
}),
|
|
13460
13076
|
|
|
@@ -13767,11 +13383,6 @@ const factories = {
|
|
|
13767
13383
|
label_transaction: factories['io.flow.internal.v0.models.label_transaction'](),
|
|
13768
13384
|
}),
|
|
13769
13385
|
|
|
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
13386
|
'io.flow.internal.v0.models.labels_prediction': (): io.flow.internal.v0.models.LabelsPrediction => ({
|
|
13776
13387
|
main_material: factories.string(),
|
|
13777
13388
|
gender: factories.string(),
|
|
@@ -13902,75 +13513,6 @@ const factories = {
|
|
|
13902
13513
|
action_quantity: arrayOf(() => factories['io.flow.internal.v0.models.action_quantity']()),
|
|
13903
13514
|
}),
|
|
13904
13515
|
|
|
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
13516
|
'io.flow.internal.v0.models.localized_item_prices_export_request': (): io.flow.internal.v0.models.LocalizedItemPricesExportRequest => ({
|
|
13975
13517
|
discriminator: 'localized_item_prices_export_request',
|
|
13976
13518
|
event_id: factories.string(),
|
|
@@ -13998,11 +13540,6 @@ const factories = {
|
|
|
13998
13540
|
price_end_date: factories.date_time_iso_8601(),
|
|
13999
13541
|
}),
|
|
14000
13542
|
|
|
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
13543
|
'io.flow.internal.v0.models.logistics_capabilities': (): io.flow.internal.v0.models.LogisticsCapabilities => ({
|
|
14007
13544
|
id: factories.string(),
|
|
14008
13545
|
capabilities: arrayOf(() => factories['io.flow.internal.v0.enums.logistics_capability']()),
|
|
@@ -14048,10 +13585,6 @@ const factories = {
|
|
|
14048
13585
|
external_reference_number: factories.string(),
|
|
14049
13586
|
}),
|
|
14050
13587
|
|
|
14051
|
-
'io.flow.internal.v0.models.logo': (): io.flow.internal.v0.models.Logo => ({
|
|
14052
|
-
url: factories.string(),
|
|
14053
|
-
}),
|
|
14054
|
-
|
|
14055
13588
|
'io.flow.internal.v0.models.lost_chargeback': (): io.flow.internal.v0.models.LostChargeback => ({
|
|
14056
13589
|
id: factories.string(),
|
|
14057
13590
|
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
@@ -14077,10 +13610,6 @@ const factories = {
|
|
|
14077
13610
|
applied: arrayOf(() => factories['io.flow.internal.v0.models.loyalty_program_reward']()),
|
|
14078
13611
|
}),
|
|
14079
13612
|
|
|
14080
|
-
'io.flow.internal.v0.models.magento_install_form': (): io.flow.internal.v0.models.MagentoInstallForm => ({
|
|
14081
|
-
token: factories.string(),
|
|
14082
|
-
}),
|
|
14083
|
-
|
|
14084
13613
|
'io.flow.internal.v0.models.main_transaction': (): io.flow.internal.v0.models.MainTransaction => ({
|
|
14085
13614
|
id: factories.string(),
|
|
14086
13615
|
account: factories['io.flow.billing.v0.models.account_reference'](),
|
|
@@ -14518,59 +14047,6 @@ const factories = {
|
|
|
14518
14047
|
expires_at: factories.date_time_iso_8601(),
|
|
14519
14048
|
}),
|
|
14520
14049
|
|
|
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
14050
|
'io.flow.internal.v0.models.order_actionability': (): io.flow.internal.v0.models.OrderActionability => ({
|
|
14575
14051
|
action: arrayOf(() => factories['io.flow.internal.v0.enums.order_action']()),
|
|
14576
14052
|
lines: arrayOf(() => factories['io.flow.internal.v0.models.line_action_quantities']()),
|
|
@@ -14782,10 +14258,6 @@ const factories = {
|
|
|
14782
14258
|
to_service_id: factories.string(),
|
|
14783
14259
|
}),
|
|
14784
14260
|
|
|
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
14261
|
'io.flow.internal.v0.models.order_summary': (): io.flow.internal.v0.models.OrderSummary => ({
|
|
14790
14262
|
id: factories.string(),
|
|
14791
14263
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
@@ -15335,6 +14807,8 @@ const factories = {
|
|
|
15335
14807
|
discount: factories['io.flow.internal.v0.models.other_record_discount'](),
|
|
15336
14808
|
net: factories.decimal(),
|
|
15337
14809
|
identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
|
|
14810
|
+
revenue_share_percentage: factories.decimal(),
|
|
14811
|
+
revenue_share_plan: factories.string(),
|
|
15338
14812
|
created_at: factories.date_time_iso_8601(),
|
|
15339
14813
|
updated_at: factories.date_time_iso_8601(),
|
|
15340
14814
|
posted_at: factories.date_time_iso_8601(),
|
|
@@ -15613,6 +15087,11 @@ const factories = {
|
|
|
15613
15087
|
tribe: factories['io.flow.internal.v0.models.tribe'](),
|
|
15614
15088
|
}),
|
|
15615
15089
|
|
|
15090
|
+
'io.flow.internal.v0.models.payment_is': (): io.flow.internal.v0.models.PaymentIs => ({
|
|
15091
|
+
lvg: factories.boolean(),
|
|
15092
|
+
manual: factories.boolean(),
|
|
15093
|
+
}),
|
|
15094
|
+
|
|
15616
15095
|
'io.flow.internal.v0.models.payment_method_detail': (): io.flow.internal.v0.models.PaymentMethodDetail => ({
|
|
15617
15096
|
method: factories['io.flow.reference.v0.models.payment_method'](),
|
|
15618
15097
|
method_options: arrayOf(() => factories['io.flow.internal.v0.models.payment_method_option']()),
|
|
@@ -16330,12 +15809,33 @@ const factories = {
|
|
|
16330
15809
|
rule_ids: arrayOf(() => factories.string()),
|
|
16331
15810
|
}),
|
|
16332
15811
|
|
|
15812
|
+
'io.flow.internal.v0.models.product_sellability_internal_form': (): io.flow.internal.v0.models.ProductSellabilityInternalForm => ({
|
|
15813
|
+
name: factories.string(),
|
|
15814
|
+
price: factories['io.flow.common.v0.models.money'](),
|
|
15815
|
+
description: factories.string(),
|
|
15816
|
+
hs6_code: factories.string(),
|
|
15817
|
+
categories: arrayOf(() => factories.string()),
|
|
15818
|
+
}),
|
|
15819
|
+
|
|
15820
|
+
'io.flow.internal.v0.models.product_sellability_internal_result': (): io.flow.internal.v0.models.ProductSellabilityInternalResult => ({
|
|
15821
|
+
restricted_regions: arrayOf(
|
|
15822
|
+
() => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
|
|
15823
|
+
),
|
|
15824
|
+
|
|
15825
|
+
rule_ids: arrayOf(() => factories.string()),
|
|
15826
|
+
}),
|
|
15827
|
+
|
|
16333
15828
|
'io.flow.internal.v0.models.product_sellability_result': (): io.flow.internal.v0.models.ProductSellabilityResult => ({
|
|
16334
15829
|
shop_id: factories.string(),
|
|
16335
15830
|
product_number: factories.string(),
|
|
16336
15831
|
request_id: factories.string(),
|
|
16337
15832
|
hs6_code: factories.string(),
|
|
16338
15833
|
restricted_regions: arrayOf(() => factories.string()),
|
|
15834
|
+
|
|
15835
|
+
restricted_regions_by_type: arrayOf(
|
|
15836
|
+
() => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
|
|
15837
|
+
),
|
|
15838
|
+
|
|
16339
15839
|
rule_ids: arrayOf(() => factories.string()),
|
|
16340
15840
|
}),
|
|
16341
15841
|
|
|
@@ -16803,21 +16303,6 @@ const factories = {
|
|
|
16803
16303
|
summaries: arrayOf(() => factories['io.flow.internal.v0.models.rate_name_summary']()),
|
|
16804
16304
|
}),
|
|
16805
16305
|
|
|
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
16306
|
'io.flow.internal.v0.models.record_reference': (): io.flow.internal.v0.models.RecordReference => ({
|
|
16822
16307
|
id: factories.string(),
|
|
16823
16308
|
}),
|
|
@@ -17192,6 +16677,15 @@ const factories = {
|
|
|
17192
16677
|
placeholder: factories.boolean(),
|
|
17193
16678
|
}),
|
|
17194
16679
|
|
|
16680
|
+
'io.flow.internal.v0.models.restriction_blanket_organization_exemption': (): io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption => ({
|
|
16681
|
+
id: factories.string(),
|
|
16682
|
+
organization_id: factories.string(),
|
|
16683
|
+
description: factories.string(),
|
|
16684
|
+
is_all_rules_exempt: factories.boolean(),
|
|
16685
|
+
exempt_regions: arrayOf(() => factories.string()),
|
|
16686
|
+
excluded_rules: arrayOf(() => factories.string()),
|
|
16687
|
+
}),
|
|
16688
|
+
|
|
17195
16689
|
'io.flow.internal.v0.models.restriction_category': (): io.flow.internal.v0.models.RestrictionCategory => ({
|
|
17196
16690
|
category: factories.string(),
|
|
17197
16691
|
}),
|
|
@@ -17360,6 +16854,8 @@ const factories = {
|
|
|
17360
16854
|
reviews: arrayOf(() => factories['io.flow.internal.v0.models.restriction_item_review']()),
|
|
17361
16855
|
created_at: factories.date_time_iso_8601(),
|
|
17362
16856
|
updated_at: factories.date_time_iso_8601(),
|
|
16857
|
+
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
16858
|
+
taxonomy_data: arrayOf(() => factories['io.flow.product.v0.models.product_taxonomy_data']()),
|
|
17363
16859
|
}),
|
|
17364
16860
|
|
|
17365
16861
|
'io.flow.internal.v0.models.restriction_product_decision_form': (): io.flow.internal.v0.models.RestrictionProductDecisionForm => ({
|
|
@@ -17402,6 +16898,12 @@ const factories = {
|
|
|
17402
16898
|
auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
|
|
17403
16899
|
source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
|
|
17404
16900
|
sellability_positive_keywords: arrayOf(() => factories.string()),
|
|
16901
|
+
|
|
16902
|
+
community_exemption: arrayOf(
|
|
16903
|
+
() => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](),
|
|
16904
|
+
),
|
|
16905
|
+
|
|
16906
|
+
reason_code: factories.string(),
|
|
17405
16907
|
}),
|
|
17406
16908
|
|
|
17407
16909
|
'io.flow.internal.v0.models.restriction_rule_decision_form': (): io.flow.internal.v0.models.RestrictionRuleDecisionForm => ({
|
|
@@ -17457,6 +16959,12 @@ const factories = {
|
|
|
17457
16959
|
auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
|
|
17458
16960
|
source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
|
|
17459
16961
|
sellability_positive_keywords: arrayOf(() => factories.string()),
|
|
16962
|
+
|
|
16963
|
+
community_exemption: arrayOf(
|
|
16964
|
+
() => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](),
|
|
16965
|
+
),
|
|
16966
|
+
|
|
16967
|
+
reason_code: factories.string(),
|
|
17460
16968
|
}),
|
|
17461
16969
|
|
|
17462
16970
|
'io.flow.internal.v0.models.restriction_rule_lane_exemption': (): io.flow.internal.v0.models.RestrictionRuleLaneExemption => ({
|
|
@@ -17473,9 +16981,13 @@ const factories = {
|
|
|
17473
16981
|
rule_id: factories.string(),
|
|
17474
16982
|
description: factories.string(),
|
|
17475
16983
|
is_rule_exempt: factories.boolean(),
|
|
17476
|
-
|
|
16984
|
+
exempt_regions: arrayOf(() => factories.string()),
|
|
17477
16985
|
ignored_keywords: arrayOf(() => factories.string()),
|
|
17478
16986
|
additional_keywords: arrayOf(() => factories.string()),
|
|
16987
|
+
|
|
16988
|
+
community_exemption_override: arrayOf(
|
|
16989
|
+
() => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption'](),
|
|
16990
|
+
),
|
|
17479
16991
|
}),
|
|
17480
16992
|
|
|
17481
16993
|
'io.flow.internal.v0.models.restriction_rule_override': (): io.flow.internal.v0.models.RestrictionRuleOverride => ({
|
|
@@ -17511,8 +17023,14 @@ const factories = {
|
|
|
17511
17023
|
num_products_setup_complete_with_pvs: factories.decimal(),
|
|
17512
17024
|
num_orgs_transacting_with_pvs: factories.decimal(),
|
|
17513
17025
|
num_products_transacting_with_pvs: factories.decimal(),
|
|
17026
|
+
num_orgs_setup_complete_with_pcs: factories.decimal(),
|
|
17027
|
+
num_products_setup_complete_with_pcs: factories.decimal(),
|
|
17028
|
+
num_orgs_transacting_with_pcs: factories.decimal(),
|
|
17029
|
+
num_products_transacting_with_pcs: factories.decimal(),
|
|
17514
17030
|
oldest_pv_product_date_setup_complete: factories.date_iso_8601(),
|
|
17515
17031
|
oldest_pv_product_date_transacting: factories.date_iso_8601(),
|
|
17032
|
+
oldest_pc_product_date_setup_complete: factories.date_iso_8601(),
|
|
17033
|
+
oldest_pc_product_date_transacting: factories.date_iso_8601(),
|
|
17516
17034
|
num_orgs_setup_complete_prs: factories.decimal(),
|
|
17517
17035
|
num_products_setup_complete_prs: factories.decimal(),
|
|
17518
17036
|
num_orgs_transacting_prs: factories.decimal(),
|
|
@@ -17703,6 +17221,19 @@ const factories = {
|
|
|
17703
17221
|
processor: factories['io.flow.internal.v0.enums.processor'](),
|
|
17704
17222
|
}),
|
|
17705
17223
|
|
|
17224
|
+
'io.flow.internal.v0.models.sales_payment_record': (): io.flow.internal.v0.models.SalesPaymentRecord => ({
|
|
17225
|
+
id: factories.string(),
|
|
17226
|
+
organization: factories['io.flow.internal.v0.models.reporting_organization_summary'](),
|
|
17227
|
+
order: factories['io.flow.internal.v0.models.reporting_order_summary'](),
|
|
17228
|
+
order_total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
17229
|
+
shopper_breakdown: factories['io.flow.internal.v0.models.shopper_breakdown'](),
|
|
17230
|
+
payment: factories['io.flow.internal.v0.models.reporting_payment'](),
|
|
17231
|
+
conversion_rate: factories['io.flow.internal.v0.models.reporting_conversion_rates'](),
|
|
17232
|
+
payment_is: factories['io.flow.internal.v0.models.payment_is'](),
|
|
17233
|
+
destination_country: factories.string(),
|
|
17234
|
+
fulfilled_at: factories.date_time_iso_8601(),
|
|
17235
|
+
}),
|
|
17236
|
+
|
|
17706
17237
|
'io.flow.internal.v0.models.sandbox_setup': (): io.flow.internal.v0.models.SandboxSetup => ({
|
|
17707
17238
|
requested_by: factories.string(),
|
|
17708
17239
|
}),
|
|
@@ -17711,6 +17242,23 @@ const factories = {
|
|
|
17711
17242
|
requested_by: factories.string(),
|
|
17712
17243
|
}),
|
|
17713
17244
|
|
|
17245
|
+
'io.flow.internal.v0.models.sarvesh_item': (): io.flow.internal.v0.models.SarveshItem => ({
|
|
17246
|
+
id: factories.string(),
|
|
17247
|
+
number: factories.string(),
|
|
17248
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
17249
|
+
description: factories.string(),
|
|
17250
|
+
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
17251
|
+
added_on: factories.date_time_iso_8601(),
|
|
17252
|
+
}),
|
|
17253
|
+
|
|
17254
|
+
'io.flow.internal.v0.models.sarvesh_item_form': (): io.flow.internal.v0.models.SarveshItemForm => ({
|
|
17255
|
+
number: factories.string(),
|
|
17256
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
17257
|
+
description: factories.string(),
|
|
17258
|
+
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
17259
|
+
added_on: factories.date_time_iso_8601(),
|
|
17260
|
+
}),
|
|
17261
|
+
|
|
17714
17262
|
'io.flow.internal.v0.models.scheduled_payment': (): io.flow.internal.v0.models.ScheduledPayment => ({
|
|
17715
17263
|
payment: factories['io.flow.internal.v0.models.report_payment'](),
|
|
17716
17264
|
bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
|
|
@@ -17855,25 +17403,6 @@ const factories = {
|
|
|
17855
17403
|
customer_price: factories.decimal(),
|
|
17856
17404
|
}),
|
|
17857
17405
|
|
|
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
17406
|
'io.flow.internal.v0.models.shopify_catalog_publication': (): io.flow.internal.v0.models.ShopifyCatalogPublication => ({
|
|
17878
17407
|
owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
|
|
17879
17408
|
}),
|
|
@@ -17887,16 +17416,6 @@ const factories = {
|
|
|
17887
17416
|
service: factories['io.flow.internal.v0.enums.shopify_service'](),
|
|
17888
17417
|
}),
|
|
17889
17418
|
|
|
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
17419
|
'io.flow.internal.v0.models.shopify_dispute': (): io.flow.internal.v0.models.ShopifyDispute => ({
|
|
17901
17420
|
id: factories.string(),
|
|
17902
17421
|
organization_id: factories.string(),
|
|
@@ -17927,74 +17446,31 @@ const factories = {
|
|
|
17927
17446
|
dispute: factories['io.flow.internal.v0.models.shopify_dispute'](),
|
|
17928
17447
|
}),
|
|
17929
17448
|
|
|
17930
|
-
'io.flow.internal.v0.models.
|
|
17449
|
+
'io.flow.internal.v0.models.shopify_hs10_code': (): io.flow.internal.v0.models.ShopifyHs10Code => ({
|
|
17450
|
+
country_code: factories.string(),
|
|
17451
|
+
code: factories.string(),
|
|
17452
|
+
}),
|
|
17453
|
+
|
|
17454
|
+
'io.flow.internal.v0.models.shopify_hs10_codes': (): io.flow.internal.v0.models.ShopifyHs10Codes => ({
|
|
17931
17455
|
id: factories.string(),
|
|
17932
|
-
|
|
17933
|
-
|
|
17456
|
+
item_number: factories.string(),
|
|
17457
|
+
codes: arrayOf(() => factories['io.flow.internal.v0.models.shopify_hs10_code']()),
|
|
17934
17458
|
}),
|
|
17935
17459
|
|
|
17936
|
-
'io.flow.internal.v0.models.
|
|
17937
|
-
discriminator: '
|
|
17460
|
+
'io.flow.internal.v0.models.shopify_hs10_codes_deleted': (): io.flow.internal.v0.models.ShopifyHs10CodesDeleted => ({
|
|
17461
|
+
discriminator: 'shopify_hs10_codes_deleted',
|
|
17938
17462
|
event_id: factories.string(),
|
|
17939
17463
|
timestamp: factories.date_time_iso_8601(),
|
|
17940
17464
|
organization: factories.string(),
|
|
17941
|
-
|
|
17465
|
+
id: factories.string(),
|
|
17942
17466
|
}),
|
|
17943
17467
|
|
|
17944
|
-
'io.flow.internal.v0.models.
|
|
17945
|
-
discriminator: '
|
|
17468
|
+
'io.flow.internal.v0.models.shopify_hs10_codes_upserted': (): io.flow.internal.v0.models.ShopifyHs10CodesUpserted => ({
|
|
17469
|
+
discriminator: 'shopify_hs10_codes_upserted',
|
|
17946
17470
|
event_id: factories.string(),
|
|
17947
17471
|
timestamp: factories.date_time_iso_8601(),
|
|
17948
17472
|
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(),
|
|
17473
|
+
shopify_hs10_codes: factories['io.flow.internal.v0.models.shopify_hs10_codes'](),
|
|
17998
17474
|
}),
|
|
17999
17475
|
|
|
18000
17476
|
'io.flow.internal.v0.models.shopify_incoterm_includes': (): io.flow.internal.v0.models.ShopifyIncotermIncludes => ({
|
|
@@ -18384,12 +17860,6 @@ const factories = {
|
|
|
18384
17860
|
url: factories.string(),
|
|
18385
17861
|
}),
|
|
18386
17862
|
|
|
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
17863
|
'io.flow.internal.v0.models.shopify_order_cancel_form': (): io.flow.internal.v0.models.ShopifyOrderCancelForm => ({
|
|
18394
17864
|
note: factories.string(),
|
|
18395
17865
|
}),
|
|
@@ -18400,32 +17870,11 @@ const factories = {
|
|
|
18400
17870
|
message: factories.string(),
|
|
18401
17871
|
}),
|
|
18402
17872
|
|
|
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
17873
|
'io.flow.internal.v0.models.shopify_order_destination_form': (): io.flow.internal.v0.models.ShopifyOrderDestinationForm => ({
|
|
18412
17874
|
destination: factories['io.flow.common.v0.models.address'](),
|
|
18413
17875
|
order_note: factories.string(),
|
|
18414
17876
|
}),
|
|
18415
17877
|
|
|
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
17878
|
'io.flow.internal.v0.models.shopify_order_fulfillments_snapshot': (): io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshot => ({
|
|
18430
17879
|
id: factories.string(),
|
|
18431
17880
|
organization_id: factories.string(),
|
|
@@ -18450,32 +17899,6 @@ const factories = {
|
|
|
18450
17899
|
shopify_order_fulfillments_snapshot: factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'](),
|
|
18451
17900
|
}),
|
|
18452
17901
|
|
|
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
17902
|
'io.flow.internal.v0.models.shopify_order_risk_assessment': (): io.flow.internal.v0.models.ShopifyOrderRiskAssessment => ({
|
|
18480
17903
|
id: factories.string(),
|
|
18481
17904
|
risk_level: factories.string(),
|
|
@@ -18519,19 +17942,6 @@ const factories = {
|
|
|
18519
17942
|
transaction: factories['io.flow.internal.v0.models.shopify_order_transaction'](),
|
|
18520
17943
|
}),
|
|
18521
17944
|
|
|
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
17945
|
'io.flow.internal.v0.models.shopify_partner_webhook': (): io.flow.internal.v0.models.ShopifyPartnerWebhook => ({
|
|
18536
17946
|
placeholder: factories.boolean(),
|
|
18537
17947
|
}),
|
|
@@ -18540,12 +17950,6 @@ const factories = {
|
|
|
18540
17950
|
placeholder: factories.boolean(),
|
|
18541
17951
|
}),
|
|
18542
17952
|
|
|
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
17953
|
'io.flow.internal.v0.models.shopify_product_bundle': (): io.flow.internal.v0.models.ShopifyProductBundle => ({
|
|
18550
17954
|
id: factories.string(),
|
|
18551
17955
|
underlying: factories['io.flow.internal.v0.models.shopify_product_bundle_underlying'](),
|
|
@@ -18641,109 +18045,18 @@ const factories = {
|
|
|
18641
18045
|
deleted_at: factories.date_time_iso_8601(),
|
|
18642
18046
|
}),
|
|
18643
18047
|
|
|
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 => ({
|
|
18048
|
+
'io.flow.internal.v0.models.shopify_report_file_deleted': (): io.flow.internal.v0.models.ShopifyReportFileDeleted => ({
|
|
18049
|
+
discriminator: 'shopify_report_file_deleted',
|
|
18050
|
+
event_id: factories.string(),
|
|
18051
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18655
18052
|
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
|
-
}),
|
|
18685
|
-
|
|
18686
|
-
'io.flow.internal.v0.models.shopify_promotion_item_prerequisite': (): io.flow.internal.v0.models.ShopifyPromotionItemPrerequisite => ({
|
|
18687
|
-
discriminator: 'shopify_promotion_item_prerequisite',
|
|
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
18053
|
}),
|
|
18741
18054
|
|
|
18742
|
-
'io.flow.internal.v0.models.
|
|
18743
|
-
discriminator: '
|
|
18055
|
+
'io.flow.internal.v0.models.shopify_report_file_upserted': (): io.flow.internal.v0.models.ShopifyReportFileUpserted => ({
|
|
18056
|
+
discriminator: 'shopify_report_file_upserted',
|
|
18744
18057
|
event_id: factories.string(),
|
|
18745
18058
|
timestamp: factories.date_time_iso_8601(),
|
|
18746
|
-
|
|
18059
|
+
shopify_report_file: factories['io.flow.internal.v0.models.report_file'](),
|
|
18747
18060
|
}),
|
|
18748
18061
|
|
|
18749
18062
|
'io.flow.internal.v0.models.shopify_shop_statistics': (): io.flow.internal.v0.models.ShopifyShopStatistics => ({
|
|
@@ -18756,13 +18069,6 @@ const factories = {
|
|
|
18756
18069
|
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
18757
18070
|
}),
|
|
18758
18071
|
|
|
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
18072
|
'io.flow.internal.v0.models.shopify_store_detail': (): io.flow.internal.v0.models.ShopifyStoreDetail => ({
|
|
18767
18073
|
shopify_domain: factories.string(),
|
|
18768
18074
|
shop_id: factories.string(),
|
|
@@ -18773,21 +18079,12 @@ const factories = {
|
|
|
18773
18079
|
request: factories.object(),
|
|
18774
18080
|
}),
|
|
18775
18081
|
|
|
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'](),
|
|
18082
|
+
'io.flow.internal.v0.models.shopper_breakdown': (): io.flow.internal.v0.models.ShopperBreakdown => ({
|
|
18083
|
+
product: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18084
|
+
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18085
|
+
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18086
|
+
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18087
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
18791
18088
|
}),
|
|
18792
18089
|
|
|
18793
18090
|
'io.flow.internal.v0.models.shopper_fees': (): io.flow.internal.v0.models.ShopperFees => ({
|
|
@@ -18994,16 +18291,6 @@ const factories = {
|
|
|
18994
18291
|
period: factories['io.flow.common.v0.models.datetime_range'](),
|
|
18995
18292
|
}),
|
|
18996
18293
|
|
|
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
18294
|
'io.flow.internal.v0.models.string_feature_default_value': (): io.flow.internal.v0.models.StringFeatureDefaultValue => ({
|
|
19008
18295
|
discriminator: 'string',
|
|
19009
18296
|
value: factories.string(),
|
|
@@ -20157,26 +19444,6 @@ const factories = {
|
|
|
20157
19444
|
user: factories['io.flow.common.v0.models.user'](),
|
|
20158
19445
|
}),
|
|
20159
19446
|
|
|
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
19447
|
'io.flow.internal.v0.models.validated_address': (): io.flow.internal.v0.models.ValidatedAddress => ({
|
|
20181
19448
|
company_name: factories.string(),
|
|
20182
19449
|
person_name: factories.string(),
|
|
@@ -20225,12 +19492,6 @@ const factories = {
|
|
|
20225
19492
|
package_dimensions_source: factories['io.flow.label.v0.enums.package_dimensions_source'](),
|
|
20226
19493
|
}),
|
|
20227
19494
|
|
|
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
19495
|
'io.flow.internal.v0.models.vies_result': (): io.flow.internal.v0.models.ViesResult => ({
|
|
20235
19496
|
country: factories.string(),
|
|
20236
19497
|
number: factories.string(),
|
|
@@ -20442,17 +19703,6 @@ const factories = {
|
|
|
20442
19703
|
return f();
|
|
20443
19704
|
},
|
|
20444
19705
|
|
|
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
19706
|
'io.flow.internal.v0.unions.decline_reason': (): io.flow.internal.v0.unions.DeclineReason => {
|
|
20457
19707
|
const f = faker.helpers.arrayElement([
|
|
20458
19708
|
() => factories['io.flow.internal.v0.models.decline_reason_channel_order_acceptance'](),
|
|
@@ -20573,12 +19823,8 @@ const factories = {
|
|
|
20573
19823
|
() => factories['io.flow.internal.v0.models.channel_order_acceptance_upserted'](),
|
|
20574
19824
|
() => factories['io.flow.internal.v0.models.channel_order_acceptance_deleted'](),
|
|
20575
19825
|
() => 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
19826
|
() => factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted'](),
|
|
20579
19827
|
() => 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
19828
|
() => factories['io.flow.internal.v0.models.internal_channel_rate_deleted'](),
|
|
20583
19829
|
() => factories['io.flow.internal.v0.models.internal_channel_rate_upserted'](),
|
|
20584
19830
|
() => factories['io.flow.internal.v0.models.rate_deleted'](),
|
|
@@ -20679,8 +19925,6 @@ const factories = {
|
|
|
20679
19925
|
() => factories['io.flow.internal.v0.models.item_harmonization_upserted'](),
|
|
20680
19926
|
() => factories['io.flow.internal.v0.models.item_harmonization_deleted'](),
|
|
20681
19927
|
() => 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
19928
|
() => factories['io.flow.internal.v0.models.item_form_import_request'](),
|
|
20685
19929
|
() => factories['io.flow.internal.v0.models.label_request_error_upserted'](),
|
|
20686
19930
|
() => factories['io.flow.internal.v0.models.label_request_error_deleted'](),
|
|
@@ -20778,10 +20022,8 @@ const factories = {
|
|
|
20778
20022
|
() => factories['io.flow.internal.v0.models.restriction_rule_effect_deleted'](),
|
|
20779
20023
|
() => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](),
|
|
20780
20024
|
() => 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'](),
|
|
20025
|
+
() => factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted'](),
|
|
20026
|
+
() => factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted'](),
|
|
20785
20027
|
() => factories['io.flow.internal.v0.models.shopify_markets_order_upserted'](),
|
|
20786
20028
|
() => factories['io.flow.internal.v0.models.shopify_markets_order_deleted'](),
|
|
20787
20029
|
() => factories['io.flow.internal.v0.models.shopify_markets_shop_upserted'](),
|
|
@@ -20827,6 +20069,8 @@ const factories = {
|
|
|
20827
20069
|
() => factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](),
|
|
20828
20070
|
() => factories['io.flow.internal.v0.models.shopify_dispute_upserted'](),
|
|
20829
20071
|
() => factories['io.flow.internal.v0.models.shopify_dispute_deleted'](),
|
|
20072
|
+
() => factories['io.flow.internal.v0.models.shopify_report_file_upserted'](),
|
|
20073
|
+
() => factories['io.flow.internal.v0.models.shopify_report_file_deleted'](),
|
|
20830
20074
|
() => factories['io.flow.internal.v0.models.stripe_authorization_deleted'](),
|
|
20831
20075
|
() => factories['io.flow.internal.v0.models.stripe_authorization_upserted'](),
|
|
20832
20076
|
() => factories['io.flow.internal.v0.models.stripe_reversal_deleted'](),
|
|
@@ -21050,23 +20294,6 @@ const factories = {
|
|
|
21050
20294
|
return f();
|
|
21051
20295
|
},
|
|
21052
20296
|
|
|
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
20297
|
'io.flow.internal.v0.unions.order_action_form': (): io.flow.internal.v0.unions.OrderActionForm => {
|
|
21071
20298
|
const f = faker.helpers.arrayElement([
|
|
21072
20299
|
() => factories['io.flow.internal.v0.models.whole_order_action_form'](),
|
|
@@ -21229,42 +20456,6 @@ const factories = {
|
|
|
21229
20456
|
return f();
|
|
21230
20457
|
},
|
|
21231
20458
|
|
|
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
20459
|
'io.flow.internal.v0.unions.simplified_classification_taxonomy': (): io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy => {
|
|
21269
20460
|
const f = faker.helpers.arrayElement([
|
|
21270
20461
|
() => factories['io.flow.internal.v0.models.simplified_taxonomy_category'](),
|
|
@@ -21384,14 +20575,6 @@ const factories = {
|
|
|
21384
20575
|
return f();
|
|
21385
20576
|
},
|
|
21386
20577
|
|
|
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
20578
|
'io.flow.inventory.v0.enums.aggregate': (): io.flow.inventory.v0.enums.Aggregate => faker.helpers.arrayElement(['maximum', 'minimum']),
|
|
21396
20579
|
'io.flow.inventory.v0.enums.inventory_status': (): io.flow.inventory.v0.enums.InventoryStatus => faker.helpers.arrayElement(['has_inventory', 'no_inventory']),
|
|
21397
20580
|
'io.flow.inventory.v0.enums.update_type': (): io.flow.inventory.v0.enums.UpdateType => faker.helpers.arrayElement(['change', 'set']),
|
|
@@ -22190,75 +21373,6 @@ const factories = {
|
|
|
22190
21373
|
return f();
|
|
22191
21374
|
},
|
|
22192
21375
|
|
|
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
21376
|
'io.flow.order.management.v0.enums.cancel_reason': (): io.flow.order.management.v0.enums.CancelReason => faker.helpers.arrayElement(['out_of_stock', 'consumer_requested', 'flow_cancel']),
|
|
22263
21377
|
'io.flow.order.management.v0.enums.fulfillment_item_quantity_status': (): io.flow.order.management.v0.enums.FulfillmentItemQuantityStatus => faker.helpers.arrayElement(['new', 'shipped', 'cancelled']),
|
|
22264
21378
|
'io.flow.order.management.v0.enums.order_change_source': (): io.flow.order.management.v0.enums.OrderChangeSource => faker.helpers.arrayElement(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']),
|
|
@@ -25361,6 +24475,7 @@ const factories = {
|
|
|
25361
24475
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
25362
24476
|
taxonomy_data: arrayOf(() => factories['io.flow.product.v0.models.product_taxonomy_data']()),
|
|
25363
24477
|
item_numbers: arrayOf(() => factories.string()),
|
|
24478
|
+
highest_value_item_number: factories.string(),
|
|
25364
24479
|
updated_at: factories.date_time_iso_8601(),
|
|
25365
24480
|
deleted_at: factories.date_time_iso_8601(),
|
|
25366
24481
|
}),
|
|
@@ -26314,18 +25429,13 @@ const factories = {
|
|
|
26314
25429
|
shop_id: factories.string(),
|
|
26315
25430
|
product_id: factories.string(),
|
|
26316
25431
|
name: factories.string(),
|
|
26317
|
-
price: factories['io.flow.
|
|
25432
|
+
price: factories['io.flow.common.v0.models.money'](),
|
|
26318
25433
|
description: factories.string(),
|
|
26319
25434
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
26320
25435
|
status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
|
|
26321
25436
|
dry_run: factories.boolean(),
|
|
26322
25437
|
}),
|
|
26323
25438
|
|
|
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
25439
|
'io.flow.sellability.v0.models.sellability_error': (): io.flow.sellability.v0.models.SellabilityError => ({
|
|
26330
25440
|
discriminator: 'sellability_error',
|
|
26331
25441
|
code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
|
|
@@ -26346,106 +25456,6 @@ const factories = {
|
|
|
26346
25456
|
return f();
|
|
26347
25457
|
},
|
|
26348
25458
|
|
|
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
25459
|
'io.flow.shopify.external.v0.enums.cancel_reason': (): io.flow.shopify.external.v0.enums.CancelReason => faker.helpers.arrayElement(['customer', 'fraud', 'inventory', 'declined', 'other']),
|
|
26450
25460
|
'io.flow.shopify.external.v0.enums.discount_status': (): io.flow.shopify.external.v0.enums.DiscountStatus => faker.helpers.arrayElement(['enabled', 'disabled', 'depleted']),
|
|
26451
25461
|
'io.flow.shopify.external.v0.enums.discount_type': (): io.flow.shopify.external.v0.enums.DiscountType => faker.helpers.arrayElement(['fixed_amount', 'percentage', 'shipping']),
|
|
@@ -27947,7 +26957,7 @@ const factories = {
|
|
|
27947
26957
|
'shopify_webhook',
|
|
27948
26958
|
]),
|
|
27949
26959
|
|
|
27950
|
-
'io.flow.shopify.markets.internal.v0.enums.product_status': (): io.flow.shopify.markets.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft']),
|
|
26960
|
+
'io.flow.shopify.markets.internal.v0.enums.product_status': (): io.flow.shopify.markets.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft', 'unlisted']),
|
|
27951
26961
|
|
|
27952
26962
|
'io.flow.shopify.markets.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.shopify.markets.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
|
|
27953
26963
|
'aerosols',
|
|
@@ -28081,6 +27091,20 @@ const factories = {
|
|
|
28081
27091
|
destination: factories.string(),
|
|
28082
27092
|
}),
|
|
28083
27093
|
|
|
27094
|
+
'io.flow.shopify.markets.internal.v0.models.shopify_hs10_code': (): io.flow.shopify.markets.internal.v0.models.ShopifyHs10Code => ({
|
|
27095
|
+
country_code: factories.string(),
|
|
27096
|
+
code: factories.string(),
|
|
27097
|
+
}),
|
|
27098
|
+
|
|
27099
|
+
'io.flow.shopify.markets.internal.v0.models.shopify_hs10_codes': (): io.flow.shopify.markets.internal.v0.models.ShopifyHs10Codes => ({
|
|
27100
|
+
id: factories.string(),
|
|
27101
|
+
item_number: factories.string(),
|
|
27102
|
+
|
|
27103
|
+
codes: arrayOf(
|
|
27104
|
+
() => factories['io.flow.shopify.markets.internal.v0.models.shopify_hs10_code'](),
|
|
27105
|
+
),
|
|
27106
|
+
}),
|
|
27107
|
+
|
|
28084
27108
|
'io.flow.shopify.markets.internal.v0.models.shopify_markets_best_selling_product': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct => ({
|
|
28085
27109
|
id: factories.string(),
|
|
28086
27110
|
}),
|
|
@@ -29341,291 +28365,6 @@ const factories = {
|
|
|
29341
28365
|
return f();
|
|
29342
28366
|
},
|
|
29343
28367
|
|
|
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
28368
|
'io.flow.stripe.v0.enums.account_type': (): io.flow.stripe.v0.enums.AccountType => faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']),
|
|
29630
28369
|
'io.flow.stripe.v0.enums.apple_pay_type': (): io.flow.stripe.v0.enums.ApplePayType => faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']),
|
|
29631
28370
|
|
|
@@ -31954,10 +30693,6 @@ export const makeAccountUpsertedV2 = () => factories['io.flow.internal.v0.models
|
|
|
31954
30693
|
export const makeAccountingPendingOrderMetadata = () => factories['io.flow.internal.v0.models.accounting_pending_order_metadata']();
|
|
31955
30694
|
export const makeActionQuantity = () => factories['io.flow.internal.v0.models.action_quantity']();
|
|
31956
30695
|
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
30696
|
export const makeAdjustmentAmount = () => factories['io.flow.internal.v0.unions.adjustment_amount']();
|
|
31962
30697
|
export const makeAdjustmentAmountFixed = () => factories['io.flow.internal.v0.models.adjustment_amount_fixed']();
|
|
31963
30698
|
export const makeAdjustmentAmountPercentage = () => factories['io.flow.internal.v0.models.adjustment_amount_percentage']();
|
|
@@ -32031,7 +30766,6 @@ export const makeAnshItemForm = () => factories['io.flow.internal.v0.models.ansh
|
|
|
32031
30766
|
export const makeAnshItemType = () => factories['io.flow.internal.v0.enums.ansh_item_type']();
|
|
32032
30767
|
export const makeAnyDangerousGoods = () => factories['io.flow.internal.v0.enums.any_dangerous_goods']();
|
|
32033
30768
|
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
30769
|
export const makeApplePayAuthorizationPayload = () => factories['io.flow.internal.v0.models.apple_pay_authorization_payload']();
|
|
32036
30770
|
export const makeApplicablePreferentialRate = () => factories['io.flow.internal.v0.enums.applicable_preferential_rate']();
|
|
32037
30771
|
export const makeApplyAtValueForm = () => factories['io.flow.internal.v0.models.apply_at_value_form']();
|
|
@@ -32056,6 +30790,8 @@ export const makeBankAccountReference = () => factories['io.flow.internal.v0.mod
|
|
|
32056
30790
|
export const makeBankAccountStatus = () => factories['io.flow.internal.v0.enums.bank_account_status']();
|
|
32057
30791
|
export const makeBankPayment = () => factories['io.flow.internal.v0.models.bank_payment']();
|
|
32058
30792
|
export const makeBankPaymentDeletedV2 = () => factories['io.flow.internal.v0.models.bank_payment_deleted_v2']();
|
|
30793
|
+
export const makeBankPaymentDetail = () => factories['io.flow.internal.v0.models.bank_payment_detail']();
|
|
30794
|
+
export const makeBankPaymentDetailAttachment = () => factories['io.flow.internal.v0.models.bank_payment_detail_attachment']();
|
|
32059
30795
|
export const makeBankPaymentForm = () => factories['io.flow.internal.v0.models.bank_payment_form']();
|
|
32060
30796
|
export const makeBankPaymentOrder = () => factories['io.flow.internal.v0.models.bank_payment_order']();
|
|
32061
30797
|
export const makeBankPaymentOrderDeleted = () => factories['io.flow.internal.v0.models.bank_payment_order_deleted']();
|
|
@@ -32238,7 +30974,6 @@ export const makeChargebackPaymentStatus = () => factories['io.flow.internal.v0.
|
|
|
32238
30974
|
export const makeChargebackProcessStatus = () => factories['io.flow.internal.v0.enums.chargeback_process_status']();
|
|
32239
30975
|
export const makeChargebackUpserted = () => factories['io.flow.internal.v0.models.chargeback_upserted']();
|
|
32240
30976
|
export const makeChargebackVersion = () => factories['io.flow.internal.v0.models.chargeback_version']();
|
|
32241
|
-
export const makeCheckbox = () => factories['io.flow.internal.v0.models.checkbox']();
|
|
32242
30977
|
export const makeCheckoutAnalytics = () => factories['io.flow.internal.v0.models.checkout_analytics']();
|
|
32243
30978
|
export const makeCheckoutAsset = () => factories['io.flow.internal.v0.models.checkout_asset']();
|
|
32244
30979
|
export const makeCheckoutAssetType = () => factories['io.flow.internal.v0.enums.checkout_asset_type']();
|
|
@@ -32248,22 +30983,9 @@ export const makeCheckoutBehaviorCustomerInfoEmail = () => factories['io.flow.in
|
|
|
32248
30983
|
export const makeCheckoutBehaviorShippingAddress = () => factories['io.flow.internal.v0.models.checkout_behavior_shipping_address']();
|
|
32249
30984
|
export const makeCheckoutBehaviorShippingMethod = () => factories['io.flow.internal.v0.models.checkout_behavior_shipping_method']();
|
|
32250
30985
|
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
30986
|
export const makeCheckoutConfigurationForm = () => factories['io.flow.internal.v0.models.checkout_configuration_form']();
|
|
32253
30987
|
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
30988
|
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
30989
|
export const makeCheckoutSettings = () => factories['io.flow.internal.v0.models.checkout_settings']();
|
|
32268
30990
|
export const makeCheckoutShippingMethodPromptBehavior = () => factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior']();
|
|
32269
30991
|
export const makeCheckoutUrl = () => factories['io.flow.internal.v0.models.checkout_url']();
|
|
@@ -32328,24 +31050,6 @@ export const makeConnectReportTransferTransferType = () => factories['io.flow.in
|
|
|
32328
31050
|
export const makeConsoleLabelRequestForm = () => factories['io.flow.internal.v0.models.console_label_request_form']();
|
|
32329
31051
|
export const makeConsoleLabelValidationForm = () => factories['io.flow.internal.v0.unions.console_label_validation_form']();
|
|
32330
31052
|
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
31053
|
export const makeCourthouseProductSummary = () => factories['io.flow.internal.v0.models.courthouse_product_summary']();
|
|
32350
31054
|
export const makeCrossdockTrackingStatus = () => factories['io.flow.internal.v0.enums.crossdock_tracking_status']();
|
|
32351
31055
|
export const makeCryptoAccount = () => factories['io.flow.internal.v0.models.crypto_account']();
|
|
@@ -32368,6 +31072,7 @@ export const makeCustomsProductLabels = () => factories['io.flow.internal.v0.mod
|
|
|
32368
31072
|
export const makeDailyValue = () => factories['io.flow.internal.v0.models.daily_value']();
|
|
32369
31073
|
export const makeDailyValueDeleted = () => factories['io.flow.internal.v0.models.daily_value_deleted']();
|
|
32370
31074
|
export const makeDailyValueUpserted = () => factories['io.flow.internal.v0.models.daily_value_upserted']();
|
|
31075
|
+
export const makeDatabase = () => factories['io.flow.internal.v0.models.database']();
|
|
32371
31076
|
export const makeDebugAccountingTransaction = () => factories['io.flow.internal.v0.models.debug_accounting_transaction']();
|
|
32372
31077
|
export const makeDebugAccountingTransactionType = () => factories['io.flow.internal.v0.enums.debug_accounting_transaction_type']();
|
|
32373
31078
|
export const makeDebugAdjustment = () => factories['io.flow.internal.v0.models.debug_adjustment']();
|
|
@@ -32407,7 +31112,6 @@ export const makeDeminimisAdjustmentType = () => factories['io.flow.internal.v0.
|
|
|
32407
31112
|
export const makeDestinationError = () => factories['io.flow.internal.v0.models.destination_error']();
|
|
32408
31113
|
export const makeDhl = () => factories['io.flow.internal.v0.models.dhl']();
|
|
32409
31114
|
export const makeDhlEcommerce = () => factories['io.flow.internal.v0.models.dhl_ecommerce']();
|
|
32410
|
-
export const makeDict = () => factories['io.flow.internal.v0.models.dict']();
|
|
32411
31115
|
export const makeDimensionEstimateOpsInput = () => factories['io.flow.internal.v0.models.dimension_estimate_ops_input']();
|
|
32412
31116
|
export const makeDiscount = () => factories['io.flow.internal.v0.models.discount']();
|
|
32413
31117
|
export const makeDiscountCode = () => factories['io.flow.internal.v0.models.discount_code']();
|
|
@@ -32555,9 +31259,6 @@ export const makeFinanceBankAccount = () => factories['io.flow.internal.v0.model
|
|
|
32555
31259
|
export const makeFinanceBankAccountOwner = () => factories['io.flow.internal.v0.models.finance_bank_account_owner']();
|
|
32556
31260
|
export const makeFinanceBankPayment = () => factories['io.flow.internal.v0.models.finance_bank_payment']();
|
|
32557
31261
|
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
31262
|
export const makeFiservAccount = () => factories['io.flow.internal.v0.models.fiserv_account']();
|
|
32562
31263
|
export const makeFiservAccountModificationForm = () => factories['io.flow.internal.v0.models.fiserv_account_modification_form']();
|
|
32563
31264
|
export const makeFiservAccountPutForm = () => factories['io.flow.internal.v0.models.fiserv_account_put_form']();
|
|
@@ -32569,7 +31270,6 @@ export const makeFiservMerchantModificationForm = () => factories['io.flow.inter
|
|
|
32569
31270
|
export const makeFiservMerchantPutForm = () => factories['io.flow.internal.v0.models.fiserv_merchant_put_form']();
|
|
32570
31271
|
export const makeFlexeWebhook = () => factories['io.flow.internal.v0.models.flexe_webhook']();
|
|
32571
31272
|
export const makeFlowAccount = () => factories['io.flow.internal.v0.models.flow_account']();
|
|
32572
|
-
export const makeFlowApp = () => factories['io.flow.internal.v0.enums.flow_app']();
|
|
32573
31273
|
export const makeFlowBillingStatement = () => factories['io.flow.internal.v0.models.flow_billing_statement']();
|
|
32574
31274
|
export const makeFlowChannelOrganization = () => factories['io.flow.internal.v0.models.flow_channel_organization']();
|
|
32575
31275
|
export const makeFlowLabProject = () => factories['io.flow.internal.v0.models.flow_lab_project']();
|
|
@@ -32578,7 +31278,6 @@ export const makeFlowLabProjectPutForm = () => factories['io.flow.internal.v0.mo
|
|
|
32578
31278
|
export const makeFlowLabelSetting = () => factories['io.flow.internal.v0.models.flow_label_setting']();
|
|
32579
31279
|
export const makeFlowLabelSettingForm = () => factories['io.flow.internal.v0.models.flow_label_setting_form']();
|
|
32580
31280
|
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
31281
|
export const makeFraudAuthorizationSummary = () => factories['io.flow.internal.v0.models.fraud_authorization_summary']();
|
|
32583
31282
|
export const makeFraudPendingReview = () => factories['io.flow.internal.v0.models.fraud_pending_review']();
|
|
32584
31283
|
export const makeFraudPendingReviewAuthorization = () => factories['io.flow.internal.v0.models.fraud_pending_review_authorization']();
|
|
@@ -32614,12 +31313,6 @@ export const makeFraudSummary = () => factories['io.flow.internal.v0.models.frau
|
|
|
32614
31313
|
export const makeFtpFileDeleted = () => factories['io.flow.internal.v0.models.ftp_file_deleted']();
|
|
32615
31314
|
export const makeFtpFileToProcessUploaded = () => factories['io.flow.internal.v0.models.ftp_file_to_process_uploaded']();
|
|
32616
31315
|
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
31316
|
export const makeFuelSurchargeServiceFeeAmountByWeightPutForm = () => factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form']();
|
|
32624
31317
|
export const makeFuelSurchargeServiceFeePercentPutForm = () => factories['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form']();
|
|
32625
31318
|
export const makeFuelSurchargeServiceFeePutForm = () => factories['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form']();
|
|
@@ -32655,6 +31348,7 @@ export const makeFxRevenueRecognitionRate = () => factories['io.flow.internal.v0
|
|
|
32655
31348
|
export const makeFxRevenueRecognitionSource = () => factories['io.flow.internal.v0.models.fx_revenue_recognition_source']();
|
|
32656
31349
|
export const makeGeIngestionFileStatus = () => factories['io.flow.internal.v0.enums.ge_ingestion_file_status']();
|
|
32657
31350
|
export const makeGeRevenueShareTransaction = () => factories['io.flow.internal.v0.models.ge_revenue_share_transaction']();
|
|
31351
|
+
export const makeGeRevenueShareTransactionType = () => factories['io.flow.internal.v0.enums.ge_revenue_share_transaction_type']();
|
|
32658
31352
|
export const makeGenerateLoad = () => factories['io.flow.internal.v0.unions.generate_load']();
|
|
32659
31353
|
export const makeGenerateLoadMultipleOrgs = () => factories['io.flow.internal.v0.models.generate_load_multiple_orgs']();
|
|
32660
31354
|
export const makeGenerateLoadSingleOrg = () => factories['io.flow.internal.v0.models.generate_load_single_org']();
|
|
@@ -32689,7 +31383,6 @@ export const makeHarmonizedItemsHs6Export = () => factories['io.flow.internal.v0
|
|
|
32689
31383
|
export const makeHoseinItem = () => factories['io.flow.internal.v0.models.hosein_item']();
|
|
32690
31384
|
export const makeHoseinItemForm = () => factories['io.flow.internal.v0.models.hosein_item_form']();
|
|
32691
31385
|
export const makeHoseinItemType = () => factories['io.flow.internal.v0.enums.hosein_item_type']();
|
|
32692
|
-
export const makeHref = () => factories['io.flow.internal.v0.models.href']();
|
|
32693
31386
|
export const makeHs6 = () => factories['io.flow.internal.v0.models.hs6']();
|
|
32694
31387
|
export const makeHs6Metadata = () => factories['io.flow.internal.v0.models.hs6_metadata']();
|
|
32695
31388
|
export const makeHttpMethod = () => factories['io.flow.internal.v0.enums.http_method']();
|
|
@@ -32697,7 +31390,6 @@ export const makeImportCompleted = () => factories['io.flow.internal.v0.models.i
|
|
|
32697
31390
|
export const makeImportFailed = () => factories['io.flow.internal.v0.models.import_failed']();
|
|
32698
31391
|
export const makeIndexTaskType = () => factories['io.flow.internal.v0.unions.index_task_type']();
|
|
32699
31392
|
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
31393
|
export const makeInternalAdyenAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_adyen_authorization_details']();
|
|
32702
31394
|
export const makeInternalAfterpayAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_afterpay_authorization_details']();
|
|
32703
31395
|
export const makeInternalAuthorization = () => factories['io.flow.internal.v0.models.internal_authorization']();
|
|
@@ -32732,9 +31424,6 @@ export const makeInvoiceInfoForm = () => factories['io.flow.internal.v0.models.i
|
|
|
32732
31424
|
export const makeInvoiceLine = () => factories['io.flow.internal.v0.models.invoice_line']();
|
|
32733
31425
|
export const makeInvoiceLineItem = () => factories['io.flow.internal.v0.models.invoice_line_item']();
|
|
32734
31426
|
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
31427
|
export const makeItemClassification = () => factories['io.flow.internal.v0.models.item_classification']();
|
|
32739
31428
|
export const makeItemClassificationAction = () => factories['io.flow.internal.v0.enums.item_classification_action']();
|
|
32740
31429
|
export const makeItemClassificationForm = () => factories['io.flow.internal.v0.models.item_classification_form']();
|
|
@@ -32767,6 +31456,9 @@ export const makeItemSummary = () => factories['io.flow.internal.v0.models.item_
|
|
|
32767
31456
|
export const makeItemType = () => factories['io.flow.internal.v0.enums.item_type']();
|
|
32768
31457
|
export const makeItemValuesForm = () => factories['io.flow.internal.v0.models.item_values_form']();
|
|
32769
31458
|
export const makeJeanDemoItem = () => factories['io.flow.internal.v0.models.jean_demo_item']();
|
|
31459
|
+
export const makeJournal = () => factories['io.flow.internal.v0.models.journal']();
|
|
31460
|
+
export const makeJournalFailure = () => factories['io.flow.internal.v0.models.journal_failure']();
|
|
31461
|
+
export const makeJournalOperation = () => factories['io.flow.internal.v0.enums.journal_operation']();
|
|
32770
31462
|
export const makeKey = () => factories['io.flow.internal.v0.models.key']();
|
|
32771
31463
|
export const makeKeyReference = () => factories['io.flow.internal.v0.models.key_reference']();
|
|
32772
31464
|
export const makeKeywordType = () => factories['io.flow.internal.v0.enums.keyword_type']();
|
|
@@ -32814,7 +31506,6 @@ export const makeLabelTransaction = () => factories['io.flow.internal.v0.models.
|
|
|
32814
31506
|
export const makeLabelTransactionDeleted = () => factories['io.flow.internal.v0.models.label_transaction_deleted']();
|
|
32815
31507
|
export const makeLabelTransactionType = () => factories['io.flow.internal.v0.enums.label_transaction_type']();
|
|
32816
31508
|
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
31509
|
export const makeLabelsPrediction = () => factories['io.flow.internal.v0.models.labels_prediction']();
|
|
32819
31510
|
export const makeLandedCostItem = () => factories['io.flow.internal.v0.models.landed_cost_item']();
|
|
32820
31511
|
export const makeLandmark = () => factories['io.flow.internal.v0.models.landmark']();
|
|
@@ -32831,21 +31522,9 @@ export const makeLiabilityRemittancePlanUpserted = () => factories['io.flow.inte
|
|
|
32831
31522
|
export const makeLiabilityType = () => factories['io.flow.internal.v0.enums.liability_type']();
|
|
32832
31523
|
export const makeLineActionForm = () => factories['io.flow.internal.v0.models.line_action_form']();
|
|
32833
31524
|
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
31525
|
export const makeLocalizedItemPricesExportRequest = () => factories['io.flow.internal.v0.models.localized_item_prices_export_request']();
|
|
32846
31526
|
export const makeLocalizedItemsExportSettings = () => factories['io.flow.internal.v0.models.localized_items_export_settings']();
|
|
32847
31527
|
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
31528
|
export const makeLogisticsCapabilities = () => factories['io.flow.internal.v0.models.logistics_capabilities']();
|
|
32850
31529
|
export const makeLogisticsCapabilitiesDeleted = () => factories['io.flow.internal.v0.models.logistics_capabilities_deleted']();
|
|
32851
31530
|
export const makeLogisticsCapabilitiesForm = () => factories['io.flow.internal.v0.models.logistics_capabilities_form']();
|
|
@@ -32854,13 +31533,11 @@ export const makeLogisticsCapability = () => factories['io.flow.internal.v0.enum
|
|
|
32854
31533
|
export const makeLogisticsPayoutRequest = () => factories['io.flow.internal.v0.models.logistics_payout_request']();
|
|
32855
31534
|
export const makeLogisticsPayoutRequestForm = () => factories['io.flow.internal.v0.models.logistics_payout_request_form']();
|
|
32856
31535
|
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
31536
|
export const makeLostChargeback = () => factories['io.flow.internal.v0.models.lost_chargeback']();
|
|
32859
31537
|
export const makeLoyaltyProgram = () => factories['io.flow.internal.v0.models.loyalty_program']();
|
|
32860
31538
|
export const makeLoyaltyProgramMessage = () => factories['io.flow.internal.v0.models.loyalty_program_message']();
|
|
32861
31539
|
export const makeLoyaltyProgramReward = () => factories['io.flow.internal.v0.models.loyalty_program_reward']();
|
|
32862
31540
|
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
31541
|
export const makeMainTransaction = () => factories['io.flow.internal.v0.models.main_transaction']();
|
|
32865
31542
|
export const makeMainTransactionDeleted = () => factories['io.flow.internal.v0.models.main_transaction_deleted']();
|
|
32866
31543
|
export const makeMainTransactionDeletedV2 = () => factories['io.flow.internal.v0.models.main_transaction_deleted_v2']();
|
|
@@ -32932,14 +31609,6 @@ export const makeOnboardingStateForm = () => factories['io.flow.internal.v0.mode
|
|
|
32932
31609
|
export const makeOnboardingStateSource = () => factories['io.flow.internal.v0.enums.onboarding_state_source']();
|
|
32933
31610
|
export const makeOneTimeTokenRedemptionForm = () => factories['io.flow.internal.v0.models.one_time_token_redemption_form']();
|
|
32934
31611
|
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
31612
|
export const makeOrderAction = () => factories['io.flow.internal.v0.enums.order_action']();
|
|
32944
31613
|
export const makeOrderActionForm = () => factories['io.flow.internal.v0.unions.order_action_form']();
|
|
32945
31614
|
export const makeOrderActionability = () => factories['io.flow.internal.v0.models.order_actionability']();
|
|
@@ -32978,7 +31647,6 @@ export const makeOrderRevenueRegionDataPoint = () => factories['io.flow.internal
|
|
|
32978
31647
|
export const makeOrderRevenueTimelineChart = () => factories['io.flow.internal.v0.models.order_revenue_timeline_chart']();
|
|
32979
31648
|
export const makeOrderRevenueTimelineDataPoint = () => factories['io.flow.internal.v0.models.order_revenue_timeline_data_point']();
|
|
32980
31649
|
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
31650
|
export const makeOrderSummary = () => factories['io.flow.internal.v0.models.order_summary']();
|
|
32983
31651
|
export const makeOrderTaxAndDutyInclusivitySetting = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting']();
|
|
32984
31652
|
export const makeOrderTaxAndDutyInclusivitySettingDeleted = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted']();
|
|
@@ -33098,6 +31766,7 @@ export const makePartnerTrackingSubscriptionUpserted = () => factories['io.flow.
|
|
|
33098
31766
|
export const makePassphrase = () => factories['io.flow.internal.v0.models.passphrase']();
|
|
33099
31767
|
export const makePassphraseForm = () => factories['io.flow.internal.v0.models.passphrase_form']();
|
|
33100
31768
|
export const makePassphraseSummary = () => factories['io.flow.internal.v0.models.passphrase_summary']();
|
|
31769
|
+
export const makePaymentIs = () => factories['io.flow.internal.v0.models.payment_is']();
|
|
33101
31770
|
export const makePaymentMethodDetail = () => factories['io.flow.internal.v0.models.payment_method_detail']();
|
|
33102
31771
|
export const makePaymentMethodOption = () => factories['io.flow.internal.v0.models.payment_method_option']();
|
|
33103
31772
|
export const makePaymentOrganizationSettings = () => factories['io.flow.internal.v0.models.payment_organization_settings']();
|
|
@@ -33199,13 +31868,11 @@ export const makeProductRestrictionStateInserted = () => factories['io.flow.inte
|
|
|
33199
31868
|
export const makeProductRestrictionStateUpdated = () => factories['io.flow.internal.v0.models.product_restriction_state_updated']();
|
|
33200
31869
|
export const makeProductReviewHistory = () => factories['io.flow.internal.v0.models.product_review_history']();
|
|
33201
31870
|
export const makeProductSellabilityInternal = () => factories['io.flow.internal.v0.models.product_sellability_internal']();
|
|
31871
|
+
export const makeProductSellabilityInternalForm = () => factories['io.flow.internal.v0.models.product_sellability_internal_form']();
|
|
31872
|
+
export const makeProductSellabilityInternalResult = () => factories['io.flow.internal.v0.models.product_sellability_internal_result']();
|
|
33202
31873
|
export const makeProductSellabilityResult = () => factories['io.flow.internal.v0.models.product_sellability_result']();
|
|
33203
31874
|
export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
|
|
33204
31875
|
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
31876
|
export const makeProofOfPosting = () => factories['io.flow.internal.v0.unions.proof_of_posting']();
|
|
33210
31877
|
export const makeProofOfPostingExternallyFulfilled = () => factories['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled']();
|
|
33211
31878
|
export const makeProofOfPostingFulfilled = () => factories['io.flow.internal.v0.models.proof_of_posting_fulfilled']();
|
|
@@ -33273,9 +31940,6 @@ export const makeRatecardStandardConfigurationUpserted = () => factories['io.flo
|
|
|
33273
31940
|
export const makeRatecardStandardSettings = () => factories['io.flow.internal.v0.models.ratecard_standard_settings']();
|
|
33274
31941
|
export const makeRatesChanged = () => factories['io.flow.internal.v0.models.rates_changed']();
|
|
33275
31942
|
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
31943
|
export const makeRecordReference = () => factories['io.flow.internal.v0.models.record_reference']();
|
|
33280
31944
|
export const makeRedirect = () => factories['io.flow.internal.v0.models.redirect']();
|
|
33281
31945
|
export const makeRedirectActionCompleted = () => factories['io.flow.internal.v0.models.redirect_action_completed']();
|
|
@@ -33342,6 +32006,7 @@ export const makeRequeueRequestForm = () => factories['io.flow.internal.v0.model
|
|
|
33342
32006
|
export const makeRescreenRestrictionsProducts = () => factories['io.flow.internal.v0.models.rescreen_restrictions_products']();
|
|
33343
32007
|
export const makeResponsibleParty = () => factories['io.flow.internal.v0.enums.responsible_party']();
|
|
33344
32008
|
export const makeRestrictionAction = () => factories['io.flow.internal.v0.enums.restriction_action']();
|
|
32009
|
+
export const makeRestrictionBlanketOrganizationExemption = () => factories['io.flow.internal.v0.models.restriction_blanket_organization_exemption']();
|
|
33345
32010
|
export const makeRestrictionCategory = () => factories['io.flow.internal.v0.models.restriction_category']();
|
|
33346
32011
|
export const makeRestrictionDecision = () => factories['io.flow.internal.v0.enums.restriction_decision']();
|
|
33347
32012
|
export const makeRestrictionFilter = () => factories['io.flow.internal.v0.models.restriction_filter']();
|
|
@@ -33365,6 +32030,7 @@ export const makeRestrictionProductDecisionForm = () => factories['io.flow.inter
|
|
|
33365
32030
|
export const makeRestrictionProductRequestForm = () => factories['io.flow.internal.v0.models.restriction_product_request_form']();
|
|
33366
32031
|
export const makeRestrictionProductSummary = () => factories['io.flow.internal.v0.models.restriction_product_summary']();
|
|
33367
32032
|
export const makeRestrictionRule = () => factories['io.flow.internal.v0.models.restriction_rule']();
|
|
32033
|
+
export const makeRestrictionRuleCommunityExemption = () => factories['io.flow.internal.v0.enums.restriction_rule_community_exemption']();
|
|
33368
32034
|
export const makeRestrictionRuleDecisionForm = () => factories['io.flow.internal.v0.models.restriction_rule_decision_form']();
|
|
33369
32035
|
export const makeRestrictionRuleDeleted = () => factories['io.flow.internal.v0.models.restriction_rule_deleted']();
|
|
33370
32036
|
export const makeRestrictionRuleEffect = () => factories['io.flow.internal.v0.models.restriction_rule_effect']();
|
|
@@ -33409,8 +32075,12 @@ export const makeRoutingAccount = () => factories['io.flow.internal.v0.models.ro
|
|
|
33409
32075
|
export const makeRoutingEntity = () => factories['io.flow.internal.v0.unions.routing_entity']();
|
|
33410
32076
|
export const makeRoutingMerchant = () => factories['io.flow.internal.v0.models.routing_merchant']();
|
|
33411
32077
|
export const makeRoutingProcessor = () => factories['io.flow.internal.v0.models.routing_processor']();
|
|
32078
|
+
export const makeSalesPaymentRecord = () => factories['io.flow.internal.v0.models.sales_payment_record']();
|
|
33412
32079
|
export const makeSandboxSetup = () => factories['io.flow.internal.v0.models.sandbox_setup']();
|
|
33413
32080
|
export const makeSandboxSetupForm = () => factories['io.flow.internal.v0.models.sandbox_setup_form']();
|
|
32081
|
+
export const makeSarveshItem = () => factories['io.flow.internal.v0.models.sarvesh_item']();
|
|
32082
|
+
export const makeSarveshItemForm = () => factories['io.flow.internal.v0.models.sarvesh_item_form']();
|
|
32083
|
+
export const makeSarveshItemType = () => factories['io.flow.internal.v0.enums.sarvesh_item_type']();
|
|
33414
32084
|
export const makeScheduledPayment = () => factories['io.flow.internal.v0.models.scheduled_payment']();
|
|
33415
32085
|
export const makeScreen = () => factories['io.flow.internal.v0.models.screen']();
|
|
33416
32086
|
export const makeScreenForm = () => factories['io.flow.internal.v0.models.screen_form']();
|
|
@@ -33431,30 +32101,16 @@ export const makeShipmentCostSummary = () => factories['io.flow.internal.v0.mode
|
|
|
33431
32101
|
export const makeShippingLane = () => factories['io.flow.internal.v0.models.shipping_lane']();
|
|
33432
32102
|
export const makeShippingMethodReference = () => factories['io.flow.internal.v0.models.shipping_method_reference']();
|
|
33433
32103
|
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
32104
|
export const makeShopifyCatalogPublication = () => factories['io.flow.internal.v0.models.shopify_catalog_publication']();
|
|
33438
32105
|
export const makeShopifyChannelOrganizationToken = () => factories['io.flow.internal.v0.models.shopify_channel_organization_token']();
|
|
33439
32106
|
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
32107
|
export const makeShopifyDispute = () => factories['io.flow.internal.v0.models.shopify_dispute']();
|
|
33444
32108
|
export const makeShopifyDisputeDeleted = () => factories['io.flow.internal.v0.models.shopify_dispute_deleted']();
|
|
33445
32109
|
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']();
|
|
32110
|
+
export const makeShopifyHs10Code = () => factories['io.flow.internal.v0.models.shopify_hs10_code']();
|
|
32111
|
+
export const makeShopifyHs10Codes = () => factories['io.flow.internal.v0.models.shopify_hs10_codes']();
|
|
32112
|
+
export const makeShopifyHs10CodesDeleted = () => factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted']();
|
|
32113
|
+
export const makeShopifyHs10CodesUpserted = () => factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted']();
|
|
33458
32114
|
export const makeShopifyIncotermConfiguration = () => factories['io.flow.internal.v0.enums.shopify_incoterm_configuration']();
|
|
33459
32115
|
export const makeShopifyIncotermIncludes = () => factories['io.flow.internal.v0.models.shopify_incoterm_includes']();
|
|
33460
32116
|
export const makeShopifyIncotermSummaryErrorData = () => factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data']();
|
|
@@ -33516,30 +32172,20 @@ export const makeShopifyMonitoringOrderMonitorType = () => factories['io.flow.in
|
|
|
33516
32172
|
export const makeShopifyMonitoringTrackingField = () => factories['io.flow.internal.v0.enums.shopify_monitoring_tracking_field']();
|
|
33517
32173
|
export const makeShopifyMonitoringTrackingNumber = () => factories['io.flow.internal.v0.models.shopify_monitoring_tracking_number']();
|
|
33518
32174
|
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
32175
|
export const makeShopifyOrderCancelForm = () => factories['io.flow.internal.v0.models.shopify_order_cancel_form']();
|
|
33521
32176
|
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
32177
|
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
32178
|
export const makeShopifyOrderFulfillmentsSnapshot = () => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot']();
|
|
33527
32179
|
export const makeShopifyOrderFulfillmentsSnapshotDeleted = () => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted']();
|
|
33528
32180
|
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
32181
|
export const makeShopifyOrderRiskAssessment = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment']();
|
|
33533
32182
|
export const makeShopifyOrderRiskAssessmentDeleted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted']();
|
|
33534
32183
|
export const makeShopifyOrderRiskAssessmentUpserted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted']();
|
|
33535
32184
|
export const makeShopifyOrderTransaction = () => factories['io.flow.internal.v0.models.shopify_order_transaction']();
|
|
33536
32185
|
export const makeShopifyOrderTransactionDeleted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_deleted']();
|
|
33537
32186
|
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
32187
|
export const makeShopifyPartnerWebhook = () => factories['io.flow.internal.v0.models.shopify_partner_webhook']();
|
|
33541
32188
|
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
32189
|
export const makeShopifyPlanType = () => factories['io.flow.internal.v0.enums.shopify_plan_type']();
|
|
33544
32190
|
export const makeShopifyProductBundle = () => factories['io.flow.internal.v0.models.shopify_product_bundle']();
|
|
33545
32191
|
export const makeShopifyProductBundleDeleted = () => factories['io.flow.internal.v0.models.shopify_product_bundle_deleted']();
|
|
@@ -33555,37 +32201,13 @@ export const makeShopifyProductUpdateDeleted = () => factories['io.flow.internal
|
|
|
33555
32201
|
export const makeShopifyProductUpdateUpserted = () => factories['io.flow.internal.v0.models.shopify_product_update_upserted']();
|
|
33556
32202
|
export const makeShopifyProductUpdateWebhookEvent = () => factories['io.flow.internal.v0.models.shopify_product_update_webhook_event']();
|
|
33557
32203
|
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']();
|
|
32204
|
+
export const makeShopifyReportFileDeleted = () => factories['io.flow.internal.v0.models.shopify_report_file_deleted']();
|
|
32205
|
+
export const makeShopifyReportFileUpserted = () => factories['io.flow.internal.v0.models.shopify_report_file_upserted']();
|
|
33580
32206
|
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
32207
|
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
32208
|
export const makeShopifyStoreDetail = () => factories['io.flow.internal.v0.models.shopify_store_detail']();
|
|
33585
32209
|
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']();
|
|
32210
|
+
export const makeShopperBreakdown = () => factories['io.flow.internal.v0.models.shopper_breakdown']();
|
|
33589
32211
|
export const makeShopperFees = () => factories['io.flow.internal.v0.models.shopper_fees']();
|
|
33590
32212
|
export const makeShopperFreight = () => factories['io.flow.internal.v0.models.shopper_freight']();
|
|
33591
32213
|
export const makeShopperLine = () => factories['io.flow.internal.v0.models.shopper_line']();
|
|
@@ -33618,11 +32240,8 @@ export const makeStandaloneAttachment = () => factories['io.flow.internal.v0.mod
|
|
|
33618
32240
|
export const makeStandaloneAttachmentDeleted = () => factories['io.flow.internal.v0.models.standalone_attachment_deleted']();
|
|
33619
32241
|
export const makeStandaloneAttachmentUpserted = () => factories['io.flow.internal.v0.models.standalone_attachment_upserted']();
|
|
33620
32242
|
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
32243
|
export const makeStatementTransferTransactionLocation = () => factories['io.flow.internal.v0.enums.statement_transfer_transaction_location']();
|
|
33623
32244
|
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
32245
|
export const makeStringFeatureDefaultValue = () => factories['io.flow.internal.v0.models.string_feature_default_value']();
|
|
33627
32246
|
export const makeStringFeatureRule = () => factories['io.flow.internal.v0.models.string_feature_rule']();
|
|
33628
32247
|
export const makeStringFeatureRuleForm = () => factories['io.flow.internal.v0.models.string_feature_rule_form']();
|
|
@@ -33697,6 +32316,7 @@ export const makeTaxTransactionDeleted = () => factories['io.flow.internal.v0.mo
|
|
|
33697
32316
|
export const makeTaxTransactionType = () => factories['io.flow.internal.v0.enums.tax_transaction_type']();
|
|
33698
32317
|
export const makeTaxTransactionUpserted = () => factories['io.flow.internal.v0.models.tax_transaction_upserted']();
|
|
33699
32318
|
export const makeTaxonomyCategory = () => factories['io.flow.internal.v0.models.taxonomy_category']();
|
|
32319
|
+
export const makeTaxonomyCategoryClassificationAlignment = () => factories['io.flow.internal.v0.enums.taxonomy_category_classification_alignment']();
|
|
33700
32320
|
export const makeTaxonomyCategoryHs6Ref = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref']();
|
|
33701
32321
|
export const makeTaxonomyCategoryHs6RefDeleted = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted']();
|
|
33702
32322
|
export const makeTaxonomyCategoryHs6RefUpserted = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted']();
|
|
@@ -33791,11 +32411,8 @@ export const makeUserStatusForm = () => factories['io.flow.internal.v0.models.us
|
|
|
33791
32411
|
export const makeUserStatusRule = () => factories['io.flow.internal.v0.models.user_status_rule']();
|
|
33792
32412
|
export const makeUserStatusRuleForm = () => factories['io.flow.internal.v0.models.user_status_rule_form']();
|
|
33793
32413
|
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
32414
|
export const makeValidatedAddress = () => factories['io.flow.internal.v0.models.validated_address']();
|
|
33796
32415
|
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
32416
|
export const makeViesResult = () => factories['io.flow.internal.v0.models.vies_result']();
|
|
33800
32417
|
export const makeVirtualCardTransaction = () => factories['io.flow.internal.v0.models.virtual_card_transaction']();
|
|
33801
32418
|
export const makeWasteElectricalAndElectronicEquipmentComplianceData = () => factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data']();
|