@flowio/api-internal-factories 0.0.140 → 0.0.144
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 +698 -398
- package/dist/esm/api-internal.js +596 -317
- package/dist/types/api-internal.d.ts +65 -44
- package/package.json +2 -3
- package/src/api-internal.ts +696 -353
package/src/api-internal.ts
CHANGED
|
@@ -730,6 +730,14 @@ const factories = {
|
|
|
730
730
|
iban: factories.string(),
|
|
731
731
|
}),
|
|
732
732
|
|
|
733
|
+
'io.flow.billing.bank.account.v0.models.bank_account_info_kor': (): io.flow.billing.bank.account.v0.models.BankAccountInfoKor => ({
|
|
734
|
+
discriminator: 'kor',
|
|
735
|
+
name: factories.string(),
|
|
736
|
+
bank_account_number: factories.string(),
|
|
737
|
+
bank_routing_number: factories.string(),
|
|
738
|
+
bank_name: factories.string(),
|
|
739
|
+
}),
|
|
740
|
+
|
|
733
741
|
'io.flow.billing.bank.account.v0.models.bank_account_info_usa': (): io.flow.billing.bank.account.v0.models.BankAccountInfoUsa => ({
|
|
734
742
|
discriminator: 'usa',
|
|
735
743
|
routing_number: factories.string(),
|
|
@@ -743,6 +751,7 @@ const factories = {
|
|
|
743
751
|
() => factories['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'](),
|
|
744
752
|
() => factories['io.flow.billing.bank.account.v0.models.bank_account_info_fra'](),
|
|
745
753
|
() => factories['io.flow.billing.bank.account.v0.models.bank_account_info_ita'](),
|
|
754
|
+
() => factories['io.flow.billing.bank.account.v0.models.bank_account_info_kor'](),
|
|
746
755
|
]);
|
|
747
756
|
|
|
748
757
|
return f();
|
|
@@ -763,6 +772,7 @@ const factories = {
|
|
|
763
772
|
'transfer',
|
|
764
773
|
'negative_balance_guarantee',
|
|
765
774
|
'sp',
|
|
775
|
+
'rev_share',
|
|
766
776
|
]),
|
|
767
777
|
|
|
768
778
|
'io.flow.billing.v0.enums.payout_attachment_type': (): io.flow.billing.v0.enums.PayoutAttachmentType => faker.helpers.arrayElement(['transactions']),
|
|
@@ -794,6 +804,7 @@ const factories = {
|
|
|
794
804
|
'wyol_shipment_above_de_min',
|
|
795
805
|
'full_refund_without_shipment',
|
|
796
806
|
'unfulfilled_order_above_de_min',
|
|
807
|
+
'order_cancellation_without_capture',
|
|
797
808
|
]),
|
|
798
809
|
|
|
799
810
|
'io.flow.billing.v0.enums.transaction_source': (): io.flow.billing.v0.enums.TransactionSource => faker.helpers.arrayElement([
|
|
@@ -831,6 +842,8 @@ const factories = {
|
|
|
831
842
|
'merchant_fee',
|
|
832
843
|
'b2b_tax',
|
|
833
844
|
'b2b_tax_refund',
|
|
845
|
+
'b2b_fee_mor_tax',
|
|
846
|
+
'b2b_fee_shipping_tax',
|
|
834
847
|
]),
|
|
835
848
|
|
|
836
849
|
'io.flow.billing.v0.enums.trueup_source': (): io.flow.billing.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']),
|
|
@@ -1164,6 +1177,22 @@ const factories = {
|
|
|
1164
1177
|
description: factories.string(),
|
|
1165
1178
|
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
1166
1179
|
url: factories.string(),
|
|
1180
|
+
recoup: factories.boolean(),
|
|
1181
|
+
}),
|
|
1182
|
+
|
|
1183
|
+
'io.flow.billing.v0.models.transaction_metadata_merchant_fee': (): io.flow.billing.v0.models.TransactionMetadataMerchantFee => ({
|
|
1184
|
+
discriminator: 'merchant_fee',
|
|
1185
|
+
|
|
1186
|
+
items: arrayOf(
|
|
1187
|
+
() => factories['io.flow.billing.v0.models.transaction_metadata_merchant_fee_item'](),
|
|
1188
|
+
),
|
|
1189
|
+
}),
|
|
1190
|
+
|
|
1191
|
+
'io.flow.billing.v0.models.transaction_metadata_merchant_fee_item': (): io.flow.billing.v0.models.TransactionMetadataMerchantFeeItem => ({
|
|
1192
|
+
type: factories.string(),
|
|
1193
|
+
amount: factories.decimal(),
|
|
1194
|
+
local_amount: factories.decimal(),
|
|
1195
|
+
description: factories.string(),
|
|
1167
1196
|
}),
|
|
1168
1197
|
|
|
1169
1198
|
'io.flow.billing.v0.models.transaction_metadata_original_transaction': (): io.flow.billing.v0.models.TransactionMetadataOriginalTransaction => ({
|
|
@@ -1349,6 +1378,7 @@ const factories = {
|
|
|
1349
1378
|
() => factories['io.flow.billing.v0.models.transaction_metadata_failed_payout'](),
|
|
1350
1379
|
() => factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](),
|
|
1351
1380
|
() => factories['io.flow.billing.v0.models.transaction_metadata_tax_duty'](),
|
|
1381
|
+
() => factories['io.flow.billing.v0.models.transaction_metadata_merchant_fee'](),
|
|
1352
1382
|
]);
|
|
1353
1383
|
|
|
1354
1384
|
return f();
|
|
@@ -2611,6 +2641,7 @@ const factories = {
|
|
|
2611
2641
|
'io.flow.common.v0.models.line_item_form': (): io.flow.common.v0.models.LineItemForm => ({
|
|
2612
2642
|
number: factories.string(),
|
|
2613
2643
|
quantity: factories.long(),
|
|
2644
|
+
line_item_identifier: factories.string(),
|
|
2614
2645
|
shipment_estimate: factories['io.flow.common.v0.models.datetime_range'](),
|
|
2615
2646
|
price: factories['io.flow.common.v0.models.money'](),
|
|
2616
2647
|
attributes: objectOf(() => factories.string()),
|
|
@@ -2944,6 +2975,7 @@ const factories = {
|
|
|
2944
2975
|
b2b_invoice_type: factories['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'](),
|
|
2945
2976
|
center: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'](),
|
|
2946
2977
|
order: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'](),
|
|
2978
|
+
voids_b2b_invoice: factories.boolean(),
|
|
2947
2979
|
}),
|
|
2948
2980
|
|
|
2949
2981
|
'io.flow.consumer.invoice.v0.models.b2b_invoice': (): io.flow.consumer.invoice.v0.models.B2BInvoice => ({
|
|
@@ -3400,6 +3432,7 @@ const factories = {
|
|
|
3400
3432
|
'io.flow.experience.v0.enums.organization_payment_method_tag': (): io.flow.experience.v0.enums.OrganizationPaymentMethodTag => faker.helpers.arrayElement(['deny']),
|
|
3401
3433
|
'io.flow.experience.v0.enums.payment_method_rule_content_key': (): io.flow.experience.v0.enums.PaymentMethodRuleContentKey => faker.helpers.arrayElement(['description']),
|
|
3402
3434
|
'io.flow.experience.v0.enums.price_facet_boundary': (): io.flow.experience.v0.enums.PriceFacetBoundary => faker.helpers.arrayElement(['min', 'max']),
|
|
3435
|
+
'io.flow.experience.v0.enums.pricing_type': (): io.flow.experience.v0.enums.PricingType => faker.helpers.arrayElement(['inclusive_pricing']),
|
|
3403
3436
|
'io.flow.experience.v0.enums.promotion_trigger_type': (): io.flow.experience.v0.enums.PromotionTriggerType => faker.helpers.arrayElement(['automatic', 'order_subtotal']),
|
|
3404
3437
|
|
|
3405
3438
|
'io.flow.experience.v0.models.address_configuration': (): io.flow.experience.v0.models.AddressConfiguration => ({
|
|
@@ -4085,6 +4118,7 @@ const factories = {
|
|
|
4085
4118
|
payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
4086
4119
|
edits: arrayOf(() => factories['io.flow.experience.v0.models.edit_summary']()),
|
|
4087
4120
|
rates: arrayOf(() => factories['io.flow.experience.v0.models.order_rate']()),
|
|
4121
|
+
pricing_type: factories['io.flow.experience.v0.enums.pricing_type'](),
|
|
4088
4122
|
}),
|
|
4089
4123
|
|
|
4090
4124
|
'io.flow.experience.v0.models.order_address': (): io.flow.experience.v0.models.OrderAddress => ({
|
|
@@ -6858,6 +6892,11 @@ const factories = {
|
|
|
6858
6892
|
company_name_match_result_reason: factories.string(),
|
|
6859
6893
|
}),
|
|
6860
6894
|
|
|
6895
|
+
'io.flow.harmonization.v0.models.harmonization_tariff_code': (): io.flow.harmonization.v0.models.HarmonizationTariffCode => ({
|
|
6896
|
+
tariff_code: factories.string(),
|
|
6897
|
+
destination: factories.string(),
|
|
6898
|
+
}),
|
|
6899
|
+
|
|
6861
6900
|
'io.flow.harmonization.v0.models.harmonized_category_reference': (): io.flow.harmonization.v0.models.HarmonizedCategoryReference => ({
|
|
6862
6901
|
id: factories.string(),
|
|
6863
6902
|
}),
|
|
@@ -6957,6 +6996,16 @@ const factories = {
|
|
|
6957
6996
|
tax: factories['io.flow.price.v0.models.tax'](),
|
|
6958
6997
|
}),
|
|
6959
6998
|
|
|
6999
|
+
'io.flow.harmonization.v0.models.tariff_codes': (): io.flow.harmonization.v0.models.TariffCodes => ({
|
|
7000
|
+
item_number: factories.string(),
|
|
7001
|
+
product_id: factories.string(),
|
|
7002
|
+
hs6_code: factories.string(),
|
|
7003
|
+
|
|
7004
|
+
codes: arrayOf(
|
|
7005
|
+
() => factories['io.flow.harmonization.v0.models.harmonization_tariff_code'](),
|
|
7006
|
+
),
|
|
7007
|
+
}),
|
|
7008
|
+
|
|
6960
7009
|
'io.flow.harmonization.v0.models.tax_registration': (): io.flow.harmonization.v0.models.TaxRegistration => ({
|
|
6961
7010
|
id: factories.string(),
|
|
6962
7011
|
key: factories.string(),
|
|
@@ -6974,14 +7023,13 @@ const factories = {
|
|
|
6974
7023
|
company_name: factories.string(),
|
|
6975
7024
|
}),
|
|
6976
7025
|
|
|
7026
|
+
'io.flow.internal.v0.enums.account_currency_filter': (): io.flow.internal.v0.enums.AccountCurrencyFilter => faker.helpers.arrayElement(['GBP', 'CAD', 'USD']),
|
|
6977
7027
|
'io.flow.internal.v0.enums.account_payment_hold_reason': (): io.flow.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'frozen', 'invalid_bank_account']),
|
|
6978
7028
|
'io.flow.internal.v0.enums.account_setting_liabilities_method': (): io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod => faker.helpers.arrayElement(['withholding', 'transaction']),
|
|
6979
7029
|
'io.flow.internal.v0.enums.account_type': (): io.flow.internal.v0.enums.AccountType => faker.helpers.arrayElement(['channel', 'organization']),
|
|
6980
7030
|
'io.flow.internal.v0.enums.adjustment_transaction_type': (): io.flow.internal.v0.enums.AdjustmentTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal']),
|
|
6981
7031
|
'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']),
|
|
6982
|
-
'io.flow.internal.v0.enums.
|
|
6983
|
-
'io.flow.internal.v0.enums.anirban_item_type': (): io.flow.internal.v0.enums.AnirbanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
6984
|
-
'io.flow.internal.v0.enums.ansh_item_type': (): io.flow.internal.v0.enums.AnshItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7032
|
+
'io.flow.internal.v0.enums.amrutha_item_type': (): io.flow.internal.v0.enums.AmruthaItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
6985
7033
|
'io.flow.internal.v0.enums.any_dangerous_goods': (): io.flow.internal.v0.enums.AnyDangerousGoods => faker.helpers.arrayElement(['yes', 'no', 'i_dont_know']),
|
|
6986
7034
|
'io.flow.internal.v0.enums.api_call_reference_id': (): io.flow.internal.v0.enums.ApiCallReferenceId => faker.helpers.arrayElement(['duty_rates_data_event', 'integration_test', 'unit_test']),
|
|
6987
7035
|
'io.flow.internal.v0.enums.applicable_preferential_rate': (): io.flow.internal.v0.enums.ApplicablePreferentialRate => faker.helpers.arrayElement(['baby', 'children']),
|
|
@@ -7003,6 +7051,8 @@ const factories = {
|
|
|
7003
7051
|
'prr-74e1320efb7741cf9ace400b69800f9b',
|
|
7004
7052
|
]),
|
|
7005
7053
|
|
|
7054
|
+
'io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type': (): io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType => faker.helpers.arrayElement(['capture', 'order']),
|
|
7055
|
+
'io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type': (): io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType => faker.helpers.arrayElement(['label', 'trueup']),
|
|
7006
7056
|
'io.flow.internal.v0.enums.b2b_tax_ledger_document_type': (): io.flow.internal.v0.enums.B2BTaxLedgerDocumentType => faker.helpers.arrayElement(['b2b_invoice', 'b2b_credit_memo']),
|
|
7007
7057
|
'io.flow.internal.v0.enums.b2b_tax_rate_type': (): io.flow.internal.v0.enums.B2BTaxRateType => faker.helpers.arrayElement(['basic', 'preferential', 'exempt']),
|
|
7008
7058
|
'io.flow.internal.v0.enums.bank_account_status': (): io.flow.internal.v0.enums.BankAccountStatus => faker.helpers.arrayElement(['on_hold', 'not_on_hold']),
|
|
@@ -7286,8 +7336,11 @@ const factories = {
|
|
|
7286
7336
|
'merchant_refund',
|
|
7287
7337
|
'b2b_tax',
|
|
7288
7338
|
'b2b_tax_refund',
|
|
7339
|
+
'b2b_fee_mor_tax',
|
|
7340
|
+
'b2b_fee_shipping_tax',
|
|
7289
7341
|
]),
|
|
7290
7342
|
|
|
7343
|
+
'io.flow.internal.v0.enums.bojana_item_type': (): io.flow.internal.v0.enums.BojanaItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7291
7344
|
'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']),
|
|
7292
7345
|
'io.flow.internal.v0.enums.carrier_charge_transaction_type': (): io.flow.internal.v0.enums.CarrierChargeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']),
|
|
7293
7346
|
'io.flow.internal.v0.enums.carrier_charge_type': (): io.flow.internal.v0.enums.CarrierChargeType => faker.helpers.arrayElement(['label', 'tax', 'other']),
|
|
@@ -7378,11 +7431,13 @@ const factories = {
|
|
|
7378
7431
|
'io.flow.internal.v0.enums.checkout_prompt_behavior': (): io.flow.internal.v0.enums.CheckoutPromptBehavior => faker.helpers.arrayElement(['always', 'incomplete']),
|
|
7379
7432
|
'io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior': (): io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior => faker.helpers.arrayElement(['always', 'multiple']),
|
|
7380
7433
|
'io.flow.internal.v0.enums.checkout_url_type': (): io.flow.internal.v0.enums.CheckoutUrlType => faker.helpers.arrayElement(['continue_shopping', 'confirmation', 'invalid_checkout']),
|
|
7434
|
+
'io.flow.internal.v0.enums.chenglin_item_type': (): io.flow.internal.v0.enums.ChenglinItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7381
7435
|
'io.flow.internal.v0.enums.classification_decision': (): io.flow.internal.v0.enums.ClassificationDecision => faker.helpers.arrayElement(['Accept', 'Reject']),
|
|
7382
7436
|
'io.flow.internal.v0.enums.classification_error_code': (): io.flow.internal.v0.enums.ClassificationErrorCode => faker.helpers.arrayElement(['generic_error']),
|
|
7383
|
-
'io.flow.internal.v0.enums.classification_failure_reason': (): io.flow.internal.v0.enums.ClassificationFailureReason => faker.helpers.arrayElement(['low_confidence', 'timeout']),
|
|
7437
|
+
'io.flow.internal.v0.enums.classification_failure_reason': (): io.flow.internal.v0.enums.ClassificationFailureReason => faker.helpers.arrayElement(['low_confidence', 'timeout', 'missing_hs6_code', 'invalid_price']),
|
|
7384
7438
|
'io.flow.internal.v0.enums.classification_platform': (): io.flow.internal.v0.enums.ClassificationPlatform => faker.helpers.arrayElement(['GlobalE', 'Flow', 'FlowOnboarding', 'Borderfree']),
|
|
7385
7439
|
'io.flow.internal.v0.enums.classification_scope': (): io.flow.internal.v0.enums.ClassificationScope => faker.helpers.arrayElement(['Item', 'Product']),
|
|
7440
|
+
'io.flow.internal.v0.enums.classification_source': (): io.flow.internal.v0.enums.ClassificationSource => faker.helpers.arrayElement(['sellability']),
|
|
7386
7441
|
'io.flow.internal.v0.enums.classification_type': (): io.flow.internal.v0.enums.ClassificationType => faker.helpers.arrayElement(['None', 'Manual', 'ML', 'System']),
|
|
7387
7442
|
'io.flow.internal.v0.enums.clothing_age_classification': (): io.flow.internal.v0.enums.ClothingAgeClassification => faker.helpers.arrayElement(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']),
|
|
7388
7443
|
'io.flow.internal.v0.enums.commercial_invoice_version': (): io.flow.internal.v0.enums.CommercialInvoiceVersion => faker.helpers.arrayElement(['v2_2_1']),
|
|
@@ -7514,8 +7569,6 @@ const factories = {
|
|
|
7514
7569
|
'calculator_organization_settings_deleted',
|
|
7515
7570
|
'carrier_account_upserted_v2',
|
|
7516
7571
|
'carrier_account_deleted',
|
|
7517
|
-
'label_generation_settings_upserted',
|
|
7518
|
-
'label_generation_settings_deleted',
|
|
7519
7572
|
'catalog_import_request',
|
|
7520
7573
|
'exclusion_rule_upserted',
|
|
7521
7574
|
'exclusion_rule_deleted',
|
|
@@ -7585,6 +7638,8 @@ const factories = {
|
|
|
7585
7638
|
'carrier_charge_deleted',
|
|
7586
7639
|
'bank_payment_order_upserted',
|
|
7587
7640
|
'bank_payment_order_deleted',
|
|
7641
|
+
'shipping_cost_upserted',
|
|
7642
|
+
'shipping_cost_deleted',
|
|
7588
7643
|
'fraud_review_upserted',
|
|
7589
7644
|
'fraud_review_deleted',
|
|
7590
7645
|
'fraud_pending_review_upserted',
|
|
@@ -7698,11 +7753,17 @@ const factories = {
|
|
|
7698
7753
|
'paypal_refund_upserted',
|
|
7699
7754
|
'paypal_dispute_upserted',
|
|
7700
7755
|
'paypal_dispute_deleted',
|
|
7756
|
+
'preonboarding_sellability_result_inserted',
|
|
7757
|
+
'preonboarding_sellability_result_updated',
|
|
7758
|
+
'preonboarding_sellability_result_deleted',
|
|
7701
7759
|
'product_restriction_rule_decision_upserted',
|
|
7702
7760
|
'product_restriction_rule_decision_deleted',
|
|
7703
7761
|
'product_restriction_state_inserted',
|
|
7704
7762
|
'product_restriction_state_updated',
|
|
7705
7763
|
'product_restriction_state_deleted',
|
|
7764
|
+
'product_sellability_result_inserted',
|
|
7765
|
+
'product_sellability_result_updated',
|
|
7766
|
+
'product_sellability_result_deleted',
|
|
7706
7767
|
'order_rates_published_v3',
|
|
7707
7768
|
'ratecard_dimension_estimate_upserted',
|
|
7708
7769
|
'ratecard_dimension_estimate_deleted',
|
|
@@ -7762,6 +7823,8 @@ const factories = {
|
|
|
7762
7823
|
'shopify_order_risk_assessment_deleted',
|
|
7763
7824
|
'shopify_order_transaction_upserted',
|
|
7764
7825
|
'shopify_order_transaction_deleted',
|
|
7826
|
+
'shopify_test_order_upserted',
|
|
7827
|
+
'shopify_test_order_deleted',
|
|
7765
7828
|
'shopify_product_create_upserted',
|
|
7766
7829
|
'shopify_product_create_deleted',
|
|
7767
7830
|
'shopify_product_update_upserted',
|
|
@@ -7798,22 +7861,10 @@ const factories = {
|
|
|
7798
7861
|
'stripe_connect_report_record_deleted',
|
|
7799
7862
|
'liability_remittance_plan_upserted',
|
|
7800
7863
|
'liability_remittance_plan_deleted',
|
|
7801
|
-
'anirban_item_upserted',
|
|
7802
|
-
'anirban_item_deleted',
|
|
7803
|
-
'sarvesh_item_upserted',
|
|
7804
|
-
'sarvesh_item_deleted',
|
|
7805
|
-
'hosein_item_upserted',
|
|
7806
|
-
'hosein_item_deleted',
|
|
7807
|
-
'niall_item_upserted',
|
|
7808
|
-
'niall_item_deleted',
|
|
7809
|
-
'rohan_item_upserted',
|
|
7810
|
-
'rohan_item_deleted',
|
|
7811
|
-
'aldo_item_upserted',
|
|
7812
|
-
'aldo_item_deleted',
|
|
7813
|
-
'ansh_item_upserted',
|
|
7814
|
-
'ansh_item_deleted',
|
|
7815
7864
|
'gabriel_item_upserted',
|
|
7816
7865
|
'gabriel_item_deleted',
|
|
7866
|
+
'chenglin_item_upserted',
|
|
7867
|
+
'chenglin_item_deleted',
|
|
7817
7868
|
'tracking_processing_error_upserted',
|
|
7818
7869
|
'tracking_processing_error_deleted',
|
|
7819
7870
|
'tracking_label_event_upserted_v2',
|
|
@@ -7867,7 +7918,6 @@ const factories = {
|
|
|
7867
7918
|
]),
|
|
7868
7919
|
|
|
7869
7920
|
'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']),
|
|
7870
|
-
'io.flow.internal.v0.enums.hosein_item_type': (): io.flow.internal.v0.enums.HoseinItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7871
7921
|
'io.flow.internal.v0.enums.hs6_code_source': (): io.flow.internal.v0.enums.Hs6CodeSource => faker.helpers.arrayElement(['sellability', 'classification', 'human']),
|
|
7872
7922
|
'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
|
|
7873
7923
|
'io.flow.internal.v0.enums.internal_payment_entity_type': (): io.flow.internal.v0.enums.InternalPaymentEntityType => faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'dispute']),
|
|
@@ -7911,10 +7961,15 @@ const factories = {
|
|
|
7911
7961
|
'carrier',
|
|
7912
7962
|
]),
|
|
7913
7963
|
|
|
7914
|
-
'io.flow.internal.v0.enums.label_request_result_organization_type': (): io.flow.internal.v0.enums.LabelRequestResultOrganizationType => faker.helpers.arrayElement(['all', '
|
|
7964
|
+
'io.flow.internal.v0.enums.label_request_result_organization_type': (): io.flow.internal.v0.enums.LabelRequestResultOrganizationType => faker.helpers.arrayElement(['all', 'cafe24_production', 'shopify_production', 'sandbox']),
|
|
7915
7965
|
'io.flow.internal.v0.enums.label_request_result_state': (): io.flow.internal.v0.enums.LabelRequestResultState => faker.helpers.arrayElement(['success', 'failure']),
|
|
7916
7966
|
'io.flow.internal.v0.enums.label_transaction_type': (): io.flow.internal.v0.enums.LabelTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']),
|
|
7917
|
-
|
|
7967
|
+
|
|
7968
|
+
'io.flow.internal.v0.enums.ledger_report_type': (): io.flow.internal.v0.enums.LedgerReportType => faker.helpers.arrayElement([
|
|
7969
|
+
'periodic_mor_jurisdiction_report',
|
|
7970
|
+
'periodic_mor_jurisdiction_sandbox_report',
|
|
7971
|
+
]),
|
|
7972
|
+
|
|
7918
7973
|
'io.flow.internal.v0.enums.ledger_report_url_type': (): io.flow.internal.v0.enums.LedgerReportUrlType => faker.helpers.arrayElement(['sharepoint', 's3']),
|
|
7919
7974
|
|
|
7920
7975
|
'io.flow.internal.v0.enums.liability_type': (): io.flow.internal.v0.enums.LiabilityType => faker.helpers.arrayElement(
|
|
@@ -7942,6 +7997,7 @@ const factories = {
|
|
|
7942
7997
|
'negative_balance_guarantee',
|
|
7943
7998
|
'bank_payment_failure',
|
|
7944
7999
|
'non_fraud_chargeback',
|
|
8000
|
+
'v1_migration_neg_balance_settlement',
|
|
7945
8001
|
]),
|
|
7946
8002
|
|
|
7947
8003
|
'io.flow.internal.v0.enums.merchant_fee_transaction_type': (): io.flow.internal.v0.enums.MerchantFeeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'fee']),
|
|
@@ -7969,8 +8025,6 @@ const factories = {
|
|
|
7969
8025
|
'flash_title',
|
|
7970
8026
|
]),
|
|
7971
8027
|
|
|
7972
|
-
'io.flow.internal.v0.enums.niall_item_type': (): io.flow.internal.v0.enums.NiallItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7973
|
-
|
|
7974
8028
|
'io.flow.internal.v0.enums.no_liability_reason_code': (): io.flow.internal.v0.enums.NoLiabilityReasonCode => faker.helpers.arrayElement([
|
|
7975
8029
|
'zero_basis',
|
|
7976
8030
|
'zero_rate_on_goods',
|
|
@@ -8054,6 +8108,7 @@ const factories = {
|
|
|
8054
8108
|
'io.flow.internal.v0.enums.organization_capability': (): io.flow.internal.v0.enums.OrganizationCapability => faker.helpers.arrayElement(['organization', 'flow', 'dynamic']),
|
|
8055
8109
|
'io.flow.internal.v0.enums.organization_metric_type': (): io.flow.internal.v0.enums.OrganizationMetricType => faker.helpers.arrayElement(['organization_restriction_status']),
|
|
8056
8110
|
'io.flow.internal.v0.enums.organization_payment_status': (): io.flow.internal.v0.enums.OrganizationPaymentStatus => faker.helpers.arrayElement(['active', 'archived']),
|
|
8111
|
+
'io.flow.internal.v0.enums.organization_promotion_status': (): io.flow.internal.v0.enums.OrganizationPromotionStatus => faker.helpers.arrayElement(['in_progress', 'completed', 'failed']),
|
|
8057
8112
|
'io.flow.internal.v0.enums.organization_restriction_approval_status': (): io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus => faker.helpers.arrayElement(['ready', 'not-ready']),
|
|
8058
8113
|
'io.flow.internal.v0.enums.organization_restriction_note_type': (): io.flow.internal.v0.enums.OrganizationRestrictionNoteType => faker.helpers.arrayElement(['internal', 'rejection_reason', 'additional_rejection_info']),
|
|
8059
8114
|
'io.flow.internal.v0.enums.organization_restriction_review_type': (): io.flow.internal.v0.enums.OrganizationRestrictionReviewType => faker.helpers.arrayElement(['all_pending', 'pending_verification']),
|
|
@@ -8080,7 +8135,6 @@ const factories = {
|
|
|
8080
8135
|
'io.flow.internal.v0.enums.payment_summary_type': (): io.flow.internal.v0.enums.PaymentSummaryType => faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'reversal', 'credit']),
|
|
8081
8136
|
'io.flow.internal.v0.enums.payment_term': (): io.flow.internal.v0.enums.PaymentTerm => faker.helpers.arrayElement(['net7', 'net15', 'net30']),
|
|
8082
8137
|
'io.flow.internal.v0.enums.pending_record_type': (): io.flow.internal.v0.enums.PendingRecordType => faker.helpers.arrayElement(['verification', 'classification', 'restriction']),
|
|
8083
|
-
'io.flow.internal.v0.enums.prateek_item_type': (): io.flow.internal.v0.enums.PrateekItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8084
8138
|
'io.flow.internal.v0.enums.preferred_billing_schedule': (): io.flow.internal.v0.enums.PreferredBillingSchedule => faker.helpers.arrayElement(['monthly', 'bi-monthly']),
|
|
8085
8139
|
'io.flow.internal.v0.enums.preonboarding_classification_decision': (): io.flow.internal.v0.enums.PreonboardingClassificationDecision => faker.helpers.arrayElement(['Accept', 'Reject']),
|
|
8086
8140
|
'io.flow.internal.v0.enums.preonboarding_classification_platform': (): io.flow.internal.v0.enums.PreonboardingClassificationPlatform => faker.helpers.arrayElement(['FlowOnboarding']),
|
|
@@ -8181,6 +8235,8 @@ const factories = {
|
|
|
8181
8235
|
'shopify-sandbox',
|
|
8182
8236
|
'enterprise-sandbox',
|
|
8183
8237
|
'enterprise-qa',
|
|
8238
|
+
'cafe24',
|
|
8239
|
+
'cafe24-sandbox',
|
|
8184
8240
|
]),
|
|
8185
8241
|
|
|
8186
8242
|
'io.flow.internal.v0.enums.restriction_organization_source': (): io.flow.internal.v0.enums.RestrictionOrganizationSource => faker.helpers.arrayElement(['smb', 'enterprise']),
|
|
@@ -8192,8 +8248,6 @@ const factories = {
|
|
|
8192
8248
|
'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
|
|
8193
8249
|
'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
|
|
8194
8250
|
'io.flow.internal.v0.enums.risk_evaluation': (): io.flow.internal.v0.enums.RiskEvaluation => faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']),
|
|
8195
|
-
'io.flow.internal.v0.enums.rohan_item_type': (): io.flow.internal.v0.enums.RohanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8196
|
-
'io.flow.internal.v0.enums.sarvesh_item_type': (): io.flow.internal.v0.enums.SarveshItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8197
8251
|
|
|
8198
8252
|
'io.flow.internal.v0.enums.sellability_check_status': (): io.flow.internal.v0.enums.SellabilityCheckStatus => faker.helpers.arrayElement([
|
|
8199
8253
|
'more_restrictive',
|
|
@@ -8203,7 +8257,78 @@ const factories = {
|
|
|
8203
8257
|
'rules_differ',
|
|
8204
8258
|
]),
|
|
8205
8259
|
|
|
8260
|
+
'io.flow.internal.v0.enums.sellability_internal_match_type': (): io.flow.internal.v0.enums.SellabilityInternalMatchType => faker.helpers.arrayElement(['positive_keyword', 'auto_restricted']),
|
|
8206
8261
|
'io.flow.internal.v0.enums.sellability_status': (): io.flow.internal.v0.enums.SellabilityStatus => faker.helpers.arrayElement(['complete', 'incomplete']),
|
|
8262
|
+
|
|
8263
|
+
'io.flow.internal.v0.enums.shopify_callback_error_code': (): io.flow.internal.v0.enums.ShopifyCallbackErrorCode => faker.helpers.arrayElement([
|
|
8264
|
+
'UNKNOWN',
|
|
8265
|
+
'SYSTEM_ERROR',
|
|
8266
|
+
'THIRD_PARTY_SYSTEM_ERROR',
|
|
8267
|
+
'TIMEOUT',
|
|
8268
|
+
'VERSION_MISMATCH',
|
|
8269
|
+
'INVALID_AUTHENTICATION',
|
|
8270
|
+
'RATE_LIMIT_EXCEEDED',
|
|
8271
|
+
'TEMPORARILY_UNAVAILABLE',
|
|
8272
|
+
'FAILED_VALIDATION',
|
|
8273
|
+
'INVALID_FORMAT',
|
|
8274
|
+
'MISSING_VALUE',
|
|
8275
|
+
'OUT_OF_RANGE',
|
|
8276
|
+
'OVER_LIMIT',
|
|
8277
|
+
'UNDER_LIMIT',
|
|
8278
|
+
'UNAUTHORIZED',
|
|
8279
|
+
'NOT_FOUND',
|
|
8280
|
+
'EXPIRED',
|
|
8281
|
+
]),
|
|
8282
|
+
|
|
8283
|
+
'io.flow.internal.v0.enums.shopify_charge_code': (): io.flow.internal.v0.enums.ShopifyChargeCode => faker.helpers.arrayElement([
|
|
8284
|
+
'transport_cost',
|
|
8285
|
+
'above_threshold',
|
|
8286
|
+
'additional_handling',
|
|
8287
|
+
'customs_additional_fees',
|
|
8288
|
+
'customs_clearance',
|
|
8289
|
+
'customs_duties',
|
|
8290
|
+
'customs_regulatory_fee',
|
|
8291
|
+
'customs_duty',
|
|
8292
|
+
'customs_taxes',
|
|
8293
|
+
'dangerous_goods',
|
|
8294
|
+
'delivery_area_surcharge',
|
|
8295
|
+
'duties_fx_surcharge',
|
|
8296
|
+
'discount',
|
|
8297
|
+
'eei_filing',
|
|
8298
|
+
'elevated_risk_area_surcharge',
|
|
8299
|
+
'emergency_situation_surcharge',
|
|
8300
|
+
'environmental_surcharge',
|
|
8301
|
+
'fuel_surcharge',
|
|
8302
|
+
'oversize_piece_surcharge',
|
|
8303
|
+
'packaging',
|
|
8304
|
+
'pickup_area_surcharge',
|
|
8305
|
+
'peak_surcharge',
|
|
8306
|
+
'remote_delivery_area_surcharge',
|
|
8307
|
+
'residential_surcharge',
|
|
8308
|
+
'security_surcharge',
|
|
8309
|
+
'shipper_intercept',
|
|
8310
|
+
'address_correction',
|
|
8311
|
+
'undeliverable',
|
|
8312
|
+
'unknown',
|
|
8313
|
+
'prohibited_item',
|
|
8314
|
+
'trade_restriction_surcharge',
|
|
8315
|
+
'processing',
|
|
8316
|
+
'delivery',
|
|
8317
|
+
'notification',
|
|
8318
|
+
'broker_notification',
|
|
8319
|
+
'delivery_confirmation',
|
|
8320
|
+
'signature_required',
|
|
8321
|
+
'tax_gst',
|
|
8322
|
+
'tax_hst',
|
|
8323
|
+
'tax_pst',
|
|
8324
|
+
'tax_vat',
|
|
8325
|
+
'discount_tax',
|
|
8326
|
+
'incoterm_ddp',
|
|
8327
|
+
]),
|
|
8328
|
+
|
|
8329
|
+
'io.flow.internal.v0.enums.shopify_delivery_method_type': (): io.flow.internal.v0.enums.ShopifyDeliveryMethodType => faker.helpers.arrayElement(['SHIPPING', 'PICKUP_POINT']),
|
|
8330
|
+
'io.flow.internal.v0.enums.shopify_dimension_unit': (): io.flow.internal.v0.enums.ShopifyDimensionUnit => faker.helpers.arrayElement(['cm', 'ft', 'in', 'm', 'mm']),
|
|
8331
|
+
'io.flow.internal.v0.enums.shopify_incoterm': (): io.flow.internal.v0.enums.ShopifyIncoterm => faker.helpers.arrayElement(['DAP', 'DDP']),
|
|
8207
8332
|
'io.flow.internal.v0.enums.shopify_incoterm_configuration': (): io.flow.internal.v0.enums.ShopifyIncotermConfiguration => faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']),
|
|
8208
8333
|
|
|
8209
8334
|
'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
|
|
@@ -8263,8 +8388,43 @@ const factories = {
|
|
|
8263
8388
|
|
|
8264
8389
|
'io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status': (): io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus => faker.helpers.arrayElement(['in_review', 'reviewed']),
|
|
8265
8390
|
'io.flow.internal.v0.enums.shopify_monitoring_tracking_field': (): io.flow.internal.v0.enums.ShopifyMonitoringTrackingField => faker.helpers.arrayElement(['tracking_number', 'carrier_service', 'tracking_url']),
|
|
8391
|
+
'io.flow.internal.v0.enums.shopify_package_type': (): io.flow.internal.v0.enums.ShopifyPackageType => faker.helpers.arrayElement(['BOX', 'ENVELOPE', 'SOFT_PACK', 'TUBE', 'CARRIER_PACKAGING']),
|
|
8266
8392
|
'io.flow.internal.v0.enums.shopify_plan_type': (): io.flow.internal.v0.enums.ShopifyPlanType => faker.helpers.arrayElement(['standard', 'shopify_plus']),
|
|
8267
8393
|
'io.flow.internal.v0.enums.shopify_service': (): io.flow.internal.v0.enums.ShopifyService => faker.helpers.arrayElement(['payment', 'duty_tax_calculator', 'sellability']),
|
|
8394
|
+
|
|
8395
|
+
'io.flow.internal.v0.enums.shopify_shipment_option_code': (): io.flow.internal.v0.enums.ShopifyShipmentOptionCode => faker.helpers.arrayElement([
|
|
8396
|
+
'adult_signature_required',
|
|
8397
|
+
'delivery_confirmation',
|
|
8398
|
+
'insurance',
|
|
8399
|
+
'named_person_only',
|
|
8400
|
+
'no_neighbour_delivery',
|
|
8401
|
+
'pickup',
|
|
8402
|
+
'package_pickup',
|
|
8403
|
+
'signature_required',
|
|
8404
|
+
'proof_of_age',
|
|
8405
|
+
'proof_of_age_16',
|
|
8406
|
+
'proof_of_age_18',
|
|
8407
|
+
'proof_of_age_19',
|
|
8408
|
+
'proof_of_age_21',
|
|
8409
|
+
'incoterm_ddp',
|
|
8410
|
+
'incoterm_dap',
|
|
8411
|
+
'usps_first_mile',
|
|
8412
|
+
]),
|
|
8413
|
+
|
|
8414
|
+
'io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code': (): io.flow.internal.v0.enums.ShopifyUnavailableRateReasonCode => faker.helpers.arrayElement([
|
|
8415
|
+
'SERVICE_NOT_AVAILABLE',
|
|
8416
|
+
'TEMPORARILY_UNAVAILABLE',
|
|
8417
|
+
'TIMEOUT',
|
|
8418
|
+
'RATE_LIMIT_EXCEEDED',
|
|
8419
|
+
'SYSTEM_ERROR',
|
|
8420
|
+
'THIRD_PARTY_SYSTEM_ERROR',
|
|
8421
|
+
'FAILED_VALIDATION',
|
|
8422
|
+
'INVALID_FORMAT',
|
|
8423
|
+
'MISSING_VALUE',
|
|
8424
|
+
'OUT_OF_RANGE',
|
|
8425
|
+
]),
|
|
8426
|
+
|
|
8427
|
+
'io.flow.internal.v0.enums.shopify_weight_unit': (): io.flow.internal.v0.enums.ShopifyWeightUnit => faker.helpers.arrayElement(['g', 'kg', 'lb', 'oz']),
|
|
8268
8428
|
'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
|
|
8269
8429
|
'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
|
|
8270
8430
|
'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task', 'invariant']),
|
|
@@ -8479,11 +8639,13 @@ const factories = {
|
|
|
8479
8639
|
transfer_method: factories['io.flow.internal.v0.enums.transfer_method'](),
|
|
8480
8640
|
b2b_tax_remittance_days: factories.long(),
|
|
8481
8641
|
merchant_of_record_fee: factories.decimal(),
|
|
8642
|
+
merchant_of_record_fee_create_on_order: factories.boolean(),
|
|
8482
8643
|
duty_guarantee_fee: factories.decimal(),
|
|
8483
8644
|
transfer_fee: factories.decimal(),
|
|
8484
8645
|
negative_balance_fee: factories.decimal(),
|
|
8485
8646
|
order_service_fee: factories['io.flow.internal.v0.models.tiered_fee'](),
|
|
8486
8647
|
label_fees: factories['io.flow.internal.v0.models.account_setting_label_fees'](),
|
|
8648
|
+
revenue_share_rate: factories.decimal(),
|
|
8487
8649
|
charge_label_cost_directly: factories.boolean(),
|
|
8488
8650
|
transaction_posting_method: factories['io.flow.internal.v0.enums.transaction_posting_method'](),
|
|
8489
8651
|
statement_transfer_transaction_location: factories['io.flow.internal.v0.enums.statement_transfer_transaction_location'](),
|
|
@@ -8494,6 +8656,10 @@ const factories = {
|
|
|
8494
8656
|
enable_fee_reversals: factories.boolean(),
|
|
8495
8657
|
record_reason_for_transactions_pending_payout: factories.boolean(),
|
|
8496
8658
|
enable_negative_debits: factories.boolean(),
|
|
8659
|
+
enable_statement_pdf: factories.boolean(),
|
|
8660
|
+
enable_shipping_label_revenue_share: factories.boolean(),
|
|
8661
|
+
enable_carrier_charge_revenue_share: factories.boolean(),
|
|
8662
|
+
always_charge_organization_for_trueup: factories.boolean(),
|
|
8497
8663
|
}),
|
|
8498
8664
|
|
|
8499
8665
|
'io.flow.internal.v0.models.account_settings_deleted': (): io.flow.internal.v0.models.AccountSettingsDeleted => ({
|
|
@@ -9029,37 +9195,6 @@ const factories = {
|
|
|
9029
9195
|
placeholder: factories.boolean(),
|
|
9030
9196
|
}),
|
|
9031
9197
|
|
|
9032
|
-
'io.flow.internal.v0.models.aldo_item': (): io.flow.internal.v0.models.AldoItem => ({
|
|
9033
|
-
id: factories.string(),
|
|
9034
|
-
number: factories.string(),
|
|
9035
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9036
|
-
description: factories.string(),
|
|
9037
|
-
type: factories['io.flow.internal.v0.enums.aldo_item_type'](),
|
|
9038
|
-
added_on: factories.date_iso_8601(),
|
|
9039
|
-
}),
|
|
9040
|
-
|
|
9041
|
-
'io.flow.internal.v0.models.aldo_item_deleted': (): io.flow.internal.v0.models.AldoItemDeleted => ({
|
|
9042
|
-
discriminator: 'aldo_item_deleted',
|
|
9043
|
-
event_id: factories.string(),
|
|
9044
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9045
|
-
id: factories.string(),
|
|
9046
|
-
}),
|
|
9047
|
-
|
|
9048
|
-
'io.flow.internal.v0.models.aldo_item_form': (): io.flow.internal.v0.models.AldoItemForm => ({
|
|
9049
|
-
number: factories.string(),
|
|
9050
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9051
|
-
description: factories.string(),
|
|
9052
|
-
type: factories['io.flow.internal.v0.enums.aldo_item_type'](),
|
|
9053
|
-
added_on: factories.date_iso_8601(),
|
|
9054
|
-
}),
|
|
9055
|
-
|
|
9056
|
-
'io.flow.internal.v0.models.aldo_item_upserted': (): io.flow.internal.v0.models.AldoItemUpserted => ({
|
|
9057
|
-
discriminator: 'aldo_item_upserted',
|
|
9058
|
-
event_id: factories.string(),
|
|
9059
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9060
|
-
item: factories['io.flow.internal.v0.models.aldo_item'](),
|
|
9061
|
-
}),
|
|
9062
|
-
|
|
9063
9198
|
'io.flow.internal.v0.models.all_items_export': (): io.flow.internal.v0.models.AllItemsExport => ({
|
|
9064
9199
|
discriminator: 'all_items_export',
|
|
9065
9200
|
event_id: factories.string(),
|
|
@@ -9082,68 +9217,23 @@ const factories = {
|
|
|
9082
9217
|
labels: objectOf(() => arrayOf(() => factories.string())),
|
|
9083
9218
|
}),
|
|
9084
9219
|
|
|
9085
|
-
'io.flow.internal.v0.models.
|
|
9220
|
+
'io.flow.internal.v0.models.amrutha_item': (): io.flow.internal.v0.models.AmruthaItem => ({
|
|
9086
9221
|
id: factories.string(),
|
|
9087
9222
|
number: factories.string(),
|
|
9088
9223
|
amount: factories['io.flow.common.v0.models.price'](),
|
|
9089
9224
|
description: factories.string(),
|
|
9090
|
-
type: factories['io.flow.internal.v0.enums.
|
|
9225
|
+
type: factories['io.flow.internal.v0.enums.amrutha_item_type'](),
|
|
9091
9226
|
added_on: factories.date_time_iso_8601(),
|
|
9092
9227
|
}),
|
|
9093
9228
|
|
|
9094
|
-
'io.flow.internal.v0.models.
|
|
9095
|
-
discriminator: 'anirban_item_deleted',
|
|
9096
|
-
event_id: factories.string(),
|
|
9097
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9098
|
-
id: factories.string(),
|
|
9099
|
-
}),
|
|
9100
|
-
|
|
9101
|
-
'io.flow.internal.v0.models.anirban_item_form': (): io.flow.internal.v0.models.AnirbanItemForm => ({
|
|
9229
|
+
'io.flow.internal.v0.models.amrutha_item_form': (): io.flow.internal.v0.models.AmruthaItemForm => ({
|
|
9102
9230
|
number: factories.string(),
|
|
9103
9231
|
amount: factories['io.flow.common.v0.models.price'](),
|
|
9104
9232
|
description: factories.string(),
|
|
9105
|
-
type: factories['io.flow.internal.v0.enums.
|
|
9233
|
+
type: factories['io.flow.internal.v0.enums.amrutha_item_type'](),
|
|
9106
9234
|
added_on: factories.date_time_iso_8601(),
|
|
9107
9235
|
}),
|
|
9108
9236
|
|
|
9109
|
-
'io.flow.internal.v0.models.anirban_item_upserted': (): io.flow.internal.v0.models.AnirbanItemUpserted => ({
|
|
9110
|
-
discriminator: 'anirban_item_upserted',
|
|
9111
|
-
event_id: factories.string(),
|
|
9112
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9113
|
-
item: factories['io.flow.internal.v0.models.anirban_item'](),
|
|
9114
|
-
}),
|
|
9115
|
-
|
|
9116
|
-
'io.flow.internal.v0.models.ansh_item': (): io.flow.internal.v0.models.AnshItem => ({
|
|
9117
|
-
id: factories.string(),
|
|
9118
|
-
number: factories.string(),
|
|
9119
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9120
|
-
description: factories.string(),
|
|
9121
|
-
type: factories['io.flow.internal.v0.enums.ansh_item_type'](),
|
|
9122
|
-
added_on: factories.date_iso_8601(),
|
|
9123
|
-
}),
|
|
9124
|
-
|
|
9125
|
-
'io.flow.internal.v0.models.ansh_item_deleted': (): io.flow.internal.v0.models.AnshItemDeleted => ({
|
|
9126
|
-
discriminator: 'ansh_item_deleted',
|
|
9127
|
-
event_id: factories.string(),
|
|
9128
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9129
|
-
id: factories.string(),
|
|
9130
|
-
}),
|
|
9131
|
-
|
|
9132
|
-
'io.flow.internal.v0.models.ansh_item_form': (): io.flow.internal.v0.models.AnshItemForm => ({
|
|
9133
|
-
number: factories.string(),
|
|
9134
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9135
|
-
description: factories.string(),
|
|
9136
|
-
type: factories['io.flow.internal.v0.enums.ansh_item_type'](),
|
|
9137
|
-
added_on: factories.date_iso_8601(),
|
|
9138
|
-
}),
|
|
9139
|
-
|
|
9140
|
-
'io.flow.internal.v0.models.ansh_item_upserted': (): io.flow.internal.v0.models.AnshItemUpserted => ({
|
|
9141
|
-
discriminator: 'ansh_item_upserted',
|
|
9142
|
-
event_id: factories.string(),
|
|
9143
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9144
|
-
item: factories['io.flow.internal.v0.models.ansh_item'](),
|
|
9145
|
-
}),
|
|
9146
|
-
|
|
9147
9237
|
'io.flow.internal.v0.models.apple_pay_authorization_payload': (): io.flow.internal.v0.models.ApplePayAuthorizationPayload => ({
|
|
9148
9238
|
discriminator: 'apple_pay_authorization_payload',
|
|
9149
9239
|
apple_pay_token: factories.string(),
|
|
@@ -9250,6 +9340,16 @@ const factories = {
|
|
|
9250
9340
|
action: factories['io.flow.internal.v0.enums.restriction_status'](),
|
|
9251
9341
|
}),
|
|
9252
9342
|
|
|
9343
|
+
'io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata': (): io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata => ({
|
|
9344
|
+
discriminator: 'b2b_fee_mor_tax_trigger_metadata',
|
|
9345
|
+
trigger_type: factories['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'](),
|
|
9346
|
+
}),
|
|
9347
|
+
|
|
9348
|
+
'io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata': (): io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata => ({
|
|
9349
|
+
discriminator: 'b2b_fee_shipping_tax_trigger_metadata',
|
|
9350
|
+
trigger_type: factories['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'](),
|
|
9351
|
+
}),
|
|
9352
|
+
|
|
9253
9353
|
'io.flow.internal.v0.models.b2b_tax_ledger': (): io.flow.internal.v0.models.B2BTaxLedger => ({
|
|
9254
9354
|
id: factories.string(),
|
|
9255
9355
|
total_amount: factories['io.flow.internal.v0.models.tax_type_total'](),
|
|
@@ -9267,6 +9367,8 @@ const factories = {
|
|
|
9267
9367
|
document_type: factories['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'](),
|
|
9268
9368
|
document_date: factories.date_time_iso_8601(),
|
|
9269
9369
|
ledger_report_id: factories.string(),
|
|
9370
|
+
voids_invoice_number: factories.string(),
|
|
9371
|
+
document_number: factories.string(),
|
|
9270
9372
|
}),
|
|
9271
9373
|
|
|
9272
9374
|
'io.flow.internal.v0.models.b2b_tax_ledger_form': (): io.flow.internal.v0.models.B2BTaxLedgerForm => ({
|
|
@@ -9285,6 +9387,8 @@ const factories = {
|
|
|
9285
9387
|
document_type: factories['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'](),
|
|
9286
9388
|
document_date: factories.date_time_iso_8601(),
|
|
9287
9389
|
ledger_report_id: factories.string(),
|
|
9390
|
+
voids_invoice_number: factories.string(),
|
|
9391
|
+
document_number: factories.string(),
|
|
9288
9392
|
}),
|
|
9289
9393
|
|
|
9290
9394
|
'io.flow.internal.v0.models.bank_account': (): io.flow.internal.v0.models.BankAccount => ({
|
|
@@ -9603,6 +9707,9 @@ const factories = {
|
|
|
9603
9707
|
tax_refund: factories['io.flow.common.v0.models.price'](),
|
|
9604
9708
|
b2b_tax: factories['io.flow.common.v0.models.price'](),
|
|
9605
9709
|
b2b_tax_refund: factories['io.flow.common.v0.models.price'](),
|
|
9710
|
+
merchant_fee: factories['io.flow.common.v0.models.price'](),
|
|
9711
|
+
b2b_fee_mor_tax: factories['io.flow.common.v0.models.price'](),
|
|
9712
|
+
b2b_fee_shipping_tax: factories['io.flow.common.v0.models.price'](),
|
|
9606
9713
|
}),
|
|
9607
9714
|
|
|
9608
9715
|
'io.flow.internal.v0.models.billing_statement_upserted': (): io.flow.internal.v0.models.BillingStatementUpserted => ({
|
|
@@ -9669,6 +9776,23 @@ const factories = {
|
|
|
9669
9776
|
secret_key: factories.string(),
|
|
9670
9777
|
}),
|
|
9671
9778
|
|
|
9779
|
+
'io.flow.internal.v0.models.bojana_item': (): io.flow.internal.v0.models.BojanaItem => ({
|
|
9780
|
+
id: factories.string(),
|
|
9781
|
+
number: factories.string(),
|
|
9782
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
9783
|
+
description: factories.string(),
|
|
9784
|
+
type: factories['io.flow.internal.v0.enums.bojana_item_type'](),
|
|
9785
|
+
added_on: factories.date_time_iso_8601(),
|
|
9786
|
+
}),
|
|
9787
|
+
|
|
9788
|
+
'io.flow.internal.v0.models.bojana_item_form': (): io.flow.internal.v0.models.BojanaItemForm => ({
|
|
9789
|
+
number: factories.string(),
|
|
9790
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
9791
|
+
description: factories.string(),
|
|
9792
|
+
type: factories['io.flow.internal.v0.enums.bojana_item_type'](),
|
|
9793
|
+
added_on: factories.date_time_iso_8601(),
|
|
9794
|
+
}),
|
|
9795
|
+
|
|
9672
9796
|
'io.flow.internal.v0.models.boolean_feature_default_value': (): io.flow.internal.v0.models.BooleanFeatureDefaultValue => ({
|
|
9673
9797
|
discriminator: 'boolean',
|
|
9674
9798
|
value: factories.boolean(),
|
|
@@ -10702,6 +10826,37 @@ const factories = {
|
|
|
10702
10826
|
type: factories['io.flow.internal.v0.enums.checkout_url_type'](),
|
|
10703
10827
|
}),
|
|
10704
10828
|
|
|
10829
|
+
'io.flow.internal.v0.models.chenglin_item': (): io.flow.internal.v0.models.ChenglinItem => ({
|
|
10830
|
+
id: factories.string(),
|
|
10831
|
+
number: factories.string(),
|
|
10832
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
10833
|
+
description: factories.string(),
|
|
10834
|
+
type: factories['io.flow.internal.v0.enums.gabriel_item_type'](),
|
|
10835
|
+
added_on: factories.date_iso_8601(),
|
|
10836
|
+
}),
|
|
10837
|
+
|
|
10838
|
+
'io.flow.internal.v0.models.chenglin_item_deleted': (): io.flow.internal.v0.models.ChenglinItemDeleted => ({
|
|
10839
|
+
discriminator: 'chenglin_item_deleted',
|
|
10840
|
+
event_id: factories.string(),
|
|
10841
|
+
timestamp: factories.date_time_iso_8601(),
|
|
10842
|
+
id: factories.string(),
|
|
10843
|
+
}),
|
|
10844
|
+
|
|
10845
|
+
'io.flow.internal.v0.models.chenglin_item_form': (): io.flow.internal.v0.models.ChenglinItemForm => ({
|
|
10846
|
+
number: factories.string(),
|
|
10847
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
10848
|
+
description: factories.string(),
|
|
10849
|
+
type: factories['io.flow.internal.v0.enums.gabriel_item_type'](),
|
|
10850
|
+
added_on: factories.date_iso_8601(),
|
|
10851
|
+
}),
|
|
10852
|
+
|
|
10853
|
+
'io.flow.internal.v0.models.chenglin_item_upserted': (): io.flow.internal.v0.models.ChenglinItemUpserted => ({
|
|
10854
|
+
discriminator: 'chenglin_item_upserted',
|
|
10855
|
+
event_id: factories.string(),
|
|
10856
|
+
timestamp: factories.date_time_iso_8601(),
|
|
10857
|
+
item: factories['io.flow.internal.v0.models.chenglin_item'](),
|
|
10858
|
+
}),
|
|
10859
|
+
|
|
10705
10860
|
'io.flow.internal.v0.models.cipher': (): io.flow.internal.v0.models.Cipher => ({
|
|
10706
10861
|
id: factories.string(),
|
|
10707
10862
|
attributes: objectOf(() => factories.string()),
|
|
@@ -13107,6 +13262,12 @@ const factories = {
|
|
|
13107
13262
|
num_events: factories.long(),
|
|
13108
13263
|
}),
|
|
13109
13264
|
|
|
13265
|
+
'io.flow.internal.v0.models.generate_load_rate': (): io.flow.internal.v0.models.GenerateLoadRate => ({
|
|
13266
|
+
organization_ids: arrayOf(() => factories.string()),
|
|
13267
|
+
events_per_second: factories.long(),
|
|
13268
|
+
duration_seconds: factories.long(),
|
|
13269
|
+
}),
|
|
13270
|
+
|
|
13110
13271
|
'io.flow.internal.v0.models.generate_load_single_org': (): io.flow.internal.v0.models.GenerateLoadSingleOrg => ({
|
|
13111
13272
|
discriminator: 'generate_load_single_org',
|
|
13112
13273
|
organization_id: factories.string(),
|
|
@@ -13280,37 +13441,6 @@ const factories = {
|
|
|
13280
13441
|
export_id: factories.string(),
|
|
13281
13442
|
}),
|
|
13282
13443
|
|
|
13283
|
-
'io.flow.internal.v0.models.hosein_item': (): io.flow.internal.v0.models.HoseinItem => ({
|
|
13284
|
-
id: factories.string(),
|
|
13285
|
-
number: factories.string(),
|
|
13286
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
13287
|
-
description: factories.string(),
|
|
13288
|
-
type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
|
|
13289
|
-
added_on: factories.date_time_iso_8601(),
|
|
13290
|
-
}),
|
|
13291
|
-
|
|
13292
|
-
'io.flow.internal.v0.models.hosein_item_deleted': (): io.flow.internal.v0.models.HoseinItemDeleted => ({
|
|
13293
|
-
discriminator: 'hosein_item_deleted',
|
|
13294
|
-
event_id: factories.string(),
|
|
13295
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13296
|
-
id: factories.string(),
|
|
13297
|
-
}),
|
|
13298
|
-
|
|
13299
|
-
'io.flow.internal.v0.models.hosein_item_form': (): io.flow.internal.v0.models.HoseinItemForm => ({
|
|
13300
|
-
number: factories.string(),
|
|
13301
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
13302
|
-
description: factories.string(),
|
|
13303
|
-
type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
|
|
13304
|
-
added_on: factories.date_time_iso_8601(),
|
|
13305
|
-
}),
|
|
13306
|
-
|
|
13307
|
-
'io.flow.internal.v0.models.hosein_item_upserted': (): io.flow.internal.v0.models.HoseinItemUpserted => ({
|
|
13308
|
-
discriminator: 'hosein_item_upserted',
|
|
13309
|
-
event_id: factories.string(),
|
|
13310
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13311
|
-
item: factories['io.flow.internal.v0.models.hosein_item'](),
|
|
13312
|
-
}),
|
|
13313
|
-
|
|
13314
13444
|
'io.flow.internal.v0.models.hs6': (): io.flow.internal.v0.models.Hs6 => ({
|
|
13315
13445
|
code: factories.string(),
|
|
13316
13446
|
description: factories.string(),
|
|
@@ -13318,6 +13448,7 @@ const factories = {
|
|
|
13318
13448
|
|
|
13319
13449
|
'io.flow.internal.v0.models.hs6_metadata': (): io.flow.internal.v0.models.Hs6Metadata => ({
|
|
13320
13450
|
description: factories.string(),
|
|
13451
|
+
classification_source: factories['io.flow.internal.v0.enums.classification_source'](),
|
|
13321
13452
|
}),
|
|
13322
13453
|
|
|
13323
13454
|
'io.flow.internal.v0.models.import_completed': (): io.flow.internal.v0.models.ImportCompleted => ({
|
|
@@ -13830,11 +13961,6 @@ const factories = {
|
|
|
13830
13961
|
values: arrayOf(() => factories.string()),
|
|
13831
13962
|
}),
|
|
13832
13963
|
|
|
13833
|
-
'io.flow.internal.v0.models.jean_demo_item': (): io.flow.internal.v0.models.JeanDemoItem => ({
|
|
13834
|
-
id: factories.string(),
|
|
13835
|
-
name: factories.string(),
|
|
13836
|
-
}),
|
|
13837
|
-
|
|
13838
13964
|
'io.flow.internal.v0.models.journal': (): io.flow.internal.v0.models.Journal => ({
|
|
13839
13965
|
name: factories.string(),
|
|
13840
13966
|
queued: factories.integer(),
|
|
@@ -13958,34 +14084,6 @@ const factories = {
|
|
|
13958
14084
|
postal: factories.string(),
|
|
13959
14085
|
}),
|
|
13960
14086
|
|
|
13961
|
-
'io.flow.internal.v0.models.label_generation_settings': (): io.flow.internal.v0.models.LabelGenerationSettings => ({
|
|
13962
|
-
id: factories.string(),
|
|
13963
|
-
auto_generate_query: factories.string(),
|
|
13964
|
-
commercial_invoice_only_query: factories.string(),
|
|
13965
|
-
}),
|
|
13966
|
-
|
|
13967
|
-
'io.flow.internal.v0.models.label_generation_settings_deleted': (): io.flow.internal.v0.models.LabelGenerationSettingsDeleted => ({
|
|
13968
|
-
discriminator: 'label_generation_settings_deleted',
|
|
13969
|
-
event_id: factories.string(),
|
|
13970
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13971
|
-
organization: factories.string(),
|
|
13972
|
-
id: factories.string(),
|
|
13973
|
-
}),
|
|
13974
|
-
|
|
13975
|
-
'io.flow.internal.v0.models.label_generation_settings_form': (): io.flow.internal.v0.models.LabelGenerationSettingsForm => ({
|
|
13976
|
-
item_identifier: factories.string(),
|
|
13977
|
-
auto_generate_query: factories.string(),
|
|
13978
|
-
commercial_invoice_only_query: factories.string(),
|
|
13979
|
-
}),
|
|
13980
|
-
|
|
13981
|
-
'io.flow.internal.v0.models.label_generation_settings_upserted': (): io.flow.internal.v0.models.LabelGenerationSettingsUpserted => ({
|
|
13982
|
-
discriminator: 'label_generation_settings_upserted',
|
|
13983
|
-
event_id: factories.string(),
|
|
13984
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13985
|
-
organization: factories.string(),
|
|
13986
|
-
label_generation_settings: factories['io.flow.internal.v0.models.label_generation_settings'](),
|
|
13987
|
-
}),
|
|
13988
|
-
|
|
13989
14087
|
'io.flow.internal.v0.models.label_invoice_request': (): io.flow.internal.v0.models.LabelInvoiceRequest => ({
|
|
13990
14088
|
id: factories.string(),
|
|
13991
14089
|
label: factories['io.flow.internal.v0.models.trueup_label_summary'](),
|
|
@@ -14070,6 +14168,7 @@ const factories = {
|
|
|
14070
14168
|
reference_id: factories.string(),
|
|
14071
14169
|
logistics_integration_provider: factories.string(),
|
|
14072
14170
|
tax_lrp_liabilities: arrayOf(() => factories['io.flow.internal.v0.models.liability']()),
|
|
14171
|
+
channel_id: factories.string(),
|
|
14073
14172
|
}),
|
|
14074
14173
|
|
|
14075
14174
|
'io.flow.internal.v0.models.label_summary': (): io.flow.internal.v0.models.LabelSummary => ({
|
|
@@ -14494,6 +14593,7 @@ const factories = {
|
|
|
14494
14593
|
original_transaction: factories['io.flow.internal.v0.models.transaction_reference'](),
|
|
14495
14594
|
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
14496
14595
|
attributes: objectOf(() => factories.string()),
|
|
14596
|
+
recoup: factories.boolean(),
|
|
14497
14597
|
id: factories.string(),
|
|
14498
14598
|
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
14499
14599
|
status: factories['io.flow.internal.v0.enums.billing_transaction_status'](),
|
|
@@ -14511,6 +14611,7 @@ const factories = {
|
|
|
14511
14611
|
category: factories['io.flow.internal.v0.enums.manual_transaction_category'](),
|
|
14512
14612
|
order: factories['io.flow.internal.v0.models.manual_transaction_form_order'](),
|
|
14513
14613
|
original_transaction_id: factories.string(),
|
|
14614
|
+
recoup: factories.boolean(),
|
|
14514
14615
|
attributes: objectOf(() => factories.string()),
|
|
14515
14616
|
}),
|
|
14516
14617
|
|
|
@@ -14757,37 +14858,6 @@ const factories = {
|
|
|
14757
14858
|
conditions: factories.string(),
|
|
14758
14859
|
}),
|
|
14759
14860
|
|
|
14760
|
-
'io.flow.internal.v0.models.niall_item': (): io.flow.internal.v0.models.NiallItem => ({
|
|
14761
|
-
id: factories.string(),
|
|
14762
|
-
number: factories.string(),
|
|
14763
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
14764
|
-
description: factories.string(),
|
|
14765
|
-
type: factories['io.flow.internal.v0.enums.niall_item_type'](),
|
|
14766
|
-
added_on: factories.date_time_iso_8601(),
|
|
14767
|
-
}),
|
|
14768
|
-
|
|
14769
|
-
'io.flow.internal.v0.models.niall_item_deleted': (): io.flow.internal.v0.models.NiallItemDeleted => ({
|
|
14770
|
-
discriminator: 'niall_item_deleted',
|
|
14771
|
-
event_id: factories.string(),
|
|
14772
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14773
|
-
id: factories.string(),
|
|
14774
|
-
}),
|
|
14775
|
-
|
|
14776
|
-
'io.flow.internal.v0.models.niall_item_form': (): io.flow.internal.v0.models.NiallItemForm => ({
|
|
14777
|
-
number: factories.string(),
|
|
14778
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
14779
|
-
description: factories.string(),
|
|
14780
|
-
type: factories['io.flow.internal.v0.enums.niall_item_type'](),
|
|
14781
|
-
added_on: factories.date_time_iso_8601(),
|
|
14782
|
-
}),
|
|
14783
|
-
|
|
14784
|
-
'io.flow.internal.v0.models.niall_item_upserted': (): io.flow.internal.v0.models.NiallItemUpserted => ({
|
|
14785
|
-
discriminator: 'niall_item_upserted',
|
|
14786
|
-
event_id: factories.string(),
|
|
14787
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14788
|
-
item: factories['io.flow.internal.v0.models.niall_item'](),
|
|
14789
|
-
}),
|
|
14790
|
-
|
|
14791
14861
|
'io.flow.internal.v0.models.no_calculated_tax_amount': (): io.flow.internal.v0.models.NoCalculatedTaxAmount => ({
|
|
14792
14862
|
discriminator: 'no_calculated_tax_amount',
|
|
14793
14863
|
amount: factories.decimal(),
|
|
@@ -14876,6 +14946,7 @@ const factories = {
|
|
|
14876
14946
|
audit_result: factories['io.flow.internal.v0.enums.onboarding_audit_result'](),
|
|
14877
14947
|
blocked_since: factories.date_time_iso_8601(),
|
|
14878
14948
|
onboarding_segment: factories.string(),
|
|
14949
|
+
country: factories.string(),
|
|
14879
14950
|
}),
|
|
14880
14951
|
|
|
14881
14952
|
'io.flow.internal.v0.models.onboarding_state_form': (): io.flow.internal.v0.models.OnboardingStateForm => ({
|
|
@@ -15525,6 +15596,16 @@ const factories = {
|
|
|
15525
15596
|
organization_payment_setting: factories['io.flow.internal.v0.models.organization_payment_setting'](),
|
|
15526
15597
|
}),
|
|
15527
15598
|
|
|
15599
|
+
'io.flow.internal.v0.models.organization_promotion': (): io.flow.internal.v0.models.OrganizationPromotion => ({
|
|
15600
|
+
status: factories['io.flow.internal.v0.enums.organization_promotion_status'](),
|
|
15601
|
+
prod_org: factories.string(),
|
|
15602
|
+
}),
|
|
15603
|
+
|
|
15604
|
+
'io.flow.internal.v0.models.organization_promotion_warning': (): io.flow.internal.v0.models.OrganizationPromotionWarning => ({
|
|
15605
|
+
prod_org: factories.string(),
|
|
15606
|
+
message: factories.string(),
|
|
15607
|
+
}),
|
|
15608
|
+
|
|
15528
15609
|
'io.flow.internal.v0.models.organization_restriction_note_form': (): io.flow.internal.v0.models.OrganizationRestrictionNoteForm => ({
|
|
15529
15610
|
note: factories.string(),
|
|
15530
15611
|
note_type: factories['io.flow.internal.v0.enums.organization_restriction_note_type'](),
|
|
@@ -15758,6 +15839,7 @@ const factories = {
|
|
|
15758
15839
|
label_transaction_id: factories.string(),
|
|
15759
15840
|
label_invoice_request_id: factories.string(),
|
|
15760
15841
|
carrier_charge_id: factories.string(),
|
|
15842
|
+
subtype: factories.string(),
|
|
15761
15843
|
}),
|
|
15762
15844
|
|
|
15763
15845
|
'io.flow.internal.v0.models.other_record_order_summary': (): io.flow.internal.v0.models.OtherRecordOrderSummary => ({
|
|
@@ -16383,23 +16465,6 @@ const factories = {
|
|
|
16383
16465
|
rate: factories.decimal(),
|
|
16384
16466
|
}),
|
|
16385
16467
|
|
|
16386
|
-
'io.flow.internal.v0.models.prateek_item': (): io.flow.internal.v0.models.PrateekItem => ({
|
|
16387
|
-
id: factories.string(),
|
|
16388
|
-
number: factories.string(),
|
|
16389
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
16390
|
-
description: factories.string(),
|
|
16391
|
-
type: factories['io.flow.internal.v0.enums.prateek_item_type'](),
|
|
16392
|
-
added_on: factories.date_iso_8601(),
|
|
16393
|
-
}),
|
|
16394
|
-
|
|
16395
|
-
'io.flow.internal.v0.models.prateek_item_form': (): io.flow.internal.v0.models.PrateekItemForm => ({
|
|
16396
|
-
number: factories.string(),
|
|
16397
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
16398
|
-
description: factories.string(),
|
|
16399
|
-
type: factories['io.flow.internal.v0.enums.prateek_item_type'](),
|
|
16400
|
-
added_on: factories.date_iso_8601(),
|
|
16401
|
-
}),
|
|
16402
|
-
|
|
16403
16468
|
'io.flow.internal.v0.models.prediction': (): io.flow.internal.v0.models.Prediction => ({
|
|
16404
16469
|
main_material: factories.string(),
|
|
16405
16470
|
gender: factories.string(),
|
|
@@ -16461,6 +16526,7 @@ const factories = {
|
|
|
16461
16526
|
}),
|
|
16462
16527
|
|
|
16463
16528
|
'io.flow.internal.v0.models.preonboarding_sellability_result': (): io.flow.internal.v0.models.PreonboardingSellabilityResult => ({
|
|
16529
|
+
id: factories.string(),
|
|
16464
16530
|
merchant_id: factories.string(),
|
|
16465
16531
|
product_id: factories.string(),
|
|
16466
16532
|
channel: factories.string(),
|
|
@@ -16481,6 +16547,28 @@ const factories = {
|
|
|
16481
16547
|
fingerprint: factories.string(),
|
|
16482
16548
|
}),
|
|
16483
16549
|
|
|
16550
|
+
'io.flow.internal.v0.models.preonboarding_sellability_result_deleted': (): io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted => ({
|
|
16551
|
+
discriminator: 'preonboarding_sellability_result_deleted',
|
|
16552
|
+
event_id: factories.string(),
|
|
16553
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16554
|
+
id: factories.string(),
|
|
16555
|
+
}),
|
|
16556
|
+
|
|
16557
|
+
'io.flow.internal.v0.models.preonboarding_sellability_result_inserted': (): io.flow.internal.v0.models.PreonboardingSellabilityResultInserted => ({
|
|
16558
|
+
discriminator: 'preonboarding_sellability_result_inserted',
|
|
16559
|
+
event_id: factories.string(),
|
|
16560
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16561
|
+
preonboarding_sellability_result: factories['io.flow.internal.v0.models.preonboarding_sellability_result'](),
|
|
16562
|
+
}),
|
|
16563
|
+
|
|
16564
|
+
'io.flow.internal.v0.models.preonboarding_sellability_result_updated': (): io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated => ({
|
|
16565
|
+
discriminator: 'preonboarding_sellability_result_updated',
|
|
16566
|
+
event_id: factories.string(),
|
|
16567
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16568
|
+
previous_preonboarding_sellability_result: factories['io.flow.internal.v0.models.preonboarding_sellability_result'](),
|
|
16569
|
+
preonboarding_sellability_result: factories['io.flow.internal.v0.models.preonboarding_sellability_result'](),
|
|
16570
|
+
}),
|
|
16571
|
+
|
|
16484
16572
|
'io.flow.internal.v0.models.price_inclusivity': (): io.flow.internal.v0.models.PriceInclusivity => ({
|
|
16485
16573
|
tax: factories.boolean(),
|
|
16486
16574
|
duty: factories.boolean(),
|
|
@@ -16759,10 +16847,23 @@ const factories = {
|
|
|
16759
16847
|
() => factories['io.flow.sellability.v0.models.sellability_region_result'](),
|
|
16760
16848
|
),
|
|
16761
16849
|
|
|
16762
|
-
|
|
16850
|
+
rule_matches: arrayOf(
|
|
16851
|
+
() => factories['io.flow.internal.v0.models.product_sellability_internal_rule_match'](),
|
|
16852
|
+
),
|
|
16853
|
+
|
|
16854
|
+
matching_positive_keywords: arrayOf(() => factories.string()),
|
|
16855
|
+
}),
|
|
16856
|
+
|
|
16857
|
+
'io.flow.internal.v0.models.product_sellability_internal_rule_match': (): io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch => ({
|
|
16858
|
+
rule_id: factories.string(),
|
|
16859
|
+
|
|
16860
|
+
match_types: arrayOf(
|
|
16861
|
+
() => factories['io.flow.internal.v0.enums.sellability_internal_match_type'](),
|
|
16862
|
+
),
|
|
16763
16863
|
}),
|
|
16764
16864
|
|
|
16765
16865
|
'io.flow.internal.v0.models.product_sellability_result': (): io.flow.internal.v0.models.ProductSellabilityResult => ({
|
|
16866
|
+
id: factories.string(),
|
|
16766
16867
|
shop_id: factories.string(),
|
|
16767
16868
|
product_number: factories.string(),
|
|
16768
16869
|
request_id: factories.string(),
|
|
@@ -16775,6 +16876,30 @@ const factories = {
|
|
|
16775
16876
|
|
|
16776
16877
|
rule_ids: arrayOf(() => factories.string()),
|
|
16777
16878
|
taxonomy_category: factories.string(),
|
|
16879
|
+
fingerprint: factories.string(),
|
|
16880
|
+
processed_at: factories.date_time_iso_8601(),
|
|
16881
|
+
}),
|
|
16882
|
+
|
|
16883
|
+
'io.flow.internal.v0.models.product_sellability_result_deleted': (): io.flow.internal.v0.models.ProductSellabilityResultDeleted => ({
|
|
16884
|
+
discriminator: 'product_sellability_result_deleted',
|
|
16885
|
+
event_id: factories.string(),
|
|
16886
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16887
|
+
id: factories.string(),
|
|
16888
|
+
}),
|
|
16889
|
+
|
|
16890
|
+
'io.flow.internal.v0.models.product_sellability_result_inserted': (): io.flow.internal.v0.models.ProductSellabilityResultInserted => ({
|
|
16891
|
+
discriminator: 'product_sellability_result_inserted',
|
|
16892
|
+
event_id: factories.string(),
|
|
16893
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16894
|
+
product_sellability_result: factories['io.flow.internal.v0.models.product_sellability_result'](),
|
|
16895
|
+
}),
|
|
16896
|
+
|
|
16897
|
+
'io.flow.internal.v0.models.product_sellability_result_updated': (): io.flow.internal.v0.models.ProductSellabilityResultUpdated => ({
|
|
16898
|
+
discriminator: 'product_sellability_result_updated',
|
|
16899
|
+
event_id: factories.string(),
|
|
16900
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16901
|
+
previous_product_sellability_result: factories['io.flow.internal.v0.models.product_sellability_result'](),
|
|
16902
|
+
product_sellability_result: factories['io.flow.internal.v0.models.product_sellability_result'](),
|
|
16778
16903
|
}),
|
|
16779
16904
|
|
|
16780
16905
|
'io.flow.internal.v0.models.product_transaction': (): io.flow.internal.v0.models.ProductTransaction => ({
|
|
@@ -17329,6 +17454,7 @@ const factories = {
|
|
|
17329
17454
|
source_type: factories['io.flow.internal.v0.enums.source_type_filter'](),
|
|
17330
17455
|
order_payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
17331
17456
|
amount_range: factories['io.flow.internal.v0.models.report_amount_range'](),
|
|
17457
|
+
account_currency: factories['io.flow.internal.v0.enums.account_currency_filter'](),
|
|
17332
17458
|
}),
|
|
17333
17459
|
|
|
17334
17460
|
'io.flow.internal.v0.models.report_form': (): io.flow.internal.v0.models.ReportForm => ({
|
|
@@ -18189,37 +18315,6 @@ const factories = {
|
|
|
18189
18315
|
revenue_record: factories['io.flow.internal.v0.models.revenue_record'](),
|
|
18190
18316
|
}),
|
|
18191
18317
|
|
|
18192
|
-
'io.flow.internal.v0.models.rohan_item': (): io.flow.internal.v0.models.RohanItem => ({
|
|
18193
|
-
id: factories.string(),
|
|
18194
|
-
number: factories.string(),
|
|
18195
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18196
|
-
description: factories.string(),
|
|
18197
|
-
type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
|
|
18198
|
-
added_on: factories.date_iso_8601(),
|
|
18199
|
-
}),
|
|
18200
|
-
|
|
18201
|
-
'io.flow.internal.v0.models.rohan_item_deleted': (): io.flow.internal.v0.models.RohanItemDeleted => ({
|
|
18202
|
-
discriminator: 'rohan_item_deleted',
|
|
18203
|
-
event_id: factories.string(),
|
|
18204
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18205
|
-
id: factories.string(),
|
|
18206
|
-
}),
|
|
18207
|
-
|
|
18208
|
-
'io.flow.internal.v0.models.rohan_item_form': (): io.flow.internal.v0.models.RohanItemForm => ({
|
|
18209
|
-
number: factories.string(),
|
|
18210
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18211
|
-
description: factories.string(),
|
|
18212
|
-
type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
|
|
18213
|
-
added_on: factories.date_iso_8601(),
|
|
18214
|
-
}),
|
|
18215
|
-
|
|
18216
|
-
'io.flow.internal.v0.models.rohan_item_upserted': (): io.flow.internal.v0.models.RohanItemUpserted => ({
|
|
18217
|
-
discriminator: 'rohan_item_upserted',
|
|
18218
|
-
event_id: factories.string(),
|
|
18219
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18220
|
-
item: factories['io.flow.internal.v0.models.rohan_item'](),
|
|
18221
|
-
}),
|
|
18222
|
-
|
|
18223
18318
|
'io.flow.internal.v0.models.routing_account': (): io.flow.internal.v0.models.RoutingAccount => ({
|
|
18224
18319
|
discriminator: 'routing_account',
|
|
18225
18320
|
processor: factories['io.flow.internal.v0.enums.processor'](),
|
|
@@ -18254,6 +18349,9 @@ const factories = {
|
|
|
18254
18349
|
price_inclusivity: factories['io.flow.internal.v0.models.price_inclusivity'](),
|
|
18255
18350
|
destination_country: factories.string(),
|
|
18256
18351
|
fulfilled_at: factories.date_time_iso_8601(),
|
|
18352
|
+
reconciliation: factories['io.flow.internal.v0.models.reporting_reconciliation'](),
|
|
18353
|
+
is_eu_destination: factories.boolean(),
|
|
18354
|
+
debug_url: factories.string(),
|
|
18257
18355
|
}),
|
|
18258
18356
|
|
|
18259
18357
|
'io.flow.internal.v0.models.sandbox_setup': (): io.flow.internal.v0.models.SandboxSetup => ({
|
|
@@ -18264,37 +18362,6 @@ const factories = {
|
|
|
18264
18362
|
requested_by: factories.string(),
|
|
18265
18363
|
}),
|
|
18266
18364
|
|
|
18267
|
-
'io.flow.internal.v0.models.sarvesh_item': (): io.flow.internal.v0.models.SarveshItem => ({
|
|
18268
|
-
id: factories.string(),
|
|
18269
|
-
number: factories.string(),
|
|
18270
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18271
|
-
description: factories.string(),
|
|
18272
|
-
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
18273
|
-
added_on: factories.date_time_iso_8601(),
|
|
18274
|
-
}),
|
|
18275
|
-
|
|
18276
|
-
'io.flow.internal.v0.models.sarvesh_item_deleted': (): io.flow.internal.v0.models.SarveshItemDeleted => ({
|
|
18277
|
-
discriminator: 'sarvesh_item_deleted',
|
|
18278
|
-
event_id: factories.string(),
|
|
18279
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18280
|
-
id: factories.string(),
|
|
18281
|
-
}),
|
|
18282
|
-
|
|
18283
|
-
'io.flow.internal.v0.models.sarvesh_item_form': (): io.flow.internal.v0.models.SarveshItemForm => ({
|
|
18284
|
-
number: factories.string(),
|
|
18285
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18286
|
-
description: factories.string(),
|
|
18287
|
-
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
18288
|
-
added_on: factories.date_time_iso_8601(),
|
|
18289
|
-
}),
|
|
18290
|
-
|
|
18291
|
-
'io.flow.internal.v0.models.sarvesh_item_upserted': (): io.flow.internal.v0.models.SarveshItemUpserted => ({
|
|
18292
|
-
discriminator: 'sarvesh_item_upserted',
|
|
18293
|
-
event_id: factories.string(),
|
|
18294
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18295
|
-
item: factories['io.flow.internal.v0.models.sarvesh_item'](),
|
|
18296
|
-
}),
|
|
18297
|
-
|
|
18298
18365
|
'io.flow.internal.v0.models.scheduled_payment': (): io.flow.internal.v0.models.ScheduledPayment => ({
|
|
18299
18366
|
payment: factories['io.flow.internal.v0.models.report_payment'](),
|
|
18300
18367
|
bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
|
|
@@ -18444,6 +18511,34 @@ const factories = {
|
|
|
18444
18511
|
cost: factories['io.flow.common.v0.models.money'](),
|
|
18445
18512
|
}),
|
|
18446
18513
|
|
|
18514
|
+
'io.flow.internal.v0.models.shipping_cost_deleted': (): io.flow.internal.v0.models.ShippingCostDeleted => ({
|
|
18515
|
+
discriminator: 'shipping_cost_deleted',
|
|
18516
|
+
event_id: factories.string(),
|
|
18517
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18518
|
+
organization: factories.string(),
|
|
18519
|
+
id: factories.string(),
|
|
18520
|
+
}),
|
|
18521
|
+
|
|
18522
|
+
'io.flow.internal.v0.models.shipping_cost_summary': (): io.flow.internal.v0.models.ShippingCostSummary => ({
|
|
18523
|
+
id: factories.string(),
|
|
18524
|
+
source: factories['io.flow.billing.v0.enums.transaction_source'](),
|
|
18525
|
+
organization_id: factories.string(),
|
|
18526
|
+
order_number: factories.string(),
|
|
18527
|
+
amount: factories['io.flow.common.v0.models.money'](),
|
|
18528
|
+
tax: factories['io.flow.common.v0.models.money'](),
|
|
18529
|
+
label_id: factories.string(),
|
|
18530
|
+
base: factories['io.flow.trueup.v0.models.label_base'](),
|
|
18531
|
+
surcharges: arrayOf(() => factories['io.flow.trueup.v0.models.label_surcharge']()),
|
|
18532
|
+
}),
|
|
18533
|
+
|
|
18534
|
+
'io.flow.internal.v0.models.shipping_cost_upserted': (): io.flow.internal.v0.models.ShippingCostUpserted => ({
|
|
18535
|
+
discriminator: 'shipping_cost_upserted',
|
|
18536
|
+
event_id: factories.string(),
|
|
18537
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18538
|
+
organization: factories.string(),
|
|
18539
|
+
shipping_cost: factories['io.flow.internal.v0.models.shipping_cost_summary'](),
|
|
18540
|
+
}),
|
|
18541
|
+
|
|
18447
18542
|
'io.flow.internal.v0.models.shipping_lane': (): io.flow.internal.v0.models.ShippingLane => ({
|
|
18448
18543
|
origin: factories.string(),
|
|
18449
18544
|
destination: factories.string(),
|
|
@@ -18506,6 +18601,27 @@ const factories = {
|
|
|
18506
18601
|
include_unpublished: factories.boolean(),
|
|
18507
18602
|
}),
|
|
18508
18603
|
|
|
18604
|
+
'io.flow.internal.v0.models.shopify_address': (): io.flow.internal.v0.models.ShopifyAddress => ({
|
|
18605
|
+
address1: factories.string(),
|
|
18606
|
+
city: factories.string(),
|
|
18607
|
+
country_code: factories.string(),
|
|
18608
|
+
address2: factories.string(),
|
|
18609
|
+
postal_code: factories.string(),
|
|
18610
|
+
province: factories.string(),
|
|
18611
|
+
}),
|
|
18612
|
+
|
|
18613
|
+
'io.flow.internal.v0.models.shopify_callback_error': (): io.flow.internal.v0.models.ShopifyCallbackError => ({
|
|
18614
|
+
errors: arrayOf(
|
|
18615
|
+
() => factories['io.flow.internal.v0.models.shopify_callback_error_item'](),
|
|
18616
|
+
),
|
|
18617
|
+
}),
|
|
18618
|
+
|
|
18619
|
+
'io.flow.internal.v0.models.shopify_callback_error_item': (): io.flow.internal.v0.models.ShopifyCallbackErrorItem => ({
|
|
18620
|
+
code: factories['io.flow.internal.v0.enums.shopify_callback_error_code'](),
|
|
18621
|
+
message: factories.string(),
|
|
18622
|
+
field: factories.string(),
|
|
18623
|
+
}),
|
|
18624
|
+
|
|
18509
18625
|
'io.flow.internal.v0.models.shopify_catalog_publication': (): io.flow.internal.v0.models.ShopifyCatalogPublication => ({
|
|
18510
18626
|
owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
|
|
18511
18627
|
}),
|
|
@@ -18519,6 +18635,13 @@ const factories = {
|
|
|
18519
18635
|
service: factories['io.flow.internal.v0.enums.shopify_service'](),
|
|
18520
18636
|
}),
|
|
18521
18637
|
|
|
18638
|
+
'io.flow.internal.v0.models.shopify_contact_details': (): io.flow.internal.v0.models.ShopifyContactDetails => ({
|
|
18639
|
+
company: factories.string(),
|
|
18640
|
+
email: factories.string(),
|
|
18641
|
+
name: factories.string(),
|
|
18642
|
+
phone: factories.string(),
|
|
18643
|
+
}),
|
|
18644
|
+
|
|
18522
18645
|
'io.flow.internal.v0.models.shopify_dispute': (): io.flow.internal.v0.models.ShopifyDispute => ({
|
|
18523
18646
|
id: factories.string(),
|
|
18524
18647
|
organization_id: factories.string(),
|
|
@@ -18880,6 +19003,15 @@ const factories = {
|
|
|
18880
19003
|
registration: factories['io.flow.internal.v0.models.shopify_markets_webhook_registration'](),
|
|
18881
19004
|
}),
|
|
18882
19005
|
|
|
19006
|
+
'io.flow.internal.v0.models.shopify_measurements': (): io.flow.internal.v0.models.ShopifyMeasurements => ({
|
|
19007
|
+
dimension_unit: factories['io.flow.internal.v0.enums.shopify_dimension_unit'](),
|
|
19008
|
+
height: factories.decimal(),
|
|
19009
|
+
length: factories.decimal(),
|
|
19010
|
+
width: factories.decimal(),
|
|
19011
|
+
weight: factories.decimal(),
|
|
19012
|
+
weight_unit: factories['io.flow.internal.v0.enums.shopify_weight_unit'](),
|
|
19013
|
+
}),
|
|
19014
|
+
|
|
18883
19015
|
'io.flow.internal.v0.models.shopify_merchant_plan': (): io.flow.internal.v0.models.ShopifyMerchantPlan => ({
|
|
18884
19016
|
id: factories.string(),
|
|
18885
19017
|
authorization: factories['io.flow.payment.v0.models.authorization_reference'](),
|
|
@@ -18907,6 +19039,11 @@ const factories = {
|
|
|
18907
19039
|
token: factories.string(),
|
|
18908
19040
|
}),
|
|
18909
19041
|
|
|
19042
|
+
'io.flow.internal.v0.models.shopify_money': (): io.flow.internal.v0.models.ShopifyMoney => ({
|
|
19043
|
+
amount: factories.decimal(),
|
|
19044
|
+
currency_code: factories.string(),
|
|
19045
|
+
}),
|
|
19046
|
+
|
|
18910
19047
|
'io.flow.internal.v0.models.shopify_monitoring_carrier_service': (): io.flow.internal.v0.models.ShopifyMonitoringCarrierService => ({
|
|
18911
19048
|
service: factories.string(),
|
|
18912
19049
|
}),
|
|
@@ -19198,6 +19335,15 @@ const factories = {
|
|
|
19198
19335
|
deleted_at: factories.date_time_iso_8601(),
|
|
19199
19336
|
}),
|
|
19200
19337
|
|
|
19338
|
+
'io.flow.internal.v0.models.shopify_rate_customs_detail': (): io.flow.internal.v0.models.ShopifyRateCustomsDetail => ({
|
|
19339
|
+
incoterm: factories['io.flow.internal.v0.enums.shopify_incoterm'](),
|
|
19340
|
+
net_value: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
19341
|
+
}),
|
|
19342
|
+
|
|
19343
|
+
'io.flow.internal.v0.models.shopify_rate_pickup_point': (): io.flow.internal.v0.models.ShopifyRatePickupPoint => ({
|
|
19344
|
+
partner_reference_id: factories.string(),
|
|
19345
|
+
}),
|
|
19346
|
+
|
|
19201
19347
|
'io.flow.internal.v0.models.shopify_report_file_deleted': (): io.flow.internal.v0.models.ShopifyReportFileDeleted => ({
|
|
19202
19348
|
discriminator: 'shopify_report_file_deleted',
|
|
19203
19349
|
event_id: factories.string(),
|
|
@@ -19212,6 +19358,100 @@ const factories = {
|
|
|
19212
19358
|
shopify_report_file: factories['io.flow.internal.v0.models.report_file'](),
|
|
19213
19359
|
}),
|
|
19214
19360
|
|
|
19361
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_available': (): io.flow.internal.v0.models.ShopifyShipmentRateAvailable => ({
|
|
19362
|
+
carrier_service_id: factories.string(),
|
|
19363
|
+
total_charges: factories['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'](),
|
|
19364
|
+
|
|
19365
|
+
charges: arrayOf(
|
|
19366
|
+
() => factories['io.flow.internal.v0.models.shopify_shipment_rate_charge'](),
|
|
19367
|
+
),
|
|
19368
|
+
|
|
19369
|
+
shipment_options: arrayOf(
|
|
19370
|
+
() => factories['io.flow.internal.v0.models.shopify_shipment_rate_option'](),
|
|
19371
|
+
),
|
|
19372
|
+
|
|
19373
|
+
expected_delivery_date: factories.date_time_iso_8601(),
|
|
19374
|
+
guaranteed_delivery_date: factories.date_time_iso_8601(),
|
|
19375
|
+
incoterm: factories['io.flow.internal.v0.enums.shopify_incoterm'](),
|
|
19376
|
+
}),
|
|
19377
|
+
|
|
19378
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_charge': (): io.flow.internal.v0.models.ShopifyShipmentRateCharge => ({
|
|
19379
|
+
code: factories['io.flow.internal.v0.enums.shopify_charge_code'](),
|
|
19380
|
+
cost: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
19381
|
+
}),
|
|
19382
|
+
|
|
19383
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_option': (): io.flow.internal.v0.models.ShopifyShipmentRateOption => ({
|
|
19384
|
+
code: factories['io.flow.internal.v0.enums.shopify_shipment_option_code'](),
|
|
19385
|
+
cost: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
19386
|
+
optional: factories.boolean(),
|
|
19387
|
+
}),
|
|
19388
|
+
|
|
19389
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_package': (): io.flow.internal.v0.models.ShopifyShipmentRatePackage => ({
|
|
19390
|
+
type: factories['io.flow.internal.v0.enums.shopify_package_type'](),
|
|
19391
|
+
measurements: factories['io.flow.internal.v0.models.shopify_measurements'](),
|
|
19392
|
+
}),
|
|
19393
|
+
|
|
19394
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_reason': (): io.flow.internal.v0.models.ShopifyShipmentRateReason => ({
|
|
19395
|
+
code: factories['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code'](),
|
|
19396
|
+
field: factories.string(),
|
|
19397
|
+
message: factories.string(),
|
|
19398
|
+
}),
|
|
19399
|
+
|
|
19400
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_request': (): io.flow.internal.v0.models.ShopifyShipmentRateRequest => ({
|
|
19401
|
+
idempotency_key: factories.string(),
|
|
19402
|
+
webhook_id: factories.string(),
|
|
19403
|
+
test: factories.boolean(),
|
|
19404
|
+
shipper: factories['io.flow.internal.v0.models.shopify_shipment_rate_shipper'](),
|
|
19405
|
+
shipment: factories['io.flow.internal.v0.models.shopify_shipment_rate_shipment'](),
|
|
19406
|
+
}),
|
|
19407
|
+
|
|
19408
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_response': (): io.flow.internal.v0.models.ShopifyShipmentRateResponse => ({
|
|
19409
|
+
rates: arrayOf(
|
|
19410
|
+
() => factories['io.flow.internal.v0.models.shopify_shipment_rate_available'](),
|
|
19411
|
+
),
|
|
19412
|
+
|
|
19413
|
+
unavailable_rates: arrayOf(
|
|
19414
|
+
() => factories['io.flow.internal.v0.models.shopify_shipment_rate_unavailable'](),
|
|
19415
|
+
),
|
|
19416
|
+
}),
|
|
19417
|
+
|
|
19418
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_shipment': (): io.flow.internal.v0.models.ShopifyShipmentRateShipment => ({
|
|
19419
|
+
carrier_id: factories.string(),
|
|
19420
|
+
delivery_method_type: factories['io.flow.internal.v0.enums.shopify_delivery_method_type'](),
|
|
19421
|
+
shipping_date_time: factories.date_time_iso_8601(),
|
|
19422
|
+
'return': factories.boolean(),
|
|
19423
|
+
origin: factories['io.flow.internal.v0.models.shopify_shipping_location'](),
|
|
19424
|
+
destination: factories['io.flow.internal.v0.models.shopify_shipping_location'](),
|
|
19425
|
+
'package': factories['io.flow.internal.v0.models.shopify_shipment_rate_package'](),
|
|
19426
|
+
pickup_point: factories['io.flow.internal.v0.models.shopify_rate_pickup_point'](),
|
|
19427
|
+
customs_detail: factories['io.flow.internal.v0.models.shopify_rate_customs_detail'](),
|
|
19428
|
+
}),
|
|
19429
|
+
|
|
19430
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_shipper': (): io.flow.internal.v0.models.ShopifyShipmentRateShipper => ({
|
|
19431
|
+
account_id: factories.string(),
|
|
19432
|
+
carrier_account_reference_id: factories.string(),
|
|
19433
|
+
byoa: factories.boolean(),
|
|
19434
|
+
}),
|
|
19435
|
+
|
|
19436
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_total_charges': (): io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges => ({
|
|
19437
|
+
subtotal: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
19438
|
+
tax: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
19439
|
+
total: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
19440
|
+
}),
|
|
19441
|
+
|
|
19442
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_unavailable': (): io.flow.internal.v0.models.ShopifyShipmentRateUnavailable => ({
|
|
19443
|
+
carrier_service_id: factories.string(),
|
|
19444
|
+
|
|
19445
|
+
reasons: arrayOf(
|
|
19446
|
+
() => factories['io.flow.internal.v0.models.shopify_shipment_rate_reason'](),
|
|
19447
|
+
),
|
|
19448
|
+
}),
|
|
19449
|
+
|
|
19450
|
+
'io.flow.internal.v0.models.shopify_shipping_location': (): io.flow.internal.v0.models.ShopifyShippingLocation => ({
|
|
19451
|
+
address: factories['io.flow.internal.v0.models.shopify_address'](),
|
|
19452
|
+
contact_details: factories['io.flow.internal.v0.models.shopify_contact_details'](),
|
|
19453
|
+
}),
|
|
19454
|
+
|
|
19215
19455
|
'io.flow.internal.v0.models.shopify_shop_statistics': (): io.flow.internal.v0.models.ShopifyShopStatistics => ({
|
|
19216
19456
|
id: factories.string(),
|
|
19217
19457
|
initial_catalog_synced_at: factories.date_time_iso_8601(),
|
|
@@ -19250,12 +19490,34 @@ const factories = {
|
|
|
19250
19490
|
auto_correct: factories.boolean(),
|
|
19251
19491
|
}),
|
|
19252
19492
|
|
|
19493
|
+
'io.flow.internal.v0.models.shopify_test_order': (): io.flow.internal.v0.models.ShopifyTestOrder => ({
|
|
19494
|
+
id: factories.string(),
|
|
19495
|
+
submitted_at: factories.date_time_iso_8601(),
|
|
19496
|
+
}),
|
|
19497
|
+
|
|
19498
|
+
'io.flow.internal.v0.models.shopify_test_order_deleted': (): io.flow.internal.v0.models.ShopifyTestOrderDeleted => ({
|
|
19499
|
+
discriminator: 'shopify_test_order_deleted',
|
|
19500
|
+
event_id: factories.string(),
|
|
19501
|
+
timestamp: factories.date_time_iso_8601(),
|
|
19502
|
+
organization: factories.string(),
|
|
19503
|
+
id: factories.string(),
|
|
19504
|
+
}),
|
|
19505
|
+
|
|
19506
|
+
'io.flow.internal.v0.models.shopify_test_order_upserted': (): io.flow.internal.v0.models.ShopifyTestOrderUpserted => ({
|
|
19507
|
+
discriminator: 'shopify_test_order_upserted',
|
|
19508
|
+
event_id: factories.string(),
|
|
19509
|
+
timestamp: factories.date_time_iso_8601(),
|
|
19510
|
+
organization: factories.string(),
|
|
19511
|
+
shopify_test_order: factories['io.flow.internal.v0.models.shopify_test_order'](),
|
|
19512
|
+
}),
|
|
19513
|
+
|
|
19253
19514
|
'io.flow.internal.v0.models.shopper_breakdown': (): io.flow.internal.v0.models.ShopperBreakdown => ({
|
|
19254
19515
|
product: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19255
19516
|
product_purchase_price: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19256
19517
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19257
19518
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19258
19519
|
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19520
|
+
subtotal: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19259
19521
|
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19260
19522
|
}),
|
|
19261
19523
|
|
|
@@ -19616,6 +19878,7 @@ const factories = {
|
|
|
19616
19878
|
mor_fees: factories.integer(),
|
|
19617
19879
|
mor_foreign_exchange_fees: factories.integer(),
|
|
19618
19880
|
sp_processing_fees: factories.integer(),
|
|
19881
|
+
mor_fees_tax: factories.integer(),
|
|
19619
19882
|
}),
|
|
19620
19883
|
|
|
19621
19884
|
'io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata': (): io.flow.internal.v0.models.StripeConnectReportRecordTransferMetadata => ({
|
|
@@ -20660,7 +20923,6 @@ const factories = {
|
|
|
20660
20923
|
fulfillment_key: factories.string(),
|
|
20661
20924
|
rex_number: factories.string(),
|
|
20662
20925
|
weee_number: factories.string(),
|
|
20663
|
-
generate_commercial_invoice_only: factories.boolean(),
|
|
20664
20926
|
liability_remittance_plan: factories['io.flow.internal.v0.models.liability_remittance_plan'](),
|
|
20665
20927
|
shipment_cost_summary: factories['io.flow.internal.v0.models.shipment_cost_summary'](),
|
|
20666
20928
|
shipping_label_hop_cost_itemized_estimate: factories['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'](),
|
|
@@ -21004,8 +21266,6 @@ const factories = {
|
|
|
21004
21266
|
() => factories['io.flow.internal.v0.models.calculator_organization_settings_deleted'](),
|
|
21005
21267
|
() => factories['io.flow.internal.v0.models.carrier_account_upserted_v2'](),
|
|
21006
21268
|
() => factories['io.flow.internal.v0.models.carrier_account_deleted'](),
|
|
21007
|
-
() => factories['io.flow.internal.v0.models.label_generation_settings_upserted'](),
|
|
21008
|
-
() => factories['io.flow.internal.v0.models.label_generation_settings_deleted'](),
|
|
21009
21269
|
() => factories['io.flow.internal.v0.models.catalog_import_request'](),
|
|
21010
21270
|
() => factories['io.flow.internal.v0.models.exclusion_rule_upserted'](),
|
|
21011
21271
|
() => factories['io.flow.internal.v0.models.exclusion_rule_deleted'](),
|
|
@@ -21075,6 +21335,8 @@ const factories = {
|
|
|
21075
21335
|
() => factories['io.flow.internal.v0.models.carrier_charge_deleted'](),
|
|
21076
21336
|
() => factories['io.flow.internal.v0.models.bank_payment_order_upserted'](),
|
|
21077
21337
|
() => factories['io.flow.internal.v0.models.bank_payment_order_deleted'](),
|
|
21338
|
+
() => factories['io.flow.internal.v0.models.shipping_cost_upserted'](),
|
|
21339
|
+
() => factories['io.flow.internal.v0.models.shipping_cost_deleted'](),
|
|
21078
21340
|
() => factories['io.flow.internal.v0.models.fraud_review_upserted'](),
|
|
21079
21341
|
() => factories['io.flow.internal.v0.models.fraud_review_deleted'](),
|
|
21080
21342
|
() => factories['io.flow.internal.v0.models.fraud_pending_review_upserted'](),
|
|
@@ -21188,11 +21450,17 @@ const factories = {
|
|
|
21188
21450
|
() => factories['io.flow.internal.v0.models.paypal_refund_upserted'](),
|
|
21189
21451
|
() => factories['io.flow.internal.v0.models.paypal_dispute_upserted'](),
|
|
21190
21452
|
() => factories['io.flow.internal.v0.models.paypal_dispute_deleted'](),
|
|
21453
|
+
() => factories['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'](),
|
|
21454
|
+
() => factories['io.flow.internal.v0.models.preonboarding_sellability_result_updated'](),
|
|
21455
|
+
() => factories['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'](),
|
|
21191
21456
|
() => factories['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'](),
|
|
21192
21457
|
() => factories['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'](),
|
|
21193
21458
|
() => factories['io.flow.internal.v0.models.product_restriction_state_inserted'](),
|
|
21194
21459
|
() => factories['io.flow.internal.v0.models.product_restriction_state_updated'](),
|
|
21195
21460
|
() => factories['io.flow.internal.v0.models.product_restriction_state_deleted'](),
|
|
21461
|
+
() => factories['io.flow.internal.v0.models.product_sellability_result_inserted'](),
|
|
21462
|
+
() => factories['io.flow.internal.v0.models.product_sellability_result_updated'](),
|
|
21463
|
+
() => factories['io.flow.internal.v0.models.product_sellability_result_deleted'](),
|
|
21196
21464
|
() => factories['io.flow.internal.v0.models.order_rates_published_v3'](),
|
|
21197
21465
|
() => factories['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'](),
|
|
21198
21466
|
() => factories['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'](),
|
|
@@ -21252,6 +21520,8 @@ const factories = {
|
|
|
21252
21520
|
() => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'](),
|
|
21253
21521
|
() => factories['io.flow.internal.v0.models.shopify_order_transaction_upserted'](),
|
|
21254
21522
|
() => factories['io.flow.internal.v0.models.shopify_order_transaction_deleted'](),
|
|
21523
|
+
() => factories['io.flow.internal.v0.models.shopify_test_order_upserted'](),
|
|
21524
|
+
() => factories['io.flow.internal.v0.models.shopify_test_order_deleted'](),
|
|
21255
21525
|
() => factories['io.flow.internal.v0.models.shopify_product_create_upserted'](),
|
|
21256
21526
|
() => factories['io.flow.internal.v0.models.shopify_product_create_deleted'](),
|
|
21257
21527
|
() => factories['io.flow.internal.v0.models.shopify_product_update_upserted'](),
|
|
@@ -21288,22 +21558,10 @@ const factories = {
|
|
|
21288
21558
|
() => factories['io.flow.internal.v0.models.stripe_connect_report_record_deleted'](),
|
|
21289
21559
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](),
|
|
21290
21560
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](),
|
|
21291
|
-
() => factories['io.flow.internal.v0.models.anirban_item_upserted'](),
|
|
21292
|
-
() => factories['io.flow.internal.v0.models.anirban_item_deleted'](),
|
|
21293
|
-
() => factories['io.flow.internal.v0.models.sarvesh_item_upserted'](),
|
|
21294
|
-
() => factories['io.flow.internal.v0.models.sarvesh_item_deleted'](),
|
|
21295
|
-
() => factories['io.flow.internal.v0.models.hosein_item_upserted'](),
|
|
21296
|
-
() => factories['io.flow.internal.v0.models.hosein_item_deleted'](),
|
|
21297
|
-
() => factories['io.flow.internal.v0.models.niall_item_upserted'](),
|
|
21298
|
-
() => factories['io.flow.internal.v0.models.niall_item_deleted'](),
|
|
21299
|
-
() => factories['io.flow.internal.v0.models.rohan_item_upserted'](),
|
|
21300
|
-
() => factories['io.flow.internal.v0.models.rohan_item_deleted'](),
|
|
21301
|
-
() => factories['io.flow.internal.v0.models.aldo_item_upserted'](),
|
|
21302
|
-
() => factories['io.flow.internal.v0.models.aldo_item_deleted'](),
|
|
21303
|
-
() => factories['io.flow.internal.v0.models.ansh_item_upserted'](),
|
|
21304
|
-
() => factories['io.flow.internal.v0.models.ansh_item_deleted'](),
|
|
21305
21561
|
() => factories['io.flow.internal.v0.models.gabriel_item_upserted'](),
|
|
21306
21562
|
() => factories['io.flow.internal.v0.models.gabriel_item_deleted'](),
|
|
21563
|
+
() => factories['io.flow.internal.v0.models.chenglin_item_upserted'](),
|
|
21564
|
+
() => factories['io.flow.internal.v0.models.chenglin_item_deleted'](),
|
|
21307
21565
|
() => factories['io.flow.internal.v0.models.tracking_processing_error_upserted'](),
|
|
21308
21566
|
() => factories['io.flow.internal.v0.models.tracking_processing_error_deleted'](),
|
|
21309
21567
|
() => factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2'](),
|
|
@@ -21751,6 +22009,8 @@ const factories = {
|
|
|
21751
22009
|
() => factories['io.flow.internal.v0.models.accounting_return_metadata'](),
|
|
21752
22010
|
() => factories['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'](),
|
|
21753
22011
|
() => factories['io.flow.internal.v0.models.channel_transaction_trigger_metadata'](),
|
|
22012
|
+
() => factories['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'](),
|
|
22013
|
+
() => factories['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'](),
|
|
21754
22014
|
]);
|
|
21755
22015
|
|
|
21756
22016
|
return f();
|
|
@@ -22063,6 +22323,7 @@ const factories = {
|
|
|
22063
22323
|
'notification_requiring_crossdock',
|
|
22064
22324
|
'flow_simulation_sync',
|
|
22065
22325
|
'autogenerated',
|
|
22326
|
+
'legacy_shopify_graphql_server',
|
|
22066
22327
|
]),
|
|
22067
22328
|
|
|
22068
22329
|
'io.flow.label.v0.enums.label_trigger_method': (): io.flow.label.v0.enums.LabelTriggerMethod => faker.helpers.arrayElement(['autogenerated', 'on_demand']),
|
|
@@ -22427,7 +22688,6 @@ const factories = {
|
|
|
22427
22688
|
beneficiary_details: factories['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
22428
22689
|
other_trade_sector: factories.string(),
|
|
22429
22690
|
center_contact: factories['io.flow.merchant.onboarding.v0.models.operations_contact'](),
|
|
22430
|
-
center_address: factories['io.flow.common.v0.models.address'](),
|
|
22431
22691
|
average_order_weight: factories.decimal(),
|
|
22432
22692
|
average_order_weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
22433
22693
|
package_dimensions: arrayOf(() => factories['io.flow.common.v0.models.dimension']()),
|
|
@@ -22455,7 +22715,6 @@ const factories = {
|
|
|
22455
22715
|
beneficiary_details: factories['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
22456
22716
|
other_trade_sector: factories.string(),
|
|
22457
22717
|
center_contact: factories['io.flow.merchant.onboarding.v0.models.operations_contact'](),
|
|
22458
|
-
center_address: factories['io.flow.common.v0.models.address'](),
|
|
22459
22718
|
average_order_weight: factories.decimal(),
|
|
22460
22719
|
average_order_weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
22461
22720
|
package_dimensions: arrayOf(() => factories['io.flow.common.v0.models.dimension']()),
|
|
@@ -22556,6 +22815,7 @@ const factories = {
|
|
|
22556
22815
|
company: factories.string(),
|
|
22557
22816
|
email: factories.string(),
|
|
22558
22817
|
phone: factories.string(),
|
|
22818
|
+
address: factories['io.flow.common.v0.models.address'](),
|
|
22559
22819
|
}),
|
|
22560
22820
|
|
|
22561
22821
|
'io.flow.merchant.onboarding.v0.models.shop': (): io.flow.merchant.onboarding.v0.models.Shop => ({
|
|
@@ -22802,7 +23062,7 @@ const factories = {
|
|
|
22802
23062
|
'tip',
|
|
22803
23063
|
]),
|
|
22804
23064
|
|
|
22805
|
-
'io.flow.order.price.v0.enums.order_price_fee_type': (): io.flow.order.price.v0.enums.OrderPriceFeeType => faker.helpers.arrayElement(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product']),
|
|
23065
|
+
'io.flow.order.price.v0.enums.order_price_fee_type': (): io.flow.order.price.v0.enums.OrderPriceFeeType => faker.helpers.arrayElement(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product', 'mor_tax']),
|
|
22806
23066
|
|
|
22807
23067
|
'io.flow.order.price.v0.models.order_price_detail': (): io.flow.order.price.v0.models.OrderPriceDetail => ({
|
|
22808
23068
|
key: factories['io.flow.order.price.v0.enums.order_price_detail_key'](),
|
|
@@ -24348,7 +24608,7 @@ const factories = {
|
|
|
24348
24608
|
'unknown',
|
|
24349
24609
|
]),
|
|
24350
24610
|
|
|
24351
|
-
'io.flow.payment.v0.enums.payment_fee_type': (): io.flow.payment.v0.enums.PaymentFeeType => faker.helpers.arrayElement(['fx', 'mor', 'sp']),
|
|
24611
|
+
'io.flow.payment.v0.enums.payment_fee_type': (): io.flow.payment.v0.enums.PaymentFeeType => faker.helpers.arrayElement(['fx', 'mor', 'sp', 'mor_tax']),
|
|
24352
24612
|
'io.flow.payment.v0.enums.payment_source_confirmation_action_type': (): io.flow.payment.v0.enums.PaymentSourceConfirmationActionType => faker.helpers.arrayElement(['cvv', 'billing_address', 'number']),
|
|
24353
24613
|
'io.flow.payment.v0.enums.refund_decline_code': (): io.flow.payment.v0.enums.RefundDeclineCode => faker.helpers.arrayElement(['expired', 'insufficient_funds', 'unknown']),
|
|
24354
24614
|
|
|
@@ -26252,6 +26512,12 @@ const factories = {
|
|
|
26252
26512
|
name: factories.string(),
|
|
26253
26513
|
}),
|
|
26254
26514
|
|
|
26515
|
+
'io.flow.ratecard.v0.models.ratecard_data': (): io.flow.ratecard.v0.models.RatecardData => ({
|
|
26516
|
+
dhlParcelDistributionCenter: factories.string(),
|
|
26517
|
+
glbeRatecardMetadataLaneIdentifier: factories.string(),
|
|
26518
|
+
pickupCenter: factories.string(),
|
|
26519
|
+
}),
|
|
26520
|
+
|
|
26255
26521
|
'io.flow.ratecard.v0.models.ratecard_estimate_form': (): io.flow.ratecard.v0.models.RatecardEstimateForm => ({
|
|
26256
26522
|
origin_address: factories['io.flow.common.v0.models.address'](),
|
|
26257
26523
|
destination_address: factories['io.flow.common.v0.models.address'](),
|
|
@@ -26344,7 +26610,7 @@ const factories = {
|
|
|
26344
26610
|
glbe_shipping_method_id: factories.string(),
|
|
26345
26611
|
glbe_proposition_name: factories.string(),
|
|
26346
26612
|
channel_revenue_share_percentage: factories.decimal(),
|
|
26347
|
-
data:
|
|
26613
|
+
data: factories['io.flow.ratecard.v0.models.ratecard_data'](),
|
|
26348
26614
|
}),
|
|
26349
26615
|
|
|
26350
26616
|
'io.flow.ratecard.v0.models.ratecard_lane': (): io.flow.ratecard.v0.models.RatecardLane => ({
|
|
@@ -26761,6 +27027,11 @@ const factories = {
|
|
|
26761
27027
|
needs_action_attributes: arrayOf(
|
|
26762
27028
|
() => factories['io.flow.restrictions.v0.models.needs_action_attributes'](),
|
|
26763
27029
|
),
|
|
27030
|
+
|
|
27031
|
+
fingerprint: factories.string(),
|
|
27032
|
+
restriction_created_at: factories.date_time_iso_8601(),
|
|
27033
|
+
first_reviewed_at: factories.date_time_iso_8601(),
|
|
27034
|
+
seconds_to_first_review: factories.long(),
|
|
26764
27035
|
}),
|
|
26765
27036
|
|
|
26766
27037
|
'io.flow.restrictions.v0.models.reasons_per_region': (): io.flow.restrictions.v0.models.ReasonsPerRegion => ({
|
|
@@ -26887,7 +27158,16 @@ const factories = {
|
|
|
26887
27158
|
]),
|
|
26888
27159
|
|
|
26889
27160
|
'io.flow.sellability.v0.enums.sellability_request_status': (): io.flow.sellability.v0.enums.SellabilityRequestStatus => faker.helpers.arrayElement(['commit']),
|
|
26890
|
-
|
|
27161
|
+
|
|
27162
|
+
'io.flow.sellability.v0.enums.sellability_result_error_code': (): io.flow.sellability.v0.enums.SellabilityResultErrorCode => faker.helpers.arrayElement([
|
|
27163
|
+
'insufficient_details',
|
|
27164
|
+
'ineligible_category',
|
|
27165
|
+
'wait_for_high_fidelity',
|
|
27166
|
+
'external_service_unavailable',
|
|
27167
|
+
'generic_error',
|
|
27168
|
+
'catalog_processing_threshold',
|
|
27169
|
+
]),
|
|
27170
|
+
|
|
26891
27171
|
'io.flow.sellability.v0.enums.sellability_result_status': (): io.flow.sellability.v0.enums.SellabilityResultStatus => faker.helpers.arrayElement(['in_review', 'succeeded', 'failed']),
|
|
26892
27172
|
'io.flow.sellability.v0.enums.sellability_screening_mode': (): io.flow.sellability.v0.enums.SellabilityScreeningMode => faker.helpers.arrayElement(['pre_onboarding', 'default_on', 'active']),
|
|
26893
27173
|
|
|
@@ -26916,6 +27196,7 @@ const factories = {
|
|
|
26916
27196
|
}),
|
|
26917
27197
|
|
|
26918
27198
|
'io.flow.sellability.v0.models.product_sellability_result': (): io.flow.sellability.v0.models.ProductSellabilityResult => ({
|
|
27199
|
+
id: factories.string(),
|
|
26919
27200
|
merchant_id: factories.string(),
|
|
26920
27201
|
product_id: factories.string(),
|
|
26921
27202
|
|
|
@@ -26923,11 +27204,16 @@ const factories = {
|
|
|
26923
27204
|
() => factories['io.flow.sellability.v0.models.sellability_restricted_region'](),
|
|
26924
27205
|
),
|
|
26925
27206
|
|
|
27207
|
+
restricted_reasons: arrayOf(
|
|
27208
|
+
() => factories['io.flow.sellability.v0.models.sellability_restricted_reason'](),
|
|
27209
|
+
),
|
|
27210
|
+
|
|
26926
27211
|
needs_action_attributes: arrayOf(
|
|
26927
27212
|
() => factories['io.flow.sellability.v0.models.sellability_needs_action_attributes'](),
|
|
26928
27213
|
),
|
|
26929
27214
|
|
|
26930
27215
|
request_id: factories.string(),
|
|
27216
|
+
hs6_code: factories.string(),
|
|
26931
27217
|
}),
|
|
26932
27218
|
|
|
26933
27219
|
'io.flow.sellability.v0.models.sellability_error': (): io.flow.sellability.v0.models.SellabilityError => ({
|
|
@@ -26939,9 +27225,16 @@ const factories = {
|
|
|
26939
27225
|
'io.flow.sellability.v0.models.sellability_needs_action_attributes': (): io.flow.sellability.v0.models.SellabilityNeedsActionAttributes => ({
|
|
26940
27226
|
reason_code: factories.string(),
|
|
26941
27227
|
category_metafield_handles: arrayOf(() => factories.string()),
|
|
27228
|
+
category_metafield_ids: arrayOf(() => factories.string()),
|
|
26942
27229
|
require_msds: factories.boolean(),
|
|
26943
27230
|
}),
|
|
26944
27231
|
|
|
27232
|
+
'io.flow.sellability.v0.models.sellability_reason_with_regions': (): io.flow.sellability.v0.models.SellabilityReasonWithRegions => ({
|
|
27233
|
+
reason: factories.string(),
|
|
27234
|
+
regions: arrayOf(() => factories.string()),
|
|
27235
|
+
review_status: factories.string(),
|
|
27236
|
+
}),
|
|
27237
|
+
|
|
26945
27238
|
'io.flow.sellability.v0.models.sellability_region_result': (): io.flow.sellability.v0.models.SellabilityRegionResult => ({
|
|
26946
27239
|
type: factories['io.flow.sellability.v0.enums.rule_effect_type'](),
|
|
26947
27240
|
regions: arrayOf(() => factories.string()),
|
|
@@ -26952,17 +27245,22 @@ const factories = {
|
|
|
26952
27245
|
reasons: arrayOf(() => factories.string()),
|
|
26953
27246
|
}),
|
|
26954
27247
|
|
|
26955
|
-
'io.flow.sellability.v0.models.
|
|
27248
|
+
'io.flow.sellability.v0.models.sellability_restricted_reason': (): io.flow.sellability.v0.models.SellabilityRestrictedReason => ({
|
|
26956
27249
|
type: factories['io.flow.sellability.v0.enums.rule_effect_type'](),
|
|
26957
27250
|
|
|
26958
|
-
|
|
26959
|
-
() => factories['io.flow.sellability.v0.models.
|
|
27251
|
+
reasons_with_regions: arrayOf(
|
|
27252
|
+
() => factories['io.flow.sellability.v0.models.sellability_reason_with_regions'](),
|
|
26960
27253
|
),
|
|
26961
27254
|
}),
|
|
26962
27255
|
|
|
27256
|
+
'io.flow.sellability.v0.models.sellability_restricted_region': (): io.flow.sellability.v0.models.SellabilityRestrictedRegion => ({
|
|
27257
|
+
type: factories['io.flow.sellability.v0.enums.rule_effect_type'](),
|
|
27258
|
+
regions: arrayOf(() => factories.string()),
|
|
27259
|
+
}),
|
|
27260
|
+
|
|
26963
27261
|
'io.flow.sellability.v0.models.sellability_screening': (): io.flow.sellability.v0.models.SellabilityScreening => ({
|
|
26964
27262
|
discriminator: 'sellability_screening',
|
|
26965
|
-
|
|
27263
|
+
product_sellability_result: factories['io.flow.sellability.v0.models.product_sellability_result'](),
|
|
26966
27264
|
request_id: factories.string(),
|
|
26967
27265
|
status: factories['io.flow.sellability.v0.enums.sellability_result_status'](),
|
|
26968
27266
|
error_code: factories['io.flow.sellability.v0.enums.sellability_result_error_code'](),
|
|
@@ -28488,6 +28786,22 @@ const factories = {
|
|
|
28488
28786
|
shopify_product_taxonomy_attribute_value: factories['io.flow.shopify.markets.internal.v0.models.shopify_product_taxonomy_attribute_value'](),
|
|
28489
28787
|
}),
|
|
28490
28788
|
|
|
28789
|
+
'io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted => ({
|
|
28790
|
+
discriminator: 'shopify_test_order_deleted',
|
|
28791
|
+
event_id: factories.string(),
|
|
28792
|
+
timestamp: factories.date_time_iso_8601(),
|
|
28793
|
+
organization: factories.string(),
|
|
28794
|
+
id: factories.string(),
|
|
28795
|
+
}),
|
|
28796
|
+
|
|
28797
|
+
'io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted => ({
|
|
28798
|
+
discriminator: 'shopify_test_order_upserted',
|
|
28799
|
+
event_id: factories.string(),
|
|
28800
|
+
timestamp: factories.date_time_iso_8601(),
|
|
28801
|
+
organization: factories.string(),
|
|
28802
|
+
shopify_test_order: factories['io.flow.shopify.markets.internal.v0.models.shopify_test_order'](),
|
|
28803
|
+
}),
|
|
28804
|
+
|
|
28491
28805
|
'io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_event': (): io.flow.shopify.markets.internal.event.v0.unions.ShopifyMarketsInternalEvent => {
|
|
28492
28806
|
const f = faker.helpers.arrayElement([
|
|
28493
28807
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_upserted'](),
|
|
@@ -28519,6 +28833,8 @@ const factories = {
|
|
|
28519
28833
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'](),
|
|
28520
28834
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted'](),
|
|
28521
28835
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'](),
|
|
28836
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'](),
|
|
28837
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'](),
|
|
28522
28838
|
]);
|
|
28523
28839
|
|
|
28524
28840
|
return f();
|
|
@@ -28883,6 +29199,11 @@ const factories = {
|
|
|
28883
29199
|
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
28884
29200
|
}),
|
|
28885
29201
|
|
|
29202
|
+
'io.flow.shopify.markets.internal.v0.models.shopify_test_order': (): io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder => ({
|
|
29203
|
+
id: factories.string(),
|
|
29204
|
+
submitted_at: factories.date_time_iso_8601(),
|
|
29205
|
+
}),
|
|
29206
|
+
|
|
28886
29207
|
'io.flow.shopify.markets.internal.v0.models.third_party_logistics_partner': (): io.flow.shopify.markets.internal.v0.models.ThirdPartyLogisticsPartner => ({
|
|
28887
29208
|
warehouse_address: factories['io.flow.common.v0.models.billing_address'](),
|
|
28888
29209
|
warehouse_url: factories.string(),
|
|
@@ -29405,6 +29726,7 @@ const factories = {
|
|
|
29405
29726
|
),
|
|
29406
29727
|
|
|
29407
29728
|
taxes_included: factories.boolean(),
|
|
29729
|
+
test: factories.boolean(),
|
|
29408
29730
|
token: factories.string(),
|
|
29409
29731
|
total_weight: factories.decimal(),
|
|
29410
29732
|
updated_at: factories.date_time_iso_8601(),
|
|
@@ -32299,6 +32621,7 @@ export const makeAccountContact = () => factories['io.flow.internal.v0.models.ac
|
|
|
32299
32621
|
export const makeAccountContactDeleted = () => factories['io.flow.internal.v0.models.account_contact_deleted']();
|
|
32300
32622
|
export const makeAccountContactForm = () => factories['io.flow.internal.v0.models.account_contact_form']();
|
|
32301
32623
|
export const makeAccountContactUpserted = () => factories['io.flow.internal.v0.models.account_contact_upserted']();
|
|
32624
|
+
export const makeAccountCurrencyFilter = () => factories['io.flow.internal.v0.enums.account_currency_filter']();
|
|
32302
32625
|
export const makeAccountDeletedV2 = () => factories['io.flow.internal.v0.models.account_deleted_v2']();
|
|
32303
32626
|
export const makeAccountDepositRule = () => factories['io.flow.internal.v0.models.account_deposit_rule']();
|
|
32304
32627
|
export const makeAccountDepositRuleForm = () => factories['io.flow.internal.v0.models.account_deposit_rule_form']();
|
|
@@ -32386,25 +32709,13 @@ export const makeAfterpayRefund = () => factories['io.flow.internal.v0.models.af
|
|
|
32386
32709
|
export const makeAfterpayRefundDeleted = () => factories['io.flow.internal.v0.models.afterpay_refund_deleted']();
|
|
32387
32710
|
export const makeAfterpayRefundUpserted = () => factories['io.flow.internal.v0.models.afterpay_refund_upserted']();
|
|
32388
32711
|
export const makeAftershipWebhook = () => factories['io.flow.internal.v0.models.aftership_webhook']();
|
|
32389
|
-
export const makeAldoItem = () => factories['io.flow.internal.v0.models.aldo_item']();
|
|
32390
|
-
export const makeAldoItemDeleted = () => factories['io.flow.internal.v0.models.aldo_item_deleted']();
|
|
32391
|
-
export const makeAldoItemForm = () => factories['io.flow.internal.v0.models.aldo_item_form']();
|
|
32392
|
-
export const makeAldoItemType = () => factories['io.flow.internal.v0.enums.aldo_item_type']();
|
|
32393
|
-
export const makeAldoItemUpserted = () => factories['io.flow.internal.v0.models.aldo_item_upserted']();
|
|
32394
32712
|
export const makeAllItemsExport = () => factories['io.flow.internal.v0.models.all_items_export']();
|
|
32395
32713
|
export const makeAllOrganizationsMembership = () => factories['io.flow.internal.v0.models.all_organizations_membership']();
|
|
32396
32714
|
export const makeAllocationItemReference = () => factories['io.flow.internal.v0.models.allocation_item_reference']();
|
|
32397
32715
|
export const makeAllowedLabels = () => factories['io.flow.internal.v0.models.allowed_labels']();
|
|
32398
|
-
export const
|
|
32399
|
-
export const
|
|
32400
|
-
export const
|
|
32401
|
-
export const makeAnirbanItemType = () => factories['io.flow.internal.v0.enums.anirban_item_type']();
|
|
32402
|
-
export const makeAnirbanItemUpserted = () => factories['io.flow.internal.v0.models.anirban_item_upserted']();
|
|
32403
|
-
export const makeAnshItem = () => factories['io.flow.internal.v0.models.ansh_item']();
|
|
32404
|
-
export const makeAnshItemDeleted = () => factories['io.flow.internal.v0.models.ansh_item_deleted']();
|
|
32405
|
-
export const makeAnshItemForm = () => factories['io.flow.internal.v0.models.ansh_item_form']();
|
|
32406
|
-
export const makeAnshItemType = () => factories['io.flow.internal.v0.enums.ansh_item_type']();
|
|
32407
|
-
export const makeAnshItemUpserted = () => factories['io.flow.internal.v0.models.ansh_item_upserted']();
|
|
32716
|
+
export const makeAmruthaItem = () => factories['io.flow.internal.v0.models.amrutha_item']();
|
|
32717
|
+
export const makeAmruthaItemForm = () => factories['io.flow.internal.v0.models.amrutha_item_form']();
|
|
32718
|
+
export const makeAmruthaItemType = () => factories['io.flow.internal.v0.enums.amrutha_item_type']();
|
|
32408
32719
|
export const makeAnyDangerousGoods = () => factories['io.flow.internal.v0.enums.any_dangerous_goods']();
|
|
32409
32720
|
export const makeApiCallReferenceId = () => factories['io.flow.internal.v0.enums.api_call_reference_id']();
|
|
32410
32721
|
export const makeApplePayAuthorizationPayload = () => factories['io.flow.internal.v0.models.apple_pay_authorization_payload']();
|
|
@@ -32427,6 +32738,10 @@ export const makeAuthorizedOrderCharge = () => factories['io.flow.internal.v0.un
|
|
|
32427
32738
|
export const makeAuthorizedShippingCharge = () => factories['io.flow.internal.v0.models.authorized_shipping_charge']();
|
|
32428
32739
|
export const makeAutoRestrictRule = () => factories['io.flow.internal.v0.enums.auto_restrict_rule']();
|
|
32429
32740
|
export const makeAutoReviewCriteria = () => factories['io.flow.internal.v0.models.auto_review_criteria']();
|
|
32741
|
+
export const makeB2BFeeMorTaxTriggerMetadata = () => factories['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata']();
|
|
32742
|
+
export const makeB2BFeeMorTaxTriggerType = () => factories['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type']();
|
|
32743
|
+
export const makeB2BFeeShippingTaxTriggerMetadata = () => factories['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata']();
|
|
32744
|
+
export const makeB2BFeeShippingTaxTriggerType = () => factories['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type']();
|
|
32430
32745
|
export const makeB2BTaxLedger = () => factories['io.flow.internal.v0.models.b2b_tax_ledger']();
|
|
32431
32746
|
export const makeB2BTaxLedgerDocumentType = () => factories['io.flow.internal.v0.enums.b2b_tax_ledger_document_type']();
|
|
32432
32747
|
export const makeB2BTaxLedgerForm = () => factories['io.flow.internal.v0.models.b2b_tax_ledger_form']();
|
|
@@ -32488,6 +32803,9 @@ export const makeBitpayAccountPutForm = () => factories['io.flow.internal.v0.mod
|
|
|
32488
32803
|
export const makeBitpayAuthentication = () => factories['io.flow.internal.v0.models.bitpay_authentication']();
|
|
32489
32804
|
export const makeBitpayAuthenticationDataReference = () => factories['io.flow.internal.v0.models.bitpay_authentication_data_reference']();
|
|
32490
32805
|
export const makeBitpayAuthenticationForm = () => factories['io.flow.internal.v0.models.bitpay_authentication_form']();
|
|
32806
|
+
export const makeBojanaItem = () => factories['io.flow.internal.v0.models.bojana_item']();
|
|
32807
|
+
export const makeBojanaItemForm = () => factories['io.flow.internal.v0.models.bojana_item_form']();
|
|
32808
|
+
export const makeBojanaItemType = () => factories['io.flow.internal.v0.enums.bojana_item_type']();
|
|
32491
32809
|
export const makeBooleanFeatureDefaultValue = () => factories['io.flow.internal.v0.models.boolean_feature_default_value']();
|
|
32492
32810
|
export const makeBooleanFeatureRule = () => factories['io.flow.internal.v0.models.boolean_feature_rule']();
|
|
32493
32811
|
export const makeBooleanFeatureRuleForm = () => factories['io.flow.internal.v0.models.boolean_feature_rule_form']();
|
|
@@ -32659,6 +32977,11 @@ export const makeCheckoutSettings = () => factories['io.flow.internal.v0.models.
|
|
|
32659
32977
|
export const makeCheckoutShippingMethodPromptBehavior = () => factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior']();
|
|
32660
32978
|
export const makeCheckoutUrl = () => factories['io.flow.internal.v0.models.checkout_url']();
|
|
32661
32979
|
export const makeCheckoutUrlType = () => factories['io.flow.internal.v0.enums.checkout_url_type']();
|
|
32980
|
+
export const makeChenglinItem = () => factories['io.flow.internal.v0.models.chenglin_item']();
|
|
32981
|
+
export const makeChenglinItemDeleted = () => factories['io.flow.internal.v0.models.chenglin_item_deleted']();
|
|
32982
|
+
export const makeChenglinItemForm = () => factories['io.flow.internal.v0.models.chenglin_item_form']();
|
|
32983
|
+
export const makeChenglinItemType = () => factories['io.flow.internal.v0.enums.chenglin_item_type']();
|
|
32984
|
+
export const makeChenglinItemUpserted = () => factories['io.flow.internal.v0.models.chenglin_item_upserted']();
|
|
32662
32985
|
export const makeCipher = () => factories['io.flow.internal.v0.models.cipher']();
|
|
32663
32986
|
export const makeCipherForm = () => factories['io.flow.internal.v0.models.cipher_form']();
|
|
32664
32987
|
export const makeCipherReference = () => factories['io.flow.internal.v0.models.cipher_reference']();
|
|
@@ -32692,6 +33015,7 @@ export const makeClassificationProductSummaryPage = () => factories['io.flow.int
|
|
|
32692
33015
|
export const makeClassificationRequeueRequest = () => factories['io.flow.internal.v0.models.classification_requeue_request']();
|
|
32693
33016
|
export const makeClassificationResponse = () => factories['io.flow.internal.v0.unions.classification_response']();
|
|
32694
33017
|
export const makeClassificationScope = () => factories['io.flow.internal.v0.enums.classification_scope']();
|
|
33018
|
+
export const makeClassificationSource = () => factories['io.flow.internal.v0.enums.classification_source']();
|
|
32695
33019
|
export const makeClassificationStatistics = () => factories['io.flow.internal.v0.models.classification_statistics']();
|
|
32696
33020
|
export const makeClassificationSummaryReportPayload = () => factories['io.flow.internal.v0.models.classification_summary_report_payload']();
|
|
32697
33021
|
export const makeClassificationTaxonomy = () => factories['io.flow.internal.v0.unions.classification_taxonomy']();
|
|
@@ -33036,6 +33360,7 @@ export const makeGeRevenueShareTransaction = () => factories['io.flow.internal.v
|
|
|
33036
33360
|
export const makeGeRevenueShareTransactionType = () => factories['io.flow.internal.v0.enums.ge_revenue_share_transaction_type']();
|
|
33037
33361
|
export const makeGenerateLoad = () => factories['io.flow.internal.v0.unions.generate_load']();
|
|
33038
33362
|
export const makeGenerateLoadMultipleOrgs = () => factories['io.flow.internal.v0.models.generate_load_multiple_orgs']();
|
|
33363
|
+
export const makeGenerateLoadRate = () => factories['io.flow.internal.v0.models.generate_load_rate']();
|
|
33039
33364
|
export const makeGenerateLoadSingleOrg = () => factories['io.flow.internal.v0.models.generate_load_single_org']();
|
|
33040
33365
|
export const makeGenericValidationError = () => factories['io.flow.internal.v0.models.generic_validation_error']();
|
|
33041
33366
|
export const makeGiftCard = () => factories['io.flow.internal.v0.models.gift_card']();
|
|
@@ -33065,11 +33390,6 @@ export const makeHarmonizationThresholdForm = () => factories['io.flow.internal.
|
|
|
33065
33390
|
export const makeHarmonizationUnclassifiedStatistics = () => factories['io.flow.internal.v0.models.harmonization_unclassified_statistics']();
|
|
33066
33391
|
export const makeHarmonizeFullyRequestV2 = () => factories['io.flow.internal.v0.models.harmonize_fully_request_v2']();
|
|
33067
33392
|
export const makeHarmonizedItemsHs6Export = () => factories['io.flow.internal.v0.models.harmonized_items_hs6_export']();
|
|
33068
|
-
export const makeHoseinItem = () => factories['io.flow.internal.v0.models.hosein_item']();
|
|
33069
|
-
export const makeHoseinItemDeleted = () => factories['io.flow.internal.v0.models.hosein_item_deleted']();
|
|
33070
|
-
export const makeHoseinItemForm = () => factories['io.flow.internal.v0.models.hosein_item_form']();
|
|
33071
|
-
export const makeHoseinItemType = () => factories['io.flow.internal.v0.enums.hosein_item_type']();
|
|
33072
|
-
export const makeHoseinItemUpserted = () => factories['io.flow.internal.v0.models.hosein_item_upserted']();
|
|
33073
33393
|
export const makeHs6 = () => factories['io.flow.internal.v0.models.hs6']();
|
|
33074
33394
|
export const makeHs6CodeSource = () => factories['io.flow.internal.v0.enums.hs6_code_source']();
|
|
33075
33395
|
export const makeHs6Metadata = () => factories['io.flow.internal.v0.models.hs6_metadata']();
|
|
@@ -33143,7 +33463,6 @@ export const makeItemSalesMarginVersion = () => factories['io.flow.internal.v0.m
|
|
|
33143
33463
|
export const makeItemSummary = () => factories['io.flow.internal.v0.models.item_summary']();
|
|
33144
33464
|
export const makeItemType = () => factories['io.flow.internal.v0.enums.item_type']();
|
|
33145
33465
|
export const makeItemValuesForm = () => factories['io.flow.internal.v0.models.item_values_form']();
|
|
33146
|
-
export const makeJeanDemoItem = () => factories['io.flow.internal.v0.models.jean_demo_item']();
|
|
33147
33466
|
export const makeJournal = () => factories['io.flow.internal.v0.models.journal']();
|
|
33148
33467
|
export const makeJournalFailure = () => factories['io.flow.internal.v0.models.journal_failure']();
|
|
33149
33468
|
export const makeJournalOperation = () => factories['io.flow.internal.v0.enums.journal_operation']();
|
|
@@ -33170,10 +33489,6 @@ export const makeLabelCreationStatus = () => factories['io.flow.internal.v0.enum
|
|
|
33170
33489
|
export const makeLabelDestination = () => factories['io.flow.internal.v0.models.label_destination']();
|
|
33171
33490
|
export const makeLabelEventMedium = () => factories['io.flow.internal.v0.enums.label_event_medium']();
|
|
33172
33491
|
export const makeLabelEventSource = () => factories['io.flow.internal.v0.enums.label_event_source']();
|
|
33173
|
-
export const makeLabelGenerationSettings = () => factories['io.flow.internal.v0.models.label_generation_settings']();
|
|
33174
|
-
export const makeLabelGenerationSettingsDeleted = () => factories['io.flow.internal.v0.models.label_generation_settings_deleted']();
|
|
33175
|
-
export const makeLabelGenerationSettingsForm = () => factories['io.flow.internal.v0.models.label_generation_settings_form']();
|
|
33176
|
-
export const makeLabelGenerationSettingsUpserted = () => factories['io.flow.internal.v0.models.label_generation_settings_upserted']();
|
|
33177
33492
|
export const makeLabelInvoiceRequest = () => factories['io.flow.internal.v0.models.label_invoice_request']();
|
|
33178
33493
|
export const makeLabelInvoiceRequestDeleted = () => factories['io.flow.internal.v0.models.label_invoice_request_deleted']();
|
|
33179
33494
|
export const makeLabelInvoiceRequestUpserted = () => factories['io.flow.internal.v0.models.label_invoice_request_upserted']();
|
|
@@ -33281,11 +33596,6 @@ export const makeMixedBagWeight = () => factories['io.flow.internal.v0.enums.mix
|
|
|
33281
33596
|
export const makeNatureOfSale = () => factories['io.flow.internal.v0.enums.nature_of_sale']();
|
|
33282
33597
|
export const makeNegativeDebitMetrics = () => factories['io.flow.internal.v0.models.negative_debit_metrics']();
|
|
33283
33598
|
export const makeNextBillingStatement = () => factories['io.flow.internal.v0.models.next_billing_statement']();
|
|
33284
|
-
export const makeNiallItem = () => factories['io.flow.internal.v0.models.niall_item']();
|
|
33285
|
-
export const makeNiallItemDeleted = () => factories['io.flow.internal.v0.models.niall_item_deleted']();
|
|
33286
|
-
export const makeNiallItemForm = () => factories['io.flow.internal.v0.models.niall_item_form']();
|
|
33287
|
-
export const makeNiallItemType = () => factories['io.flow.internal.v0.enums.niall_item_type']();
|
|
33288
|
-
export const makeNiallItemUpserted = () => factories['io.flow.internal.v0.models.niall_item_upserted']();
|
|
33289
33599
|
export const makeNoCalculatedTaxAmount = () => factories['io.flow.internal.v0.models.no_calculated_tax_amount']();
|
|
33290
33600
|
export const makeNoClassificationForm = () => factories['io.flow.internal.v0.models.no_classification_form']();
|
|
33291
33601
|
export const makeNoLiabilityReasonCode = () => factories['io.flow.internal.v0.enums.no_liability_reason_code']();
|
|
@@ -33401,6 +33711,9 @@ export const makeOrganizationPaymentSettingForm = () => factories['io.flow.inter
|
|
|
33401
33711
|
export const makeOrganizationPaymentSettingUpserted = () => factories['io.flow.internal.v0.models.organization_payment_setting_upserted']();
|
|
33402
33712
|
export const makeOrganizationPaymentSettingVersion = () => factories['io.flow.internal.v0.models.organization_payment_setting_version']();
|
|
33403
33713
|
export const makeOrganizationPaymentStatus = () => factories['io.flow.internal.v0.enums.organization_payment_status']();
|
|
33714
|
+
export const makeOrganizationPromotion = () => factories['io.flow.internal.v0.models.organization_promotion']();
|
|
33715
|
+
export const makeOrganizationPromotionStatus = () => factories['io.flow.internal.v0.enums.organization_promotion_status']();
|
|
33716
|
+
export const makeOrganizationPromotionWarning = () => factories['io.flow.internal.v0.models.organization_promotion_warning']();
|
|
33404
33717
|
export const makeOrganizationRestrictionApprovalStatus = () => factories['io.flow.internal.v0.enums.organization_restriction_approval_status']();
|
|
33405
33718
|
export const makeOrganizationRestrictionNoteForm = () => factories['io.flow.internal.v0.models.organization_restriction_note_form']();
|
|
33406
33719
|
export const makeOrganizationRestrictionNoteType = () => factories['io.flow.internal.v0.enums.organization_restriction_note_type']();
|
|
@@ -33523,9 +33836,6 @@ export const makePlatformFeeFlat = () => factories['io.flow.internal.v0.models.p
|
|
|
33523
33836
|
export const makePlatformFeePause = () => factories['io.flow.internal.v0.models.platform_fee_pause']();
|
|
33524
33837
|
export const makePlatformFeePercentage = () => factories['io.flow.internal.v0.models.platform_fee_percentage']();
|
|
33525
33838
|
export const makePlatformFeePercentageTier = () => factories['io.flow.internal.v0.models.platform_fee_percentage_tier']();
|
|
33526
|
-
export const makePrateekItem = () => factories['io.flow.internal.v0.models.prateek_item']();
|
|
33527
|
-
export const makePrateekItemForm = () => factories['io.flow.internal.v0.models.prateek_item_form']();
|
|
33528
|
-
export const makePrateekItemType = () => factories['io.flow.internal.v0.enums.prateek_item_type']();
|
|
33529
33839
|
export const makePrediction = () => factories['io.flow.internal.v0.models.prediction']();
|
|
33530
33840
|
export const makePreferredBillingSchedule = () => factories['io.flow.internal.v0.enums.preferred_billing_schedule']();
|
|
33531
33841
|
export const makePreonboardingClassificationDecision = () => factories['io.flow.internal.v0.enums.preonboarding_classification_decision']();
|
|
@@ -33538,6 +33848,9 @@ export const makePreonboardingClassificationType = () => factories['io.flow.inte
|
|
|
33538
33848
|
export const makePreonboardingMerchant = () => factories['io.flow.internal.v0.models.preonboarding_merchant']();
|
|
33539
33849
|
export const makePreonboardingRequestStatus = () => factories['io.flow.internal.v0.enums.preonboarding_request_status']();
|
|
33540
33850
|
export const makePreonboardingSellabilityResult = () => factories['io.flow.internal.v0.models.preonboarding_sellability_result']();
|
|
33851
|
+
export const makePreonboardingSellabilityResultDeleted = () => factories['io.flow.internal.v0.models.preonboarding_sellability_result_deleted']();
|
|
33852
|
+
export const makePreonboardingSellabilityResultInserted = () => factories['io.flow.internal.v0.models.preonboarding_sellability_result_inserted']();
|
|
33853
|
+
export const makePreonboardingSellabilityResultUpdated = () => factories['io.flow.internal.v0.models.preonboarding_sellability_result_updated']();
|
|
33541
33854
|
export const makePriceInclusivity = () => factories['io.flow.internal.v0.models.price_inclusivity']();
|
|
33542
33855
|
export const makePriceSelector = () => factories['io.flow.internal.v0.enums.price_selector']();
|
|
33543
33856
|
export const makePrioritizedCenterReference = () => factories['io.flow.internal.v0.models.prioritized_center_reference']();
|
|
@@ -33581,7 +33894,11 @@ export const makeProductReviewHistory = () => factories['io.flow.internal.v0.mod
|
|
|
33581
33894
|
export const makeProductSellabilityInternal = () => factories['io.flow.internal.v0.models.product_sellability_internal']();
|
|
33582
33895
|
export const makeProductSellabilityInternalForm = () => factories['io.flow.internal.v0.models.product_sellability_internal_form']();
|
|
33583
33896
|
export const makeProductSellabilityInternalResult = () => factories['io.flow.internal.v0.models.product_sellability_internal_result']();
|
|
33897
|
+
export const makeProductSellabilityInternalRuleMatch = () => factories['io.flow.internal.v0.models.product_sellability_internal_rule_match']();
|
|
33584
33898
|
export const makeProductSellabilityResult = () => factories['io.flow.internal.v0.models.product_sellability_result']();
|
|
33899
|
+
export const makeProductSellabilityResultDeleted = () => factories['io.flow.internal.v0.models.product_sellability_result_deleted']();
|
|
33900
|
+
export const makeProductSellabilityResultInserted = () => factories['io.flow.internal.v0.models.product_sellability_result_inserted']();
|
|
33901
|
+
export const makeProductSellabilityResultUpdated = () => factories['io.flow.internal.v0.models.product_sellability_result_updated']();
|
|
33585
33902
|
export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
|
|
33586
33903
|
export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
|
|
33587
33904
|
export const makeProofOfPosting = () => factories['io.flow.internal.v0.unions.proof_of_posting']();
|
|
@@ -33792,11 +34109,6 @@ export const makeRevenueRecordType = () => factories['io.flow.internal.v0.enums.
|
|
|
33792
34109
|
export const makeRevenueRecordUpserted = () => factories['io.flow.internal.v0.models.revenue_record_upserted']();
|
|
33793
34110
|
export const makeRiskCheck = () => factories['io.flow.internal.v0.enums.risk_check']();
|
|
33794
34111
|
export const makeRiskEvaluation = () => factories['io.flow.internal.v0.enums.risk_evaluation']();
|
|
33795
|
-
export const makeRohanItem = () => factories['io.flow.internal.v0.models.rohan_item']();
|
|
33796
|
-
export const makeRohanItemDeleted = () => factories['io.flow.internal.v0.models.rohan_item_deleted']();
|
|
33797
|
-
export const makeRohanItemForm = () => factories['io.flow.internal.v0.models.rohan_item_form']();
|
|
33798
|
-
export const makeRohanItemType = () => factories['io.flow.internal.v0.enums.rohan_item_type']();
|
|
33799
|
-
export const makeRohanItemUpserted = () => factories['io.flow.internal.v0.models.rohan_item_upserted']();
|
|
33800
34112
|
export const makeRoutingAccount = () => factories['io.flow.internal.v0.models.routing_account']();
|
|
33801
34113
|
export const makeRoutingEntity = () => factories['io.flow.internal.v0.unions.routing_entity']();
|
|
33802
34114
|
export const makeRoutingMerchant = () => factories['io.flow.internal.v0.models.routing_merchant']();
|
|
@@ -33804,11 +34116,6 @@ export const makeRoutingProcessor = () => factories['io.flow.internal.v0.models.
|
|
|
33804
34116
|
export const makeSalesPaymentRecord = () => factories['io.flow.internal.v0.models.sales_payment_record']();
|
|
33805
34117
|
export const makeSandboxSetup = () => factories['io.flow.internal.v0.models.sandbox_setup']();
|
|
33806
34118
|
export const makeSandboxSetupForm = () => factories['io.flow.internal.v0.models.sandbox_setup_form']();
|
|
33807
|
-
export const makeSarveshItem = () => factories['io.flow.internal.v0.models.sarvesh_item']();
|
|
33808
|
-
export const makeSarveshItemDeleted = () => factories['io.flow.internal.v0.models.sarvesh_item_deleted']();
|
|
33809
|
-
export const makeSarveshItemForm = () => factories['io.flow.internal.v0.models.sarvesh_item_form']();
|
|
33810
|
-
export const makeSarveshItemType = () => factories['io.flow.internal.v0.enums.sarvesh_item_type']();
|
|
33811
|
-
export const makeSarveshItemUpserted = () => factories['io.flow.internal.v0.models.sarvesh_item_upserted']();
|
|
33812
34119
|
export const makeScheduledPayment = () => factories['io.flow.internal.v0.models.scheduled_payment']();
|
|
33813
34120
|
export const makeScreen = () => factories['io.flow.internal.v0.models.screen']();
|
|
33814
34121
|
export const makeScreenForm = () => factories['io.flow.internal.v0.models.screen_form']();
|
|
@@ -33824,20 +34131,32 @@ export const makeSearchProviderExport = () => factories['io.flow.internal.v0.mod
|
|
|
33824
34131
|
export const makeSearchTrackingSummary = () => factories['io.flow.internal.v0.models.search_tracking_summary']();
|
|
33825
34132
|
export const makeSellabilityCheckResult = () => factories['io.flow.internal.v0.models.sellability_check_result']();
|
|
33826
34133
|
export const makeSellabilityCheckStatus = () => factories['io.flow.internal.v0.enums.sellability_check_status']();
|
|
34134
|
+
export const makeSellabilityInternalMatchType = () => factories['io.flow.internal.v0.enums.sellability_internal_match_type']();
|
|
33827
34135
|
export const makeSellabilityStatus = () => factories['io.flow.internal.v0.enums.sellability_status']();
|
|
33828
34136
|
export const makeSessionOrderData = () => factories['io.flow.internal.v0.models.session_order_data']();
|
|
33829
34137
|
export const makeSetupBlockPutForm = () => factories['io.flow.internal.v0.models.setup_block_put_form']();
|
|
33830
34138
|
export const makeSfExpress = () => factories['io.flow.internal.v0.models.sf_express']();
|
|
33831
34139
|
export const makeShipmentCostSummary = () => factories['io.flow.internal.v0.models.shipment_cost_summary']();
|
|
34140
|
+
export const makeShippingCostDeleted = () => factories['io.flow.internal.v0.models.shipping_cost_deleted']();
|
|
34141
|
+
export const makeShippingCostSummary = () => factories['io.flow.internal.v0.models.shipping_cost_summary']();
|
|
34142
|
+
export const makeShippingCostUpserted = () => factories['io.flow.internal.v0.models.shipping_cost_upserted']();
|
|
33832
34143
|
export const makeShippingLane = () => factories['io.flow.internal.v0.models.shipping_lane']();
|
|
33833
34144
|
export const makeShippingMethodReference = () => factories['io.flow.internal.v0.models.shipping_method_reference']();
|
|
33834
34145
|
export const makeShippingPricing = () => factories['io.flow.internal.v0.models.shipping_pricing']();
|
|
33835
34146
|
export const makeShippingRateEstimateAvailableInternal = () => factories['io.flow.internal.v0.models.shipping_rate_estimate_available_internal']();
|
|
33836
34147
|
export const makeShippingRateEstimateInternal = () => factories['io.flow.internal.v0.models.shipping_rate_estimate_internal']();
|
|
33837
34148
|
export const makeShippingRateEstimateRequestInternal = () => factories['io.flow.internal.v0.models.shipping_rate_estimate_request_internal']();
|
|
34149
|
+
export const makeShopifyAddress = () => factories['io.flow.internal.v0.models.shopify_address']();
|
|
34150
|
+
export const makeShopifyCallbackError = () => factories['io.flow.internal.v0.models.shopify_callback_error']();
|
|
34151
|
+
export const makeShopifyCallbackErrorCode = () => factories['io.flow.internal.v0.enums.shopify_callback_error_code']();
|
|
34152
|
+
export const makeShopifyCallbackErrorItem = () => factories['io.flow.internal.v0.models.shopify_callback_error_item']();
|
|
33838
34153
|
export const makeShopifyCatalogPublication = () => factories['io.flow.internal.v0.models.shopify_catalog_publication']();
|
|
33839
34154
|
export const makeShopifyChannelOrganizationToken = () => factories['io.flow.internal.v0.models.shopify_channel_organization_token']();
|
|
33840
34155
|
export const makeShopifyChannelOrganizationTokens = () => factories['io.flow.internal.v0.models.shopify_channel_organization_tokens']();
|
|
34156
|
+
export const makeShopifyChargeCode = () => factories['io.flow.internal.v0.enums.shopify_charge_code']();
|
|
34157
|
+
export const makeShopifyContactDetails = () => factories['io.flow.internal.v0.models.shopify_contact_details']();
|
|
34158
|
+
export const makeShopifyDeliveryMethodType = () => factories['io.flow.internal.v0.enums.shopify_delivery_method_type']();
|
|
34159
|
+
export const makeShopifyDimensionUnit = () => factories['io.flow.internal.v0.enums.shopify_dimension_unit']();
|
|
33841
34160
|
export const makeShopifyDispute = () => factories['io.flow.internal.v0.models.shopify_dispute']();
|
|
33842
34161
|
export const makeShopifyDisputeDeleted = () => factories['io.flow.internal.v0.models.shopify_dispute_deleted']();
|
|
33843
34162
|
export const makeShopifyDisputeUpserted = () => factories['io.flow.internal.v0.models.shopify_dispute_upserted']();
|
|
@@ -33845,6 +34164,7 @@ export const makeShopifyHs10Code = () => factories['io.flow.internal.v0.models.s
|
|
|
33845
34164
|
export const makeShopifyHs10Codes = () => factories['io.flow.internal.v0.models.shopify_hs10_codes']();
|
|
33846
34165
|
export const makeShopifyHs10CodesDeleted = () => factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted']();
|
|
33847
34166
|
export const makeShopifyHs10CodesUpserted = () => factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted']();
|
|
34167
|
+
export const makeShopifyIncoterm = () => factories['io.flow.internal.v0.enums.shopify_incoterm']();
|
|
33848
34168
|
export const makeShopifyIncotermConfiguration = () => factories['io.flow.internal.v0.enums.shopify_incoterm_configuration']();
|
|
33849
34169
|
export const makeShopifyIncotermIncludes = () => factories['io.flow.internal.v0.models.shopify_incoterm_includes']();
|
|
33850
34170
|
export const makeShopifyIncotermSummaryErrorData = () => factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data']();
|
|
@@ -33891,10 +34211,12 @@ export const makeShopifyMarketsTradeSector = () => factories['io.flow.internal.v
|
|
|
33891
34211
|
export const makeShopifyMarketsWebhookRegistration = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration']();
|
|
33892
34212
|
export const makeShopifyMarketsWebhookRegistrationDeleted = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted']();
|
|
33893
34213
|
export const makeShopifyMarketsWebhookRegistrationUpserted = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted']();
|
|
34214
|
+
export const makeShopifyMeasurements = () => factories['io.flow.internal.v0.models.shopify_measurements']();
|
|
33894
34215
|
export const makeShopifyMerchantPlan = () => factories['io.flow.internal.v0.models.shopify_merchant_plan']();
|
|
33895
34216
|
export const makeShopifyMerchantPlanDeleted = () => factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted']();
|
|
33896
34217
|
export const makeShopifyMerchantPlanUpserted = () => factories['io.flow.internal.v0.models.shopify_merchant_plan_upserted']();
|
|
33897
34218
|
export const makeShopifyMetadata = () => factories['io.flow.internal.v0.models.shopify_metadata']();
|
|
34219
|
+
export const makeShopifyMoney = () => factories['io.flow.internal.v0.models.shopify_money']();
|
|
33898
34220
|
export const makeShopifyMonitoringCarrierService = () => factories['io.flow.internal.v0.models.shopify_monitoring_carrier_service']();
|
|
33899
34221
|
export const makeShopifyMonitoringFulfillmentExternal = () => factories['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external']();
|
|
33900
34222
|
export const makeShopifyMonitoringFulfillmentMissingDetails = () => factories['io.flow.internal.v0.models.shopify_monitoring_fulfillment_missing_details']();
|
|
@@ -33918,6 +34240,7 @@ export const makeShopifyOrderRiskAssessmentUpserted = () => factories['io.flow.i
|
|
|
33918
34240
|
export const makeShopifyOrderTransaction = () => factories['io.flow.internal.v0.models.shopify_order_transaction']();
|
|
33919
34241
|
export const makeShopifyOrderTransactionDeleted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_deleted']();
|
|
33920
34242
|
export const makeShopifyOrderTransactionUpserted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_upserted']();
|
|
34243
|
+
export const makeShopifyPackageType = () => factories['io.flow.internal.v0.enums.shopify_package_type']();
|
|
33921
34244
|
export const makeShopifyPartnerWebhook = () => factories['io.flow.internal.v0.models.shopify_partner_webhook']();
|
|
33922
34245
|
export const makeShopifyPartnerWebhookRaw = () => factories['io.flow.internal.v0.models.shopify_partner_webhook_raw']();
|
|
33923
34246
|
export const makeShopifyPlanType = () => factories['io.flow.internal.v0.enums.shopify_plan_type']();
|
|
@@ -33941,14 +34264,34 @@ export const makeShopifyProductUpdateDeleted = () => factories['io.flow.internal
|
|
|
33941
34264
|
export const makeShopifyProductUpdateUpserted = () => factories['io.flow.internal.v0.models.shopify_product_update_upserted']();
|
|
33942
34265
|
export const makeShopifyProductUpdateWebhookEvent = () => factories['io.flow.internal.v0.models.shopify_product_update_webhook_event']();
|
|
33943
34266
|
export const makeShopifyProductWrapper = () => factories['io.flow.internal.v0.models.shopify_product_wrapper']();
|
|
34267
|
+
export const makeShopifyRateCustomsDetail = () => factories['io.flow.internal.v0.models.shopify_rate_customs_detail']();
|
|
34268
|
+
export const makeShopifyRatePickupPoint = () => factories['io.flow.internal.v0.models.shopify_rate_pickup_point']();
|
|
33944
34269
|
export const makeShopifyReportFileDeleted = () => factories['io.flow.internal.v0.models.shopify_report_file_deleted']();
|
|
33945
34270
|
export const makeShopifyReportFileUpserted = () => factories['io.flow.internal.v0.models.shopify_report_file_upserted']();
|
|
33946
34271
|
export const makeShopifyService = () => factories['io.flow.internal.v0.enums.shopify_service']();
|
|
34272
|
+
export const makeShopifyShipmentOptionCode = () => factories['io.flow.internal.v0.enums.shopify_shipment_option_code']();
|
|
34273
|
+
export const makeShopifyShipmentRateAvailable = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_available']();
|
|
34274
|
+
export const makeShopifyShipmentRateCharge = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_charge']();
|
|
34275
|
+
export const makeShopifyShipmentRateOption = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_option']();
|
|
34276
|
+
export const makeShopifyShipmentRatePackage = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_package']();
|
|
34277
|
+
export const makeShopifyShipmentRateReason = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_reason']();
|
|
34278
|
+
export const makeShopifyShipmentRateRequest = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_request']();
|
|
34279
|
+
export const makeShopifyShipmentRateResponse = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_response']();
|
|
34280
|
+
export const makeShopifyShipmentRateShipment = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_shipment']();
|
|
34281
|
+
export const makeShopifyShipmentRateShipper = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_shipper']();
|
|
34282
|
+
export const makeShopifyShipmentRateTotalCharges = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_total_charges']();
|
|
34283
|
+
export const makeShopifyShipmentRateUnavailable = () => factories['io.flow.internal.v0.models.shopify_shipment_rate_unavailable']();
|
|
34284
|
+
export const makeShopifyShippingLocation = () => factories['io.flow.internal.v0.models.shopify_shipping_location']();
|
|
33947
34285
|
export const makeShopifyShopStatistics = () => factories['io.flow.internal.v0.models.shopify_shop_statistics']();
|
|
33948
34286
|
export const makeShopifyStoreDetail = () => factories['io.flow.internal.v0.models.shopify_store_detail']();
|
|
33949
34287
|
export const makeShopifyStripeEvent = () => factories['io.flow.internal.v0.models.shopify_stripe_event']();
|
|
33950
34288
|
export const makeShopifyTaxonomyAlignmentConfig = () => factories['io.flow.internal.v0.models.shopify_taxonomy_alignment_config']();
|
|
33951
34289
|
export const makeShopifyTaxonomyAlignmentConfigForm = () => factories['io.flow.internal.v0.models.shopify_taxonomy_alignment_config_form']();
|
|
34290
|
+
export const makeShopifyTestOrder = () => factories['io.flow.internal.v0.models.shopify_test_order']();
|
|
34291
|
+
export const makeShopifyTestOrderDeleted = () => factories['io.flow.internal.v0.models.shopify_test_order_deleted']();
|
|
34292
|
+
export const makeShopifyTestOrderUpserted = () => factories['io.flow.internal.v0.models.shopify_test_order_upserted']();
|
|
34293
|
+
export const makeShopifyUnavailableRateReasonCode = () => factories['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code']();
|
|
34294
|
+
export const makeShopifyWeightUnit = () => factories['io.flow.internal.v0.enums.shopify_weight_unit']();
|
|
33952
34295
|
export const makeShopperBreakdown = () => factories['io.flow.internal.v0.models.shopper_breakdown']();
|
|
33953
34296
|
export const makeShopperFees = () => factories['io.flow.internal.v0.models.shopper_fees']();
|
|
33954
34297
|
export const makeShopperFreight = () => factories['io.flow.internal.v0.models.shopper_freight']();
|