@flowio/api-internal-factories 0.0.141 → 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 +616 -410
- package/dist/esm/api-internal.js +520 -329
- package/dist/types/api-internal.d.ts +59 -44
- package/package.json +2 -3
- package/src/api-internal.ts +606 -365
package/src/api-internal.ts
CHANGED
|
@@ -733,13 +733,9 @@ const factories = {
|
|
|
733
733
|
'io.flow.billing.bank.account.v0.models.bank_account_info_kor': (): io.flow.billing.bank.account.v0.models.BankAccountInfoKor => ({
|
|
734
734
|
discriminator: 'kor',
|
|
735
735
|
name: factories.string(),
|
|
736
|
-
address: factories['io.flow.common.v0.models.address'](),
|
|
737
|
-
phone: factories.string(),
|
|
738
|
-
email: factories.string(),
|
|
739
736
|
bank_account_number: factories.string(),
|
|
740
737
|
bank_routing_number: factories.string(),
|
|
741
738
|
bank_name: factories.string(),
|
|
742
|
-
bank_address: factories['io.flow.common.v0.models.address'](),
|
|
743
739
|
}),
|
|
744
740
|
|
|
745
741
|
'io.flow.billing.bank.account.v0.models.bank_account_info_usa': (): io.flow.billing.bank.account.v0.models.BankAccountInfoUsa => ({
|
|
@@ -776,6 +772,7 @@ const factories = {
|
|
|
776
772
|
'transfer',
|
|
777
773
|
'negative_balance_guarantee',
|
|
778
774
|
'sp',
|
|
775
|
+
'rev_share',
|
|
779
776
|
]),
|
|
780
777
|
|
|
781
778
|
'io.flow.billing.v0.enums.payout_attachment_type': (): io.flow.billing.v0.enums.PayoutAttachmentType => faker.helpers.arrayElement(['transactions']),
|
|
@@ -807,6 +804,7 @@ const factories = {
|
|
|
807
804
|
'wyol_shipment_above_de_min',
|
|
808
805
|
'full_refund_without_shipment',
|
|
809
806
|
'unfulfilled_order_above_de_min',
|
|
807
|
+
'order_cancellation_without_capture',
|
|
810
808
|
]),
|
|
811
809
|
|
|
812
810
|
'io.flow.billing.v0.enums.transaction_source': (): io.flow.billing.v0.enums.TransactionSource => faker.helpers.arrayElement([
|
|
@@ -844,6 +842,8 @@ const factories = {
|
|
|
844
842
|
'merchant_fee',
|
|
845
843
|
'b2b_tax',
|
|
846
844
|
'b2b_tax_refund',
|
|
845
|
+
'b2b_fee_mor_tax',
|
|
846
|
+
'b2b_fee_shipping_tax',
|
|
847
847
|
]),
|
|
848
848
|
|
|
849
849
|
'io.flow.billing.v0.enums.trueup_source': (): io.flow.billing.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']),
|
|
@@ -1177,6 +1177,22 @@ const factories = {
|
|
|
1177
1177
|
description: factories.string(),
|
|
1178
1178
|
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
1179
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(),
|
|
1180
1196
|
}),
|
|
1181
1197
|
|
|
1182
1198
|
'io.flow.billing.v0.models.transaction_metadata_original_transaction': (): io.flow.billing.v0.models.TransactionMetadataOriginalTransaction => ({
|
|
@@ -1362,6 +1378,7 @@ const factories = {
|
|
|
1362
1378
|
() => factories['io.flow.billing.v0.models.transaction_metadata_failed_payout'](),
|
|
1363
1379
|
() => factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](),
|
|
1364
1380
|
() => factories['io.flow.billing.v0.models.transaction_metadata_tax_duty'](),
|
|
1381
|
+
() => factories['io.flow.billing.v0.models.transaction_metadata_merchant_fee'](),
|
|
1365
1382
|
]);
|
|
1366
1383
|
|
|
1367
1384
|
return f();
|
|
@@ -2624,6 +2641,7 @@ const factories = {
|
|
|
2624
2641
|
'io.flow.common.v0.models.line_item_form': (): io.flow.common.v0.models.LineItemForm => ({
|
|
2625
2642
|
number: factories.string(),
|
|
2626
2643
|
quantity: factories.long(),
|
|
2644
|
+
line_item_identifier: factories.string(),
|
|
2627
2645
|
shipment_estimate: factories['io.flow.common.v0.models.datetime_range'](),
|
|
2628
2646
|
price: factories['io.flow.common.v0.models.money'](),
|
|
2629
2647
|
attributes: objectOf(() => factories.string()),
|
|
@@ -2957,6 +2975,7 @@ const factories = {
|
|
|
2957
2975
|
b2b_invoice_type: factories['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'](),
|
|
2958
2976
|
center: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'](),
|
|
2959
2977
|
order: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'](),
|
|
2978
|
+
voids_b2b_invoice: factories.boolean(),
|
|
2960
2979
|
}),
|
|
2961
2980
|
|
|
2962
2981
|
'io.flow.consumer.invoice.v0.models.b2b_invoice': (): io.flow.consumer.invoice.v0.models.B2BInvoice => ({
|
|
@@ -6873,6 +6892,11 @@ const factories = {
|
|
|
6873
6892
|
company_name_match_result_reason: factories.string(),
|
|
6874
6893
|
}),
|
|
6875
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
|
+
|
|
6876
6900
|
'io.flow.harmonization.v0.models.harmonized_category_reference': (): io.flow.harmonization.v0.models.HarmonizedCategoryReference => ({
|
|
6877
6901
|
id: factories.string(),
|
|
6878
6902
|
}),
|
|
@@ -6972,6 +6996,16 @@ const factories = {
|
|
|
6972
6996
|
tax: factories['io.flow.price.v0.models.tax'](),
|
|
6973
6997
|
}),
|
|
6974
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
|
+
|
|
6975
7009
|
'io.flow.harmonization.v0.models.tax_registration': (): io.flow.harmonization.v0.models.TaxRegistration => ({
|
|
6976
7010
|
id: factories.string(),
|
|
6977
7011
|
key: factories.string(),
|
|
@@ -6989,15 +7023,13 @@ const factories = {
|
|
|
6989
7023
|
company_name: factories.string(),
|
|
6990
7024
|
}),
|
|
6991
7025
|
|
|
7026
|
+
'io.flow.internal.v0.enums.account_currency_filter': (): io.flow.internal.v0.enums.AccountCurrencyFilter => faker.helpers.arrayElement(['GBP', 'CAD', 'USD']),
|
|
6992
7027
|
'io.flow.internal.v0.enums.account_payment_hold_reason': (): io.flow.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'frozen', 'invalid_bank_account']),
|
|
6993
7028
|
'io.flow.internal.v0.enums.account_setting_liabilities_method': (): io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod => faker.helpers.arrayElement(['withholding', 'transaction']),
|
|
6994
7029
|
'io.flow.internal.v0.enums.account_type': (): io.flow.internal.v0.enums.AccountType => faker.helpers.arrayElement(['channel', 'organization']),
|
|
6995
7030
|
'io.flow.internal.v0.enums.adjustment_transaction_type': (): io.flow.internal.v0.enums.AdjustmentTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal']),
|
|
6996
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']),
|
|
6997
|
-
'io.flow.internal.v0.enums.aldo_item_type': (): io.flow.internal.v0.enums.AldoItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
6998
7032
|
'io.flow.internal.v0.enums.amrutha_item_type': (): io.flow.internal.v0.enums.AmruthaItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
6999
|
-
'io.flow.internal.v0.enums.anirban_item_type': (): io.flow.internal.v0.enums.AnirbanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7000
|
-
'io.flow.internal.v0.enums.ansh_item_type': (): io.flow.internal.v0.enums.AnshItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7001
7033
|
'io.flow.internal.v0.enums.any_dangerous_goods': (): io.flow.internal.v0.enums.AnyDangerousGoods => faker.helpers.arrayElement(['yes', 'no', 'i_dont_know']),
|
|
7002
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']),
|
|
7003
7035
|
'io.flow.internal.v0.enums.applicable_preferential_rate': (): io.flow.internal.v0.enums.ApplicablePreferentialRate => faker.helpers.arrayElement(['baby', 'children']),
|
|
@@ -7019,6 +7051,8 @@ const factories = {
|
|
|
7019
7051
|
'prr-74e1320efb7741cf9ace400b69800f9b',
|
|
7020
7052
|
]),
|
|
7021
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']),
|
|
7022
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']),
|
|
7023
7057
|
'io.flow.internal.v0.enums.b2b_tax_rate_type': (): io.flow.internal.v0.enums.B2BTaxRateType => faker.helpers.arrayElement(['basic', 'preferential', 'exempt']),
|
|
7024
7058
|
'io.flow.internal.v0.enums.bank_account_status': (): io.flow.internal.v0.enums.BankAccountStatus => faker.helpers.arrayElement(['on_hold', 'not_on_hold']),
|
|
@@ -7302,8 +7336,11 @@ const factories = {
|
|
|
7302
7336
|
'merchant_refund',
|
|
7303
7337
|
'b2b_tax',
|
|
7304
7338
|
'b2b_tax_refund',
|
|
7339
|
+
'b2b_fee_mor_tax',
|
|
7340
|
+
'b2b_fee_shipping_tax',
|
|
7305
7341
|
]),
|
|
7306
7342
|
|
|
7343
|
+
'io.flow.internal.v0.enums.bojana_item_type': (): io.flow.internal.v0.enums.BojanaItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7307
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']),
|
|
7308
7345
|
'io.flow.internal.v0.enums.carrier_charge_transaction_type': (): io.flow.internal.v0.enums.CarrierChargeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']),
|
|
7309
7346
|
'io.flow.internal.v0.enums.carrier_charge_type': (): io.flow.internal.v0.enums.CarrierChargeType => faker.helpers.arrayElement(['label', 'tax', 'other']),
|
|
@@ -7394,11 +7431,13 @@ const factories = {
|
|
|
7394
7431
|
'io.flow.internal.v0.enums.checkout_prompt_behavior': (): io.flow.internal.v0.enums.CheckoutPromptBehavior => faker.helpers.arrayElement(['always', 'incomplete']),
|
|
7395
7432
|
'io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior': (): io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior => faker.helpers.arrayElement(['always', 'multiple']),
|
|
7396
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']),
|
|
7397
7435
|
'io.flow.internal.v0.enums.classification_decision': (): io.flow.internal.v0.enums.ClassificationDecision => faker.helpers.arrayElement(['Accept', 'Reject']),
|
|
7398
7436
|
'io.flow.internal.v0.enums.classification_error_code': (): io.flow.internal.v0.enums.ClassificationErrorCode => faker.helpers.arrayElement(['generic_error']),
|
|
7399
|
-
'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']),
|
|
7400
7438
|
'io.flow.internal.v0.enums.classification_platform': (): io.flow.internal.v0.enums.ClassificationPlatform => faker.helpers.arrayElement(['GlobalE', 'Flow', 'FlowOnboarding', 'Borderfree']),
|
|
7401
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']),
|
|
7402
7441
|
'io.flow.internal.v0.enums.classification_type': (): io.flow.internal.v0.enums.ClassificationType => faker.helpers.arrayElement(['None', 'Manual', 'ML', 'System']),
|
|
7403
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']),
|
|
7404
7443
|
'io.flow.internal.v0.enums.commercial_invoice_version': (): io.flow.internal.v0.enums.CommercialInvoiceVersion => faker.helpers.arrayElement(['v2_2_1']),
|
|
@@ -7530,8 +7569,6 @@ const factories = {
|
|
|
7530
7569
|
'calculator_organization_settings_deleted',
|
|
7531
7570
|
'carrier_account_upserted_v2',
|
|
7532
7571
|
'carrier_account_deleted',
|
|
7533
|
-
'label_generation_settings_upserted',
|
|
7534
|
-
'label_generation_settings_deleted',
|
|
7535
7572
|
'catalog_import_request',
|
|
7536
7573
|
'exclusion_rule_upserted',
|
|
7537
7574
|
'exclusion_rule_deleted',
|
|
@@ -7601,6 +7638,8 @@ const factories = {
|
|
|
7601
7638
|
'carrier_charge_deleted',
|
|
7602
7639
|
'bank_payment_order_upserted',
|
|
7603
7640
|
'bank_payment_order_deleted',
|
|
7641
|
+
'shipping_cost_upserted',
|
|
7642
|
+
'shipping_cost_deleted',
|
|
7604
7643
|
'fraud_review_upserted',
|
|
7605
7644
|
'fraud_review_deleted',
|
|
7606
7645
|
'fraud_pending_review_upserted',
|
|
@@ -7714,11 +7753,17 @@ const factories = {
|
|
|
7714
7753
|
'paypal_refund_upserted',
|
|
7715
7754
|
'paypal_dispute_upserted',
|
|
7716
7755
|
'paypal_dispute_deleted',
|
|
7756
|
+
'preonboarding_sellability_result_inserted',
|
|
7757
|
+
'preonboarding_sellability_result_updated',
|
|
7758
|
+
'preonboarding_sellability_result_deleted',
|
|
7717
7759
|
'product_restriction_rule_decision_upserted',
|
|
7718
7760
|
'product_restriction_rule_decision_deleted',
|
|
7719
7761
|
'product_restriction_state_inserted',
|
|
7720
7762
|
'product_restriction_state_updated',
|
|
7721
7763
|
'product_restriction_state_deleted',
|
|
7764
|
+
'product_sellability_result_inserted',
|
|
7765
|
+
'product_sellability_result_updated',
|
|
7766
|
+
'product_sellability_result_deleted',
|
|
7722
7767
|
'order_rates_published_v3',
|
|
7723
7768
|
'ratecard_dimension_estimate_upserted',
|
|
7724
7769
|
'ratecard_dimension_estimate_deleted',
|
|
@@ -7816,22 +7861,10 @@ const factories = {
|
|
|
7816
7861
|
'stripe_connect_report_record_deleted',
|
|
7817
7862
|
'liability_remittance_plan_upserted',
|
|
7818
7863
|
'liability_remittance_plan_deleted',
|
|
7819
|
-
'anirban_item_upserted',
|
|
7820
|
-
'anirban_item_deleted',
|
|
7821
|
-
'sarvesh_item_upserted',
|
|
7822
|
-
'sarvesh_item_deleted',
|
|
7823
|
-
'hosein_item_upserted',
|
|
7824
|
-
'hosein_item_deleted',
|
|
7825
|
-
'niall_item_upserted',
|
|
7826
|
-
'niall_item_deleted',
|
|
7827
|
-
'rohan_item_upserted',
|
|
7828
|
-
'rohan_item_deleted',
|
|
7829
|
-
'aldo_item_upserted',
|
|
7830
|
-
'aldo_item_deleted',
|
|
7831
|
-
'ansh_item_upserted',
|
|
7832
|
-
'ansh_item_deleted',
|
|
7833
7864
|
'gabriel_item_upserted',
|
|
7834
7865
|
'gabriel_item_deleted',
|
|
7866
|
+
'chenglin_item_upserted',
|
|
7867
|
+
'chenglin_item_deleted',
|
|
7835
7868
|
'tracking_processing_error_upserted',
|
|
7836
7869
|
'tracking_processing_error_deleted',
|
|
7837
7870
|
'tracking_label_event_upserted_v2',
|
|
@@ -7885,7 +7918,6 @@ const factories = {
|
|
|
7885
7918
|
]),
|
|
7886
7919
|
|
|
7887
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']),
|
|
7888
|
-
'io.flow.internal.v0.enums.hosein_item_type': (): io.flow.internal.v0.enums.HoseinItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7889
7921
|
'io.flow.internal.v0.enums.hs6_code_source': (): io.flow.internal.v0.enums.Hs6CodeSource => faker.helpers.arrayElement(['sellability', 'classification', 'human']),
|
|
7890
7922
|
'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
|
|
7891
7923
|
'io.flow.internal.v0.enums.internal_payment_entity_type': (): io.flow.internal.v0.enums.InternalPaymentEntityType => faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'dispute']),
|
|
@@ -7929,10 +7961,15 @@ const factories = {
|
|
|
7929
7961
|
'carrier',
|
|
7930
7962
|
]),
|
|
7931
7963
|
|
|
7932
|
-
'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']),
|
|
7933
7965
|
'io.flow.internal.v0.enums.label_request_result_state': (): io.flow.internal.v0.enums.LabelRequestResultState => faker.helpers.arrayElement(['success', 'failure']),
|
|
7934
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']),
|
|
7935
|
-
|
|
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
|
+
|
|
7936
7973
|
'io.flow.internal.v0.enums.ledger_report_url_type': (): io.flow.internal.v0.enums.LedgerReportUrlType => faker.helpers.arrayElement(['sharepoint', 's3']),
|
|
7937
7974
|
|
|
7938
7975
|
'io.flow.internal.v0.enums.liability_type': (): io.flow.internal.v0.enums.LiabilityType => faker.helpers.arrayElement(
|
|
@@ -7960,6 +7997,7 @@ const factories = {
|
|
|
7960
7997
|
'negative_balance_guarantee',
|
|
7961
7998
|
'bank_payment_failure',
|
|
7962
7999
|
'non_fraud_chargeback',
|
|
8000
|
+
'v1_migration_neg_balance_settlement',
|
|
7963
8001
|
]),
|
|
7964
8002
|
|
|
7965
8003
|
'io.flow.internal.v0.enums.merchant_fee_transaction_type': (): io.flow.internal.v0.enums.MerchantFeeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'fee']),
|
|
@@ -7987,8 +8025,6 @@ const factories = {
|
|
|
7987
8025
|
'flash_title',
|
|
7988
8026
|
]),
|
|
7989
8027
|
|
|
7990
|
-
'io.flow.internal.v0.enums.niall_item_type': (): io.flow.internal.v0.enums.NiallItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7991
|
-
|
|
7992
8028
|
'io.flow.internal.v0.enums.no_liability_reason_code': (): io.flow.internal.v0.enums.NoLiabilityReasonCode => faker.helpers.arrayElement([
|
|
7993
8029
|
'zero_basis',
|
|
7994
8030
|
'zero_rate_on_goods',
|
|
@@ -8072,6 +8108,7 @@ const factories = {
|
|
|
8072
8108
|
'io.flow.internal.v0.enums.organization_capability': (): io.flow.internal.v0.enums.OrganizationCapability => faker.helpers.arrayElement(['organization', 'flow', 'dynamic']),
|
|
8073
8109
|
'io.flow.internal.v0.enums.organization_metric_type': (): io.flow.internal.v0.enums.OrganizationMetricType => faker.helpers.arrayElement(['organization_restriction_status']),
|
|
8074
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']),
|
|
8075
8112
|
'io.flow.internal.v0.enums.organization_restriction_approval_status': (): io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus => faker.helpers.arrayElement(['ready', 'not-ready']),
|
|
8076
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']),
|
|
8077
8114
|
'io.flow.internal.v0.enums.organization_restriction_review_type': (): io.flow.internal.v0.enums.OrganizationRestrictionReviewType => faker.helpers.arrayElement(['all_pending', 'pending_verification']),
|
|
@@ -8098,7 +8135,6 @@ const factories = {
|
|
|
8098
8135
|
'io.flow.internal.v0.enums.payment_summary_type': (): io.flow.internal.v0.enums.PaymentSummaryType => faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'reversal', 'credit']),
|
|
8099
8136
|
'io.flow.internal.v0.enums.payment_term': (): io.flow.internal.v0.enums.PaymentTerm => faker.helpers.arrayElement(['net7', 'net15', 'net30']),
|
|
8100
8137
|
'io.flow.internal.v0.enums.pending_record_type': (): io.flow.internal.v0.enums.PendingRecordType => faker.helpers.arrayElement(['verification', 'classification', 'restriction']),
|
|
8101
|
-
'io.flow.internal.v0.enums.prateek_item_type': (): io.flow.internal.v0.enums.PrateekItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8102
8138
|
'io.flow.internal.v0.enums.preferred_billing_schedule': (): io.flow.internal.v0.enums.PreferredBillingSchedule => faker.helpers.arrayElement(['monthly', 'bi-monthly']),
|
|
8103
8139
|
'io.flow.internal.v0.enums.preonboarding_classification_decision': (): io.flow.internal.v0.enums.PreonboardingClassificationDecision => faker.helpers.arrayElement(['Accept', 'Reject']),
|
|
8104
8140
|
'io.flow.internal.v0.enums.preonboarding_classification_platform': (): io.flow.internal.v0.enums.PreonboardingClassificationPlatform => faker.helpers.arrayElement(['FlowOnboarding']),
|
|
@@ -8199,6 +8235,8 @@ const factories = {
|
|
|
8199
8235
|
'shopify-sandbox',
|
|
8200
8236
|
'enterprise-sandbox',
|
|
8201
8237
|
'enterprise-qa',
|
|
8238
|
+
'cafe24',
|
|
8239
|
+
'cafe24-sandbox',
|
|
8202
8240
|
]),
|
|
8203
8241
|
|
|
8204
8242
|
'io.flow.internal.v0.enums.restriction_organization_source': (): io.flow.internal.v0.enums.RestrictionOrganizationSource => faker.helpers.arrayElement(['smb', 'enterprise']),
|
|
@@ -8210,8 +8248,6 @@ const factories = {
|
|
|
8210
8248
|
'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
|
|
8211
8249
|
'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
|
|
8212
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']),
|
|
8213
|
-
'io.flow.internal.v0.enums.rohan_item_type': (): io.flow.internal.v0.enums.RohanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8214
|
-
'io.flow.internal.v0.enums.sarvesh_item_type': (): io.flow.internal.v0.enums.SarveshItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
8215
8251
|
|
|
8216
8252
|
'io.flow.internal.v0.enums.sellability_check_status': (): io.flow.internal.v0.enums.SellabilityCheckStatus => faker.helpers.arrayElement([
|
|
8217
8253
|
'more_restrictive',
|
|
@@ -8221,7 +8257,78 @@ const factories = {
|
|
|
8221
8257
|
'rules_differ',
|
|
8222
8258
|
]),
|
|
8223
8259
|
|
|
8260
|
+
'io.flow.internal.v0.enums.sellability_internal_match_type': (): io.flow.internal.v0.enums.SellabilityInternalMatchType => faker.helpers.arrayElement(['positive_keyword', 'auto_restricted']),
|
|
8224
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']),
|
|
8225
8332
|
'io.flow.internal.v0.enums.shopify_incoterm_configuration': (): io.flow.internal.v0.enums.ShopifyIncotermConfiguration => faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']),
|
|
8226
8333
|
|
|
8227
8334
|
'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
|
|
@@ -8281,8 +8388,43 @@ const factories = {
|
|
|
8281
8388
|
|
|
8282
8389
|
'io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status': (): io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus => faker.helpers.arrayElement(['in_review', 'reviewed']),
|
|
8283
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']),
|
|
8284
8392
|
'io.flow.internal.v0.enums.shopify_plan_type': (): io.flow.internal.v0.enums.ShopifyPlanType => faker.helpers.arrayElement(['standard', 'shopify_plus']),
|
|
8285
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']),
|
|
8286
8428
|
'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
|
|
8287
8429
|
'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
|
|
8288
8430
|
'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task', 'invariant']),
|
|
@@ -8497,11 +8639,13 @@ const factories = {
|
|
|
8497
8639
|
transfer_method: factories['io.flow.internal.v0.enums.transfer_method'](),
|
|
8498
8640
|
b2b_tax_remittance_days: factories.long(),
|
|
8499
8641
|
merchant_of_record_fee: factories.decimal(),
|
|
8642
|
+
merchant_of_record_fee_create_on_order: factories.boolean(),
|
|
8500
8643
|
duty_guarantee_fee: factories.decimal(),
|
|
8501
8644
|
transfer_fee: factories.decimal(),
|
|
8502
8645
|
negative_balance_fee: factories.decimal(),
|
|
8503
8646
|
order_service_fee: factories['io.flow.internal.v0.models.tiered_fee'](),
|
|
8504
8647
|
label_fees: factories['io.flow.internal.v0.models.account_setting_label_fees'](),
|
|
8648
|
+
revenue_share_rate: factories.decimal(),
|
|
8505
8649
|
charge_label_cost_directly: factories.boolean(),
|
|
8506
8650
|
transaction_posting_method: factories['io.flow.internal.v0.enums.transaction_posting_method'](),
|
|
8507
8651
|
statement_transfer_transaction_location: factories['io.flow.internal.v0.enums.statement_transfer_transaction_location'](),
|
|
@@ -8512,6 +8656,10 @@ const factories = {
|
|
|
8512
8656
|
enable_fee_reversals: factories.boolean(),
|
|
8513
8657
|
record_reason_for_transactions_pending_payout: factories.boolean(),
|
|
8514
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(),
|
|
8515
8663
|
}),
|
|
8516
8664
|
|
|
8517
8665
|
'io.flow.internal.v0.models.account_settings_deleted': (): io.flow.internal.v0.models.AccountSettingsDeleted => ({
|
|
@@ -9047,37 +9195,6 @@ const factories = {
|
|
|
9047
9195
|
placeholder: factories.boolean(),
|
|
9048
9196
|
}),
|
|
9049
9197
|
|
|
9050
|
-
'io.flow.internal.v0.models.aldo_item': (): io.flow.internal.v0.models.AldoItem => ({
|
|
9051
|
-
id: factories.string(),
|
|
9052
|
-
number: factories.string(),
|
|
9053
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9054
|
-
description: factories.string(),
|
|
9055
|
-
type: factories['io.flow.internal.v0.enums.aldo_item_type'](),
|
|
9056
|
-
added_on: factories.date_iso_8601(),
|
|
9057
|
-
}),
|
|
9058
|
-
|
|
9059
|
-
'io.flow.internal.v0.models.aldo_item_deleted': (): io.flow.internal.v0.models.AldoItemDeleted => ({
|
|
9060
|
-
discriminator: 'aldo_item_deleted',
|
|
9061
|
-
event_id: factories.string(),
|
|
9062
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9063
|
-
id: factories.string(),
|
|
9064
|
-
}),
|
|
9065
|
-
|
|
9066
|
-
'io.flow.internal.v0.models.aldo_item_form': (): io.flow.internal.v0.models.AldoItemForm => ({
|
|
9067
|
-
number: factories.string(),
|
|
9068
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9069
|
-
description: factories.string(),
|
|
9070
|
-
type: factories['io.flow.internal.v0.enums.aldo_item_type'](),
|
|
9071
|
-
added_on: factories.date_iso_8601(),
|
|
9072
|
-
}),
|
|
9073
|
-
|
|
9074
|
-
'io.flow.internal.v0.models.aldo_item_upserted': (): io.flow.internal.v0.models.AldoItemUpserted => ({
|
|
9075
|
-
discriminator: 'aldo_item_upserted',
|
|
9076
|
-
event_id: factories.string(),
|
|
9077
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9078
|
-
item: factories['io.flow.internal.v0.models.aldo_item'](),
|
|
9079
|
-
}),
|
|
9080
|
-
|
|
9081
9198
|
'io.flow.internal.v0.models.all_items_export': (): io.flow.internal.v0.models.AllItemsExport => ({
|
|
9082
9199
|
discriminator: 'all_items_export',
|
|
9083
9200
|
event_id: factories.string(),
|
|
@@ -9117,68 +9234,6 @@ const factories = {
|
|
|
9117
9234
|
added_on: factories.date_time_iso_8601(),
|
|
9118
9235
|
}),
|
|
9119
9236
|
|
|
9120
|
-
'io.flow.internal.v0.models.anirban_item': (): io.flow.internal.v0.models.AnirbanItem => ({
|
|
9121
|
-
id: factories.string(),
|
|
9122
|
-
number: factories.string(),
|
|
9123
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9124
|
-
description: factories.string(),
|
|
9125
|
-
type: factories['io.flow.internal.v0.enums.anirban_item_type'](),
|
|
9126
|
-
added_on: factories.date_time_iso_8601(),
|
|
9127
|
-
}),
|
|
9128
|
-
|
|
9129
|
-
'io.flow.internal.v0.models.anirban_item_deleted': (): io.flow.internal.v0.models.AnirbanItemDeleted => ({
|
|
9130
|
-
discriminator: 'anirban_item_deleted',
|
|
9131
|
-
event_id: factories.string(),
|
|
9132
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9133
|
-
id: factories.string(),
|
|
9134
|
-
}),
|
|
9135
|
-
|
|
9136
|
-
'io.flow.internal.v0.models.anirban_item_form': (): io.flow.internal.v0.models.AnirbanItemForm => ({
|
|
9137
|
-
number: factories.string(),
|
|
9138
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9139
|
-
description: factories.string(),
|
|
9140
|
-
type: factories['io.flow.internal.v0.enums.anirban_item_type'](),
|
|
9141
|
-
added_on: factories.date_time_iso_8601(),
|
|
9142
|
-
}),
|
|
9143
|
-
|
|
9144
|
-
'io.flow.internal.v0.models.anirban_item_upserted': (): io.flow.internal.v0.models.AnirbanItemUpserted => ({
|
|
9145
|
-
discriminator: 'anirban_item_upserted',
|
|
9146
|
-
event_id: factories.string(),
|
|
9147
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9148
|
-
item: factories['io.flow.internal.v0.models.anirban_item'](),
|
|
9149
|
-
}),
|
|
9150
|
-
|
|
9151
|
-
'io.flow.internal.v0.models.ansh_item': (): io.flow.internal.v0.models.AnshItem => ({
|
|
9152
|
-
id: factories.string(),
|
|
9153
|
-
number: factories.string(),
|
|
9154
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9155
|
-
description: factories.string(),
|
|
9156
|
-
type: factories['io.flow.internal.v0.enums.ansh_item_type'](),
|
|
9157
|
-
added_on: factories.date_iso_8601(),
|
|
9158
|
-
}),
|
|
9159
|
-
|
|
9160
|
-
'io.flow.internal.v0.models.ansh_item_deleted': (): io.flow.internal.v0.models.AnshItemDeleted => ({
|
|
9161
|
-
discriminator: 'ansh_item_deleted',
|
|
9162
|
-
event_id: factories.string(),
|
|
9163
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9164
|
-
id: factories.string(),
|
|
9165
|
-
}),
|
|
9166
|
-
|
|
9167
|
-
'io.flow.internal.v0.models.ansh_item_form': (): io.flow.internal.v0.models.AnshItemForm => ({
|
|
9168
|
-
number: factories.string(),
|
|
9169
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
9170
|
-
description: factories.string(),
|
|
9171
|
-
type: factories['io.flow.internal.v0.enums.ansh_item_type'](),
|
|
9172
|
-
added_on: factories.date_iso_8601(),
|
|
9173
|
-
}),
|
|
9174
|
-
|
|
9175
|
-
'io.flow.internal.v0.models.ansh_item_upserted': (): io.flow.internal.v0.models.AnshItemUpserted => ({
|
|
9176
|
-
discriminator: 'ansh_item_upserted',
|
|
9177
|
-
event_id: factories.string(),
|
|
9178
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9179
|
-
item: factories['io.flow.internal.v0.models.ansh_item'](),
|
|
9180
|
-
}),
|
|
9181
|
-
|
|
9182
9237
|
'io.flow.internal.v0.models.apple_pay_authorization_payload': (): io.flow.internal.v0.models.ApplePayAuthorizationPayload => ({
|
|
9183
9238
|
discriminator: 'apple_pay_authorization_payload',
|
|
9184
9239
|
apple_pay_token: factories.string(),
|
|
@@ -9285,6 +9340,16 @@ const factories = {
|
|
|
9285
9340
|
action: factories['io.flow.internal.v0.enums.restriction_status'](),
|
|
9286
9341
|
}),
|
|
9287
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
|
+
|
|
9288
9353
|
'io.flow.internal.v0.models.b2b_tax_ledger': (): io.flow.internal.v0.models.B2BTaxLedger => ({
|
|
9289
9354
|
id: factories.string(),
|
|
9290
9355
|
total_amount: factories['io.flow.internal.v0.models.tax_type_total'](),
|
|
@@ -9302,6 +9367,8 @@ const factories = {
|
|
|
9302
9367
|
document_type: factories['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'](),
|
|
9303
9368
|
document_date: factories.date_time_iso_8601(),
|
|
9304
9369
|
ledger_report_id: factories.string(),
|
|
9370
|
+
voids_invoice_number: factories.string(),
|
|
9371
|
+
document_number: factories.string(),
|
|
9305
9372
|
}),
|
|
9306
9373
|
|
|
9307
9374
|
'io.flow.internal.v0.models.b2b_tax_ledger_form': (): io.flow.internal.v0.models.B2BTaxLedgerForm => ({
|
|
@@ -9320,6 +9387,8 @@ const factories = {
|
|
|
9320
9387
|
document_type: factories['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'](),
|
|
9321
9388
|
document_date: factories.date_time_iso_8601(),
|
|
9322
9389
|
ledger_report_id: factories.string(),
|
|
9390
|
+
voids_invoice_number: factories.string(),
|
|
9391
|
+
document_number: factories.string(),
|
|
9323
9392
|
}),
|
|
9324
9393
|
|
|
9325
9394
|
'io.flow.internal.v0.models.bank_account': (): io.flow.internal.v0.models.BankAccount => ({
|
|
@@ -9638,6 +9707,9 @@ const factories = {
|
|
|
9638
9707
|
tax_refund: factories['io.flow.common.v0.models.price'](),
|
|
9639
9708
|
b2b_tax: factories['io.flow.common.v0.models.price'](),
|
|
9640
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'](),
|
|
9641
9713
|
}),
|
|
9642
9714
|
|
|
9643
9715
|
'io.flow.internal.v0.models.billing_statement_upserted': (): io.flow.internal.v0.models.BillingStatementUpserted => ({
|
|
@@ -9704,6 +9776,23 @@ const factories = {
|
|
|
9704
9776
|
secret_key: factories.string(),
|
|
9705
9777
|
}),
|
|
9706
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
|
+
|
|
9707
9796
|
'io.flow.internal.v0.models.boolean_feature_default_value': (): io.flow.internal.v0.models.BooleanFeatureDefaultValue => ({
|
|
9708
9797
|
discriminator: 'boolean',
|
|
9709
9798
|
value: factories.boolean(),
|
|
@@ -10737,6 +10826,37 @@ const factories = {
|
|
|
10737
10826
|
type: factories['io.flow.internal.v0.enums.checkout_url_type'](),
|
|
10738
10827
|
}),
|
|
10739
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
|
+
|
|
10740
10860
|
'io.flow.internal.v0.models.cipher': (): io.flow.internal.v0.models.Cipher => ({
|
|
10741
10861
|
id: factories.string(),
|
|
10742
10862
|
attributes: objectOf(() => factories.string()),
|
|
@@ -13142,6 +13262,12 @@ const factories = {
|
|
|
13142
13262
|
num_events: factories.long(),
|
|
13143
13263
|
}),
|
|
13144
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
|
+
|
|
13145
13271
|
'io.flow.internal.v0.models.generate_load_single_org': (): io.flow.internal.v0.models.GenerateLoadSingleOrg => ({
|
|
13146
13272
|
discriminator: 'generate_load_single_org',
|
|
13147
13273
|
organization_id: factories.string(),
|
|
@@ -13315,37 +13441,6 @@ const factories = {
|
|
|
13315
13441
|
export_id: factories.string(),
|
|
13316
13442
|
}),
|
|
13317
13443
|
|
|
13318
|
-
'io.flow.internal.v0.models.hosein_item': (): io.flow.internal.v0.models.HoseinItem => ({
|
|
13319
|
-
id: factories.string(),
|
|
13320
|
-
number: factories.string(),
|
|
13321
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
13322
|
-
description: factories.string(),
|
|
13323
|
-
type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
|
|
13324
|
-
added_on: factories.date_time_iso_8601(),
|
|
13325
|
-
}),
|
|
13326
|
-
|
|
13327
|
-
'io.flow.internal.v0.models.hosein_item_deleted': (): io.flow.internal.v0.models.HoseinItemDeleted => ({
|
|
13328
|
-
discriminator: 'hosein_item_deleted',
|
|
13329
|
-
event_id: factories.string(),
|
|
13330
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13331
|
-
id: factories.string(),
|
|
13332
|
-
}),
|
|
13333
|
-
|
|
13334
|
-
'io.flow.internal.v0.models.hosein_item_form': (): io.flow.internal.v0.models.HoseinItemForm => ({
|
|
13335
|
-
number: factories.string(),
|
|
13336
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
13337
|
-
description: factories.string(),
|
|
13338
|
-
type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
|
|
13339
|
-
added_on: factories.date_time_iso_8601(),
|
|
13340
|
-
}),
|
|
13341
|
-
|
|
13342
|
-
'io.flow.internal.v0.models.hosein_item_upserted': (): io.flow.internal.v0.models.HoseinItemUpserted => ({
|
|
13343
|
-
discriminator: 'hosein_item_upserted',
|
|
13344
|
-
event_id: factories.string(),
|
|
13345
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13346
|
-
item: factories['io.flow.internal.v0.models.hosein_item'](),
|
|
13347
|
-
}),
|
|
13348
|
-
|
|
13349
13444
|
'io.flow.internal.v0.models.hs6': (): io.flow.internal.v0.models.Hs6 => ({
|
|
13350
13445
|
code: factories.string(),
|
|
13351
13446
|
description: factories.string(),
|
|
@@ -13353,6 +13448,7 @@ const factories = {
|
|
|
13353
13448
|
|
|
13354
13449
|
'io.flow.internal.v0.models.hs6_metadata': (): io.flow.internal.v0.models.Hs6Metadata => ({
|
|
13355
13450
|
description: factories.string(),
|
|
13451
|
+
classification_source: factories['io.flow.internal.v0.enums.classification_source'](),
|
|
13356
13452
|
}),
|
|
13357
13453
|
|
|
13358
13454
|
'io.flow.internal.v0.models.import_completed': (): io.flow.internal.v0.models.ImportCompleted => ({
|
|
@@ -13865,11 +13961,6 @@ const factories = {
|
|
|
13865
13961
|
values: arrayOf(() => factories.string()),
|
|
13866
13962
|
}),
|
|
13867
13963
|
|
|
13868
|
-
'io.flow.internal.v0.models.jean_demo_item': (): io.flow.internal.v0.models.JeanDemoItem => ({
|
|
13869
|
-
id: factories.string(),
|
|
13870
|
-
name: factories.string(),
|
|
13871
|
-
}),
|
|
13872
|
-
|
|
13873
13964
|
'io.flow.internal.v0.models.journal': (): io.flow.internal.v0.models.Journal => ({
|
|
13874
13965
|
name: factories.string(),
|
|
13875
13966
|
queued: factories.integer(),
|
|
@@ -13993,34 +14084,6 @@ const factories = {
|
|
|
13993
14084
|
postal: factories.string(),
|
|
13994
14085
|
}),
|
|
13995
14086
|
|
|
13996
|
-
'io.flow.internal.v0.models.label_generation_settings': (): io.flow.internal.v0.models.LabelGenerationSettings => ({
|
|
13997
|
-
id: factories.string(),
|
|
13998
|
-
auto_generate_query: factories.string(),
|
|
13999
|
-
commercial_invoice_only_query: factories.string(),
|
|
14000
|
-
}),
|
|
14001
|
-
|
|
14002
|
-
'io.flow.internal.v0.models.label_generation_settings_deleted': (): io.flow.internal.v0.models.LabelGenerationSettingsDeleted => ({
|
|
14003
|
-
discriminator: 'label_generation_settings_deleted',
|
|
14004
|
-
event_id: factories.string(),
|
|
14005
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14006
|
-
organization: factories.string(),
|
|
14007
|
-
id: factories.string(),
|
|
14008
|
-
}),
|
|
14009
|
-
|
|
14010
|
-
'io.flow.internal.v0.models.label_generation_settings_form': (): io.flow.internal.v0.models.LabelGenerationSettingsForm => ({
|
|
14011
|
-
item_identifier: factories.string(),
|
|
14012
|
-
auto_generate_query: factories.string(),
|
|
14013
|
-
commercial_invoice_only_query: factories.string(),
|
|
14014
|
-
}),
|
|
14015
|
-
|
|
14016
|
-
'io.flow.internal.v0.models.label_generation_settings_upserted': (): io.flow.internal.v0.models.LabelGenerationSettingsUpserted => ({
|
|
14017
|
-
discriminator: 'label_generation_settings_upserted',
|
|
14018
|
-
event_id: factories.string(),
|
|
14019
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14020
|
-
organization: factories.string(),
|
|
14021
|
-
label_generation_settings: factories['io.flow.internal.v0.models.label_generation_settings'](),
|
|
14022
|
-
}),
|
|
14023
|
-
|
|
14024
14087
|
'io.flow.internal.v0.models.label_invoice_request': (): io.flow.internal.v0.models.LabelInvoiceRequest => ({
|
|
14025
14088
|
id: factories.string(),
|
|
14026
14089
|
label: factories['io.flow.internal.v0.models.trueup_label_summary'](),
|
|
@@ -14105,6 +14168,7 @@ const factories = {
|
|
|
14105
14168
|
reference_id: factories.string(),
|
|
14106
14169
|
logistics_integration_provider: factories.string(),
|
|
14107
14170
|
tax_lrp_liabilities: arrayOf(() => factories['io.flow.internal.v0.models.liability']()),
|
|
14171
|
+
channel_id: factories.string(),
|
|
14108
14172
|
}),
|
|
14109
14173
|
|
|
14110
14174
|
'io.flow.internal.v0.models.label_summary': (): io.flow.internal.v0.models.LabelSummary => ({
|
|
@@ -14529,6 +14593,7 @@ const factories = {
|
|
|
14529
14593
|
original_transaction: factories['io.flow.internal.v0.models.transaction_reference'](),
|
|
14530
14594
|
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
14531
14595
|
attributes: objectOf(() => factories.string()),
|
|
14596
|
+
recoup: factories.boolean(),
|
|
14532
14597
|
id: factories.string(),
|
|
14533
14598
|
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
14534
14599
|
status: factories['io.flow.internal.v0.enums.billing_transaction_status'](),
|
|
@@ -14546,6 +14611,7 @@ const factories = {
|
|
|
14546
14611
|
category: factories['io.flow.internal.v0.enums.manual_transaction_category'](),
|
|
14547
14612
|
order: factories['io.flow.internal.v0.models.manual_transaction_form_order'](),
|
|
14548
14613
|
original_transaction_id: factories.string(),
|
|
14614
|
+
recoup: factories.boolean(),
|
|
14549
14615
|
attributes: objectOf(() => factories.string()),
|
|
14550
14616
|
}),
|
|
14551
14617
|
|
|
@@ -14792,37 +14858,6 @@ const factories = {
|
|
|
14792
14858
|
conditions: factories.string(),
|
|
14793
14859
|
}),
|
|
14794
14860
|
|
|
14795
|
-
'io.flow.internal.v0.models.niall_item': (): io.flow.internal.v0.models.NiallItem => ({
|
|
14796
|
-
id: factories.string(),
|
|
14797
|
-
number: factories.string(),
|
|
14798
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
14799
|
-
description: factories.string(),
|
|
14800
|
-
type: factories['io.flow.internal.v0.enums.niall_item_type'](),
|
|
14801
|
-
added_on: factories.date_time_iso_8601(),
|
|
14802
|
-
}),
|
|
14803
|
-
|
|
14804
|
-
'io.flow.internal.v0.models.niall_item_deleted': (): io.flow.internal.v0.models.NiallItemDeleted => ({
|
|
14805
|
-
discriminator: 'niall_item_deleted',
|
|
14806
|
-
event_id: factories.string(),
|
|
14807
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14808
|
-
id: factories.string(),
|
|
14809
|
-
}),
|
|
14810
|
-
|
|
14811
|
-
'io.flow.internal.v0.models.niall_item_form': (): io.flow.internal.v0.models.NiallItemForm => ({
|
|
14812
|
-
number: factories.string(),
|
|
14813
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
14814
|
-
description: factories.string(),
|
|
14815
|
-
type: factories['io.flow.internal.v0.enums.niall_item_type'](),
|
|
14816
|
-
added_on: factories.date_time_iso_8601(),
|
|
14817
|
-
}),
|
|
14818
|
-
|
|
14819
|
-
'io.flow.internal.v0.models.niall_item_upserted': (): io.flow.internal.v0.models.NiallItemUpserted => ({
|
|
14820
|
-
discriminator: 'niall_item_upserted',
|
|
14821
|
-
event_id: factories.string(),
|
|
14822
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14823
|
-
item: factories['io.flow.internal.v0.models.niall_item'](),
|
|
14824
|
-
}),
|
|
14825
|
-
|
|
14826
14861
|
'io.flow.internal.v0.models.no_calculated_tax_amount': (): io.flow.internal.v0.models.NoCalculatedTaxAmount => ({
|
|
14827
14862
|
discriminator: 'no_calculated_tax_amount',
|
|
14828
14863
|
amount: factories.decimal(),
|
|
@@ -14911,6 +14946,7 @@ const factories = {
|
|
|
14911
14946
|
audit_result: factories['io.flow.internal.v0.enums.onboarding_audit_result'](),
|
|
14912
14947
|
blocked_since: factories.date_time_iso_8601(),
|
|
14913
14948
|
onboarding_segment: factories.string(),
|
|
14949
|
+
country: factories.string(),
|
|
14914
14950
|
}),
|
|
14915
14951
|
|
|
14916
14952
|
'io.flow.internal.v0.models.onboarding_state_form': (): io.flow.internal.v0.models.OnboardingStateForm => ({
|
|
@@ -15560,6 +15596,16 @@ const factories = {
|
|
|
15560
15596
|
organization_payment_setting: factories['io.flow.internal.v0.models.organization_payment_setting'](),
|
|
15561
15597
|
}),
|
|
15562
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
|
+
|
|
15563
15609
|
'io.flow.internal.v0.models.organization_restriction_note_form': (): io.flow.internal.v0.models.OrganizationRestrictionNoteForm => ({
|
|
15564
15610
|
note: factories.string(),
|
|
15565
15611
|
note_type: factories['io.flow.internal.v0.enums.organization_restriction_note_type'](),
|
|
@@ -15793,6 +15839,7 @@ const factories = {
|
|
|
15793
15839
|
label_transaction_id: factories.string(),
|
|
15794
15840
|
label_invoice_request_id: factories.string(),
|
|
15795
15841
|
carrier_charge_id: factories.string(),
|
|
15842
|
+
subtype: factories.string(),
|
|
15796
15843
|
}),
|
|
15797
15844
|
|
|
15798
15845
|
'io.flow.internal.v0.models.other_record_order_summary': (): io.flow.internal.v0.models.OtherRecordOrderSummary => ({
|
|
@@ -16418,23 +16465,6 @@ const factories = {
|
|
|
16418
16465
|
rate: factories.decimal(),
|
|
16419
16466
|
}),
|
|
16420
16467
|
|
|
16421
|
-
'io.flow.internal.v0.models.prateek_item': (): io.flow.internal.v0.models.PrateekItem => ({
|
|
16422
|
-
id: factories.string(),
|
|
16423
|
-
number: factories.string(),
|
|
16424
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
16425
|
-
description: factories.string(),
|
|
16426
|
-
type: factories['io.flow.internal.v0.enums.prateek_item_type'](),
|
|
16427
|
-
added_on: factories.date_iso_8601(),
|
|
16428
|
-
}),
|
|
16429
|
-
|
|
16430
|
-
'io.flow.internal.v0.models.prateek_item_form': (): io.flow.internal.v0.models.PrateekItemForm => ({
|
|
16431
|
-
number: factories.string(),
|
|
16432
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
16433
|
-
description: factories.string(),
|
|
16434
|
-
type: factories['io.flow.internal.v0.enums.prateek_item_type'](),
|
|
16435
|
-
added_on: factories.date_iso_8601(),
|
|
16436
|
-
}),
|
|
16437
|
-
|
|
16438
16468
|
'io.flow.internal.v0.models.prediction': (): io.flow.internal.v0.models.Prediction => ({
|
|
16439
16469
|
main_material: factories.string(),
|
|
16440
16470
|
gender: factories.string(),
|
|
@@ -16496,6 +16526,7 @@ const factories = {
|
|
|
16496
16526
|
}),
|
|
16497
16527
|
|
|
16498
16528
|
'io.flow.internal.v0.models.preonboarding_sellability_result': (): io.flow.internal.v0.models.PreonboardingSellabilityResult => ({
|
|
16529
|
+
id: factories.string(),
|
|
16499
16530
|
merchant_id: factories.string(),
|
|
16500
16531
|
product_id: factories.string(),
|
|
16501
16532
|
channel: factories.string(),
|
|
@@ -16516,6 +16547,28 @@ const factories = {
|
|
|
16516
16547
|
fingerprint: factories.string(),
|
|
16517
16548
|
}),
|
|
16518
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
|
+
|
|
16519
16572
|
'io.flow.internal.v0.models.price_inclusivity': (): io.flow.internal.v0.models.PriceInclusivity => ({
|
|
16520
16573
|
tax: factories.boolean(),
|
|
16521
16574
|
duty: factories.boolean(),
|
|
@@ -16794,10 +16847,23 @@ const factories = {
|
|
|
16794
16847
|
() => factories['io.flow.sellability.v0.models.sellability_region_result'](),
|
|
16795
16848
|
),
|
|
16796
16849
|
|
|
16797
|
-
|
|
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
|
+
),
|
|
16798
16863
|
}),
|
|
16799
16864
|
|
|
16800
16865
|
'io.flow.internal.v0.models.product_sellability_result': (): io.flow.internal.v0.models.ProductSellabilityResult => ({
|
|
16866
|
+
id: factories.string(),
|
|
16801
16867
|
shop_id: factories.string(),
|
|
16802
16868
|
product_number: factories.string(),
|
|
16803
16869
|
request_id: factories.string(),
|
|
@@ -16810,6 +16876,30 @@ const factories = {
|
|
|
16810
16876
|
|
|
16811
16877
|
rule_ids: arrayOf(() => factories.string()),
|
|
16812
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'](),
|
|
16813
16903
|
}),
|
|
16814
16904
|
|
|
16815
16905
|
'io.flow.internal.v0.models.product_transaction': (): io.flow.internal.v0.models.ProductTransaction => ({
|
|
@@ -17364,6 +17454,7 @@ const factories = {
|
|
|
17364
17454
|
source_type: factories['io.flow.internal.v0.enums.source_type_filter'](),
|
|
17365
17455
|
order_payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
17366
17456
|
amount_range: factories['io.flow.internal.v0.models.report_amount_range'](),
|
|
17457
|
+
account_currency: factories['io.flow.internal.v0.enums.account_currency_filter'](),
|
|
17367
17458
|
}),
|
|
17368
17459
|
|
|
17369
17460
|
'io.flow.internal.v0.models.report_form': (): io.flow.internal.v0.models.ReportForm => ({
|
|
@@ -18224,37 +18315,6 @@ const factories = {
|
|
|
18224
18315
|
revenue_record: factories['io.flow.internal.v0.models.revenue_record'](),
|
|
18225
18316
|
}),
|
|
18226
18317
|
|
|
18227
|
-
'io.flow.internal.v0.models.rohan_item': (): io.flow.internal.v0.models.RohanItem => ({
|
|
18228
|
-
id: factories.string(),
|
|
18229
|
-
number: factories.string(),
|
|
18230
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18231
|
-
description: factories.string(),
|
|
18232
|
-
type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
|
|
18233
|
-
added_on: factories.date_iso_8601(),
|
|
18234
|
-
}),
|
|
18235
|
-
|
|
18236
|
-
'io.flow.internal.v0.models.rohan_item_deleted': (): io.flow.internal.v0.models.RohanItemDeleted => ({
|
|
18237
|
-
discriminator: 'rohan_item_deleted',
|
|
18238
|
-
event_id: factories.string(),
|
|
18239
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18240
|
-
id: factories.string(),
|
|
18241
|
-
}),
|
|
18242
|
-
|
|
18243
|
-
'io.flow.internal.v0.models.rohan_item_form': (): io.flow.internal.v0.models.RohanItemForm => ({
|
|
18244
|
-
number: factories.string(),
|
|
18245
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18246
|
-
description: factories.string(),
|
|
18247
|
-
type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
|
|
18248
|
-
added_on: factories.date_iso_8601(),
|
|
18249
|
-
}),
|
|
18250
|
-
|
|
18251
|
-
'io.flow.internal.v0.models.rohan_item_upserted': (): io.flow.internal.v0.models.RohanItemUpserted => ({
|
|
18252
|
-
discriminator: 'rohan_item_upserted',
|
|
18253
|
-
event_id: factories.string(),
|
|
18254
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18255
|
-
item: factories['io.flow.internal.v0.models.rohan_item'](),
|
|
18256
|
-
}),
|
|
18257
|
-
|
|
18258
18318
|
'io.flow.internal.v0.models.routing_account': (): io.flow.internal.v0.models.RoutingAccount => ({
|
|
18259
18319
|
discriminator: 'routing_account',
|
|
18260
18320
|
processor: factories['io.flow.internal.v0.enums.processor'](),
|
|
@@ -18289,6 +18349,9 @@ const factories = {
|
|
|
18289
18349
|
price_inclusivity: factories['io.flow.internal.v0.models.price_inclusivity'](),
|
|
18290
18350
|
destination_country: factories.string(),
|
|
18291
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(),
|
|
18292
18355
|
}),
|
|
18293
18356
|
|
|
18294
18357
|
'io.flow.internal.v0.models.sandbox_setup': (): io.flow.internal.v0.models.SandboxSetup => ({
|
|
@@ -18299,37 +18362,6 @@ const factories = {
|
|
|
18299
18362
|
requested_by: factories.string(),
|
|
18300
18363
|
}),
|
|
18301
18364
|
|
|
18302
|
-
'io.flow.internal.v0.models.sarvesh_item': (): io.flow.internal.v0.models.SarveshItem => ({
|
|
18303
|
-
id: factories.string(),
|
|
18304
|
-
number: factories.string(),
|
|
18305
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18306
|
-
description: factories.string(),
|
|
18307
|
-
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
18308
|
-
added_on: factories.date_time_iso_8601(),
|
|
18309
|
-
}),
|
|
18310
|
-
|
|
18311
|
-
'io.flow.internal.v0.models.sarvesh_item_deleted': (): io.flow.internal.v0.models.SarveshItemDeleted => ({
|
|
18312
|
-
discriminator: 'sarvesh_item_deleted',
|
|
18313
|
-
event_id: factories.string(),
|
|
18314
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18315
|
-
id: factories.string(),
|
|
18316
|
-
}),
|
|
18317
|
-
|
|
18318
|
-
'io.flow.internal.v0.models.sarvesh_item_form': (): io.flow.internal.v0.models.SarveshItemForm => ({
|
|
18319
|
-
number: factories.string(),
|
|
18320
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
18321
|
-
description: factories.string(),
|
|
18322
|
-
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
18323
|
-
added_on: factories.date_time_iso_8601(),
|
|
18324
|
-
}),
|
|
18325
|
-
|
|
18326
|
-
'io.flow.internal.v0.models.sarvesh_item_upserted': (): io.flow.internal.v0.models.SarveshItemUpserted => ({
|
|
18327
|
-
discriminator: 'sarvesh_item_upserted',
|
|
18328
|
-
event_id: factories.string(),
|
|
18329
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18330
|
-
item: factories['io.flow.internal.v0.models.sarvesh_item'](),
|
|
18331
|
-
}),
|
|
18332
|
-
|
|
18333
18365
|
'io.flow.internal.v0.models.scheduled_payment': (): io.flow.internal.v0.models.ScheduledPayment => ({
|
|
18334
18366
|
payment: factories['io.flow.internal.v0.models.report_payment'](),
|
|
18335
18367
|
bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
|
|
@@ -18479,6 +18511,34 @@ const factories = {
|
|
|
18479
18511
|
cost: factories['io.flow.common.v0.models.money'](),
|
|
18480
18512
|
}),
|
|
18481
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
|
+
|
|
18482
18542
|
'io.flow.internal.v0.models.shipping_lane': (): io.flow.internal.v0.models.ShippingLane => ({
|
|
18483
18543
|
origin: factories.string(),
|
|
18484
18544
|
destination: factories.string(),
|
|
@@ -18541,6 +18601,27 @@ const factories = {
|
|
|
18541
18601
|
include_unpublished: factories.boolean(),
|
|
18542
18602
|
}),
|
|
18543
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
|
+
|
|
18544
18625
|
'io.flow.internal.v0.models.shopify_catalog_publication': (): io.flow.internal.v0.models.ShopifyCatalogPublication => ({
|
|
18545
18626
|
owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
|
|
18546
18627
|
}),
|
|
@@ -18554,6 +18635,13 @@ const factories = {
|
|
|
18554
18635
|
service: factories['io.flow.internal.v0.enums.shopify_service'](),
|
|
18555
18636
|
}),
|
|
18556
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
|
+
|
|
18557
18645
|
'io.flow.internal.v0.models.shopify_dispute': (): io.flow.internal.v0.models.ShopifyDispute => ({
|
|
18558
18646
|
id: factories.string(),
|
|
18559
18647
|
organization_id: factories.string(),
|
|
@@ -18915,6 +19003,15 @@ const factories = {
|
|
|
18915
19003
|
registration: factories['io.flow.internal.v0.models.shopify_markets_webhook_registration'](),
|
|
18916
19004
|
}),
|
|
18917
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
|
+
|
|
18918
19015
|
'io.flow.internal.v0.models.shopify_merchant_plan': (): io.flow.internal.v0.models.ShopifyMerchantPlan => ({
|
|
18919
19016
|
id: factories.string(),
|
|
18920
19017
|
authorization: factories['io.flow.payment.v0.models.authorization_reference'](),
|
|
@@ -18942,6 +19039,11 @@ const factories = {
|
|
|
18942
19039
|
token: factories.string(),
|
|
18943
19040
|
}),
|
|
18944
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
|
+
|
|
18945
19047
|
'io.flow.internal.v0.models.shopify_monitoring_carrier_service': (): io.flow.internal.v0.models.ShopifyMonitoringCarrierService => ({
|
|
18946
19048
|
service: factories.string(),
|
|
18947
19049
|
}),
|
|
@@ -19233,6 +19335,15 @@ const factories = {
|
|
|
19233
19335
|
deleted_at: factories.date_time_iso_8601(),
|
|
19234
19336
|
}),
|
|
19235
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
|
+
|
|
19236
19347
|
'io.flow.internal.v0.models.shopify_report_file_deleted': (): io.flow.internal.v0.models.ShopifyReportFileDeleted => ({
|
|
19237
19348
|
discriminator: 'shopify_report_file_deleted',
|
|
19238
19349
|
event_id: factories.string(),
|
|
@@ -19247,6 +19358,100 @@ const factories = {
|
|
|
19247
19358
|
shopify_report_file: factories['io.flow.internal.v0.models.report_file'](),
|
|
19248
19359
|
}),
|
|
19249
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
|
+
|
|
19250
19455
|
'io.flow.internal.v0.models.shopify_shop_statistics': (): io.flow.internal.v0.models.ShopifyShopStatistics => ({
|
|
19251
19456
|
id: factories.string(),
|
|
19252
19457
|
initial_catalog_synced_at: factories.date_time_iso_8601(),
|
|
@@ -19287,6 +19492,7 @@ const factories = {
|
|
|
19287
19492
|
|
|
19288
19493
|
'io.flow.internal.v0.models.shopify_test_order': (): io.flow.internal.v0.models.ShopifyTestOrder => ({
|
|
19289
19494
|
id: factories.string(),
|
|
19495
|
+
submitted_at: factories.date_time_iso_8601(),
|
|
19290
19496
|
}),
|
|
19291
19497
|
|
|
19292
19498
|
'io.flow.internal.v0.models.shopify_test_order_deleted': (): io.flow.internal.v0.models.ShopifyTestOrderDeleted => ({
|
|
@@ -19311,6 +19517,7 @@ const factories = {
|
|
|
19311
19517
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19312
19518
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19313
19519
|
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19520
|
+
subtotal: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19314
19521
|
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19315
19522
|
}),
|
|
19316
19523
|
|
|
@@ -20716,7 +20923,6 @@ const factories = {
|
|
|
20716
20923
|
fulfillment_key: factories.string(),
|
|
20717
20924
|
rex_number: factories.string(),
|
|
20718
20925
|
weee_number: factories.string(),
|
|
20719
|
-
generate_commercial_invoice_only: factories.boolean(),
|
|
20720
20926
|
liability_remittance_plan: factories['io.flow.internal.v0.models.liability_remittance_plan'](),
|
|
20721
20927
|
shipment_cost_summary: factories['io.flow.internal.v0.models.shipment_cost_summary'](),
|
|
20722
20928
|
shipping_label_hop_cost_itemized_estimate: factories['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'](),
|
|
@@ -21060,8 +21266,6 @@ const factories = {
|
|
|
21060
21266
|
() => factories['io.flow.internal.v0.models.calculator_organization_settings_deleted'](),
|
|
21061
21267
|
() => factories['io.flow.internal.v0.models.carrier_account_upserted_v2'](),
|
|
21062
21268
|
() => factories['io.flow.internal.v0.models.carrier_account_deleted'](),
|
|
21063
|
-
() => factories['io.flow.internal.v0.models.label_generation_settings_upserted'](),
|
|
21064
|
-
() => factories['io.flow.internal.v0.models.label_generation_settings_deleted'](),
|
|
21065
21269
|
() => factories['io.flow.internal.v0.models.catalog_import_request'](),
|
|
21066
21270
|
() => factories['io.flow.internal.v0.models.exclusion_rule_upserted'](),
|
|
21067
21271
|
() => factories['io.flow.internal.v0.models.exclusion_rule_deleted'](),
|
|
@@ -21131,6 +21335,8 @@ const factories = {
|
|
|
21131
21335
|
() => factories['io.flow.internal.v0.models.carrier_charge_deleted'](),
|
|
21132
21336
|
() => factories['io.flow.internal.v0.models.bank_payment_order_upserted'](),
|
|
21133
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'](),
|
|
21134
21340
|
() => factories['io.flow.internal.v0.models.fraud_review_upserted'](),
|
|
21135
21341
|
() => factories['io.flow.internal.v0.models.fraud_review_deleted'](),
|
|
21136
21342
|
() => factories['io.flow.internal.v0.models.fraud_pending_review_upserted'](),
|
|
@@ -21244,11 +21450,17 @@ const factories = {
|
|
|
21244
21450
|
() => factories['io.flow.internal.v0.models.paypal_refund_upserted'](),
|
|
21245
21451
|
() => factories['io.flow.internal.v0.models.paypal_dispute_upserted'](),
|
|
21246
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'](),
|
|
21247
21456
|
() => factories['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'](),
|
|
21248
21457
|
() => factories['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'](),
|
|
21249
21458
|
() => factories['io.flow.internal.v0.models.product_restriction_state_inserted'](),
|
|
21250
21459
|
() => factories['io.flow.internal.v0.models.product_restriction_state_updated'](),
|
|
21251
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'](),
|
|
21252
21464
|
() => factories['io.flow.internal.v0.models.order_rates_published_v3'](),
|
|
21253
21465
|
() => factories['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'](),
|
|
21254
21466
|
() => factories['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'](),
|
|
@@ -21346,22 +21558,10 @@ const factories = {
|
|
|
21346
21558
|
() => factories['io.flow.internal.v0.models.stripe_connect_report_record_deleted'](),
|
|
21347
21559
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](),
|
|
21348
21560
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](),
|
|
21349
|
-
() => factories['io.flow.internal.v0.models.anirban_item_upserted'](),
|
|
21350
|
-
() => factories['io.flow.internal.v0.models.anirban_item_deleted'](),
|
|
21351
|
-
() => factories['io.flow.internal.v0.models.sarvesh_item_upserted'](),
|
|
21352
|
-
() => factories['io.flow.internal.v0.models.sarvesh_item_deleted'](),
|
|
21353
|
-
() => factories['io.flow.internal.v0.models.hosein_item_upserted'](),
|
|
21354
|
-
() => factories['io.flow.internal.v0.models.hosein_item_deleted'](),
|
|
21355
|
-
() => factories['io.flow.internal.v0.models.niall_item_upserted'](),
|
|
21356
|
-
() => factories['io.flow.internal.v0.models.niall_item_deleted'](),
|
|
21357
|
-
() => factories['io.flow.internal.v0.models.rohan_item_upserted'](),
|
|
21358
|
-
() => factories['io.flow.internal.v0.models.rohan_item_deleted'](),
|
|
21359
|
-
() => factories['io.flow.internal.v0.models.aldo_item_upserted'](),
|
|
21360
|
-
() => factories['io.flow.internal.v0.models.aldo_item_deleted'](),
|
|
21361
|
-
() => factories['io.flow.internal.v0.models.ansh_item_upserted'](),
|
|
21362
|
-
() => factories['io.flow.internal.v0.models.ansh_item_deleted'](),
|
|
21363
21561
|
() => factories['io.flow.internal.v0.models.gabriel_item_upserted'](),
|
|
21364
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'](),
|
|
21365
21565
|
() => factories['io.flow.internal.v0.models.tracking_processing_error_upserted'](),
|
|
21366
21566
|
() => factories['io.flow.internal.v0.models.tracking_processing_error_deleted'](),
|
|
21367
21567
|
() => factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2'](),
|
|
@@ -21809,6 +22009,8 @@ const factories = {
|
|
|
21809
22009
|
() => factories['io.flow.internal.v0.models.accounting_return_metadata'](),
|
|
21810
22010
|
() => factories['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'](),
|
|
21811
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'](),
|
|
21812
22014
|
]);
|
|
21813
22015
|
|
|
21814
22016
|
return f();
|
|
@@ -22121,6 +22323,7 @@ const factories = {
|
|
|
22121
22323
|
'notification_requiring_crossdock',
|
|
22122
22324
|
'flow_simulation_sync',
|
|
22123
22325
|
'autogenerated',
|
|
22326
|
+
'legacy_shopify_graphql_server',
|
|
22124
22327
|
]),
|
|
22125
22328
|
|
|
22126
22329
|
'io.flow.label.v0.enums.label_trigger_method': (): io.flow.label.v0.enums.LabelTriggerMethod => faker.helpers.arrayElement(['autogenerated', 'on_demand']),
|
|
@@ -22485,7 +22688,6 @@ const factories = {
|
|
|
22485
22688
|
beneficiary_details: factories['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
22486
22689
|
other_trade_sector: factories.string(),
|
|
22487
22690
|
center_contact: factories['io.flow.merchant.onboarding.v0.models.operations_contact'](),
|
|
22488
|
-
center_address: factories['io.flow.common.v0.models.address'](),
|
|
22489
22691
|
average_order_weight: factories.decimal(),
|
|
22490
22692
|
average_order_weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
22491
22693
|
package_dimensions: arrayOf(() => factories['io.flow.common.v0.models.dimension']()),
|
|
@@ -22513,7 +22715,6 @@ const factories = {
|
|
|
22513
22715
|
beneficiary_details: factories['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
22514
22716
|
other_trade_sector: factories.string(),
|
|
22515
22717
|
center_contact: factories['io.flow.merchant.onboarding.v0.models.operations_contact'](),
|
|
22516
|
-
center_address: factories['io.flow.common.v0.models.address'](),
|
|
22517
22718
|
average_order_weight: factories.decimal(),
|
|
22518
22719
|
average_order_weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
22519
22720
|
package_dimensions: arrayOf(() => factories['io.flow.common.v0.models.dimension']()),
|
|
@@ -22614,6 +22815,7 @@ const factories = {
|
|
|
22614
22815
|
company: factories.string(),
|
|
22615
22816
|
email: factories.string(),
|
|
22616
22817
|
phone: factories.string(),
|
|
22818
|
+
address: factories['io.flow.common.v0.models.address'](),
|
|
22617
22819
|
}),
|
|
22618
22820
|
|
|
22619
22821
|
'io.flow.merchant.onboarding.v0.models.shop': (): io.flow.merchant.onboarding.v0.models.Shop => ({
|
|
@@ -22860,7 +23062,7 @@ const factories = {
|
|
|
22860
23062
|
'tip',
|
|
22861
23063
|
]),
|
|
22862
23064
|
|
|
22863
|
-
'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']),
|
|
22864
23066
|
|
|
22865
23067
|
'io.flow.order.price.v0.models.order_price_detail': (): io.flow.order.price.v0.models.OrderPriceDetail => ({
|
|
22866
23068
|
key: factories['io.flow.order.price.v0.enums.order_price_detail_key'](),
|
|
@@ -26310,6 +26512,12 @@ const factories = {
|
|
|
26310
26512
|
name: factories.string(),
|
|
26311
26513
|
}),
|
|
26312
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
|
+
|
|
26313
26521
|
'io.flow.ratecard.v0.models.ratecard_estimate_form': (): io.flow.ratecard.v0.models.RatecardEstimateForm => ({
|
|
26314
26522
|
origin_address: factories['io.flow.common.v0.models.address'](),
|
|
26315
26523
|
destination_address: factories['io.flow.common.v0.models.address'](),
|
|
@@ -26402,7 +26610,7 @@ const factories = {
|
|
|
26402
26610
|
glbe_shipping_method_id: factories.string(),
|
|
26403
26611
|
glbe_proposition_name: factories.string(),
|
|
26404
26612
|
channel_revenue_share_percentage: factories.decimal(),
|
|
26405
|
-
data:
|
|
26613
|
+
data: factories['io.flow.ratecard.v0.models.ratecard_data'](),
|
|
26406
26614
|
}),
|
|
26407
26615
|
|
|
26408
26616
|
'io.flow.ratecard.v0.models.ratecard_lane': (): io.flow.ratecard.v0.models.RatecardLane => ({
|
|
@@ -26819,6 +27027,11 @@ const factories = {
|
|
|
26819
27027
|
needs_action_attributes: arrayOf(
|
|
26820
27028
|
() => factories['io.flow.restrictions.v0.models.needs_action_attributes'](),
|
|
26821
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(),
|
|
26822
27035
|
}),
|
|
26823
27036
|
|
|
26824
27037
|
'io.flow.restrictions.v0.models.reasons_per_region': (): io.flow.restrictions.v0.models.ReasonsPerRegion => ({
|
|
@@ -26945,7 +27158,16 @@ const factories = {
|
|
|
26945
27158
|
]),
|
|
26946
27159
|
|
|
26947
27160
|
'io.flow.sellability.v0.enums.sellability_request_status': (): io.flow.sellability.v0.enums.SellabilityRequestStatus => faker.helpers.arrayElement(['commit']),
|
|
26948
|
-
|
|
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
|
+
|
|
26949
27171
|
'io.flow.sellability.v0.enums.sellability_result_status': (): io.flow.sellability.v0.enums.SellabilityResultStatus => faker.helpers.arrayElement(['in_review', 'succeeded', 'failed']),
|
|
26950
27172
|
'io.flow.sellability.v0.enums.sellability_screening_mode': (): io.flow.sellability.v0.enums.SellabilityScreeningMode => faker.helpers.arrayElement(['pre_onboarding', 'default_on', 'active']),
|
|
26951
27173
|
|
|
@@ -26974,6 +27196,7 @@ const factories = {
|
|
|
26974
27196
|
}),
|
|
26975
27197
|
|
|
26976
27198
|
'io.flow.sellability.v0.models.product_sellability_result': (): io.flow.sellability.v0.models.ProductSellabilityResult => ({
|
|
27199
|
+
id: factories.string(),
|
|
26977
27200
|
merchant_id: factories.string(),
|
|
26978
27201
|
product_id: factories.string(),
|
|
26979
27202
|
|
|
@@ -27002,12 +27225,14 @@ const factories = {
|
|
|
27002
27225
|
'io.flow.sellability.v0.models.sellability_needs_action_attributes': (): io.flow.sellability.v0.models.SellabilityNeedsActionAttributes => ({
|
|
27003
27226
|
reason_code: factories.string(),
|
|
27004
27227
|
category_metafield_handles: arrayOf(() => factories.string()),
|
|
27228
|
+
category_metafield_ids: arrayOf(() => factories.string()),
|
|
27005
27229
|
require_msds: factories.boolean(),
|
|
27006
27230
|
}),
|
|
27007
27231
|
|
|
27008
27232
|
'io.flow.sellability.v0.models.sellability_reason_with_regions': (): io.flow.sellability.v0.models.SellabilityReasonWithRegions => ({
|
|
27009
27233
|
reason: factories.string(),
|
|
27010
27234
|
regions: arrayOf(() => factories.string()),
|
|
27235
|
+
review_status: factories.string(),
|
|
27011
27236
|
}),
|
|
27012
27237
|
|
|
27013
27238
|
'io.flow.sellability.v0.models.sellability_region_result': (): io.flow.sellability.v0.models.SellabilityRegionResult => ({
|
|
@@ -28976,6 +29201,7 @@ const factories = {
|
|
|
28976
29201
|
|
|
28977
29202
|
'io.flow.shopify.markets.internal.v0.models.shopify_test_order': (): io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder => ({
|
|
28978
29203
|
id: factories.string(),
|
|
29204
|
+
submitted_at: factories.date_time_iso_8601(),
|
|
28979
29205
|
}),
|
|
28980
29206
|
|
|
28981
29207
|
'io.flow.shopify.markets.internal.v0.models.third_party_logistics_partner': (): io.flow.shopify.markets.internal.v0.models.ThirdPartyLogisticsPartner => ({
|
|
@@ -32395,6 +32621,7 @@ export const makeAccountContact = () => factories['io.flow.internal.v0.models.ac
|
|
|
32395
32621
|
export const makeAccountContactDeleted = () => factories['io.flow.internal.v0.models.account_contact_deleted']();
|
|
32396
32622
|
export const makeAccountContactForm = () => factories['io.flow.internal.v0.models.account_contact_form']();
|
|
32397
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']();
|
|
32398
32625
|
export const makeAccountDeletedV2 = () => factories['io.flow.internal.v0.models.account_deleted_v2']();
|
|
32399
32626
|
export const makeAccountDepositRule = () => factories['io.flow.internal.v0.models.account_deposit_rule']();
|
|
32400
32627
|
export const makeAccountDepositRuleForm = () => factories['io.flow.internal.v0.models.account_deposit_rule_form']();
|
|
@@ -32482,11 +32709,6 @@ export const makeAfterpayRefund = () => factories['io.flow.internal.v0.models.af
|
|
|
32482
32709
|
export const makeAfterpayRefundDeleted = () => factories['io.flow.internal.v0.models.afterpay_refund_deleted']();
|
|
32483
32710
|
export const makeAfterpayRefundUpserted = () => factories['io.flow.internal.v0.models.afterpay_refund_upserted']();
|
|
32484
32711
|
export const makeAftershipWebhook = () => factories['io.flow.internal.v0.models.aftership_webhook']();
|
|
32485
|
-
export const makeAldoItem = () => factories['io.flow.internal.v0.models.aldo_item']();
|
|
32486
|
-
export const makeAldoItemDeleted = () => factories['io.flow.internal.v0.models.aldo_item_deleted']();
|
|
32487
|
-
export const makeAldoItemForm = () => factories['io.flow.internal.v0.models.aldo_item_form']();
|
|
32488
|
-
export const makeAldoItemType = () => factories['io.flow.internal.v0.enums.aldo_item_type']();
|
|
32489
|
-
export const makeAldoItemUpserted = () => factories['io.flow.internal.v0.models.aldo_item_upserted']();
|
|
32490
32712
|
export const makeAllItemsExport = () => factories['io.flow.internal.v0.models.all_items_export']();
|
|
32491
32713
|
export const makeAllOrganizationsMembership = () => factories['io.flow.internal.v0.models.all_organizations_membership']();
|
|
32492
32714
|
export const makeAllocationItemReference = () => factories['io.flow.internal.v0.models.allocation_item_reference']();
|
|
@@ -32494,16 +32716,6 @@ export const makeAllowedLabels = () => factories['io.flow.internal.v0.models.all
|
|
|
32494
32716
|
export const makeAmruthaItem = () => factories['io.flow.internal.v0.models.amrutha_item']();
|
|
32495
32717
|
export const makeAmruthaItemForm = () => factories['io.flow.internal.v0.models.amrutha_item_form']();
|
|
32496
32718
|
export const makeAmruthaItemType = () => factories['io.flow.internal.v0.enums.amrutha_item_type']();
|
|
32497
|
-
export const makeAnirbanItem = () => factories['io.flow.internal.v0.models.anirban_item']();
|
|
32498
|
-
export const makeAnirbanItemDeleted = () => factories['io.flow.internal.v0.models.anirban_item_deleted']();
|
|
32499
|
-
export const makeAnirbanItemForm = () => factories['io.flow.internal.v0.models.anirban_item_form']();
|
|
32500
|
-
export const makeAnirbanItemType = () => factories['io.flow.internal.v0.enums.anirban_item_type']();
|
|
32501
|
-
export const makeAnirbanItemUpserted = () => factories['io.flow.internal.v0.models.anirban_item_upserted']();
|
|
32502
|
-
export const makeAnshItem = () => factories['io.flow.internal.v0.models.ansh_item']();
|
|
32503
|
-
export const makeAnshItemDeleted = () => factories['io.flow.internal.v0.models.ansh_item_deleted']();
|
|
32504
|
-
export const makeAnshItemForm = () => factories['io.flow.internal.v0.models.ansh_item_form']();
|
|
32505
|
-
export const makeAnshItemType = () => factories['io.flow.internal.v0.enums.ansh_item_type']();
|
|
32506
|
-
export const makeAnshItemUpserted = () => factories['io.flow.internal.v0.models.ansh_item_upserted']();
|
|
32507
32719
|
export const makeAnyDangerousGoods = () => factories['io.flow.internal.v0.enums.any_dangerous_goods']();
|
|
32508
32720
|
export const makeApiCallReferenceId = () => factories['io.flow.internal.v0.enums.api_call_reference_id']();
|
|
32509
32721
|
export const makeApplePayAuthorizationPayload = () => factories['io.flow.internal.v0.models.apple_pay_authorization_payload']();
|
|
@@ -32526,6 +32738,10 @@ export const makeAuthorizedOrderCharge = () => factories['io.flow.internal.v0.un
|
|
|
32526
32738
|
export const makeAuthorizedShippingCharge = () => factories['io.flow.internal.v0.models.authorized_shipping_charge']();
|
|
32527
32739
|
export const makeAutoRestrictRule = () => factories['io.flow.internal.v0.enums.auto_restrict_rule']();
|
|
32528
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']();
|
|
32529
32745
|
export const makeB2BTaxLedger = () => factories['io.flow.internal.v0.models.b2b_tax_ledger']();
|
|
32530
32746
|
export const makeB2BTaxLedgerDocumentType = () => factories['io.flow.internal.v0.enums.b2b_tax_ledger_document_type']();
|
|
32531
32747
|
export const makeB2BTaxLedgerForm = () => factories['io.flow.internal.v0.models.b2b_tax_ledger_form']();
|
|
@@ -32587,6 +32803,9 @@ export const makeBitpayAccountPutForm = () => factories['io.flow.internal.v0.mod
|
|
|
32587
32803
|
export const makeBitpayAuthentication = () => factories['io.flow.internal.v0.models.bitpay_authentication']();
|
|
32588
32804
|
export const makeBitpayAuthenticationDataReference = () => factories['io.flow.internal.v0.models.bitpay_authentication_data_reference']();
|
|
32589
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']();
|
|
32590
32809
|
export const makeBooleanFeatureDefaultValue = () => factories['io.flow.internal.v0.models.boolean_feature_default_value']();
|
|
32591
32810
|
export const makeBooleanFeatureRule = () => factories['io.flow.internal.v0.models.boolean_feature_rule']();
|
|
32592
32811
|
export const makeBooleanFeatureRuleForm = () => factories['io.flow.internal.v0.models.boolean_feature_rule_form']();
|
|
@@ -32758,6 +32977,11 @@ export const makeCheckoutSettings = () => factories['io.flow.internal.v0.models.
|
|
|
32758
32977
|
export const makeCheckoutShippingMethodPromptBehavior = () => factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior']();
|
|
32759
32978
|
export const makeCheckoutUrl = () => factories['io.flow.internal.v0.models.checkout_url']();
|
|
32760
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']();
|
|
32761
32985
|
export const makeCipher = () => factories['io.flow.internal.v0.models.cipher']();
|
|
32762
32986
|
export const makeCipherForm = () => factories['io.flow.internal.v0.models.cipher_form']();
|
|
32763
32987
|
export const makeCipherReference = () => factories['io.flow.internal.v0.models.cipher_reference']();
|
|
@@ -32791,6 +33015,7 @@ export const makeClassificationProductSummaryPage = () => factories['io.flow.int
|
|
|
32791
33015
|
export const makeClassificationRequeueRequest = () => factories['io.flow.internal.v0.models.classification_requeue_request']();
|
|
32792
33016
|
export const makeClassificationResponse = () => factories['io.flow.internal.v0.unions.classification_response']();
|
|
32793
33017
|
export const makeClassificationScope = () => factories['io.flow.internal.v0.enums.classification_scope']();
|
|
33018
|
+
export const makeClassificationSource = () => factories['io.flow.internal.v0.enums.classification_source']();
|
|
32794
33019
|
export const makeClassificationStatistics = () => factories['io.flow.internal.v0.models.classification_statistics']();
|
|
32795
33020
|
export const makeClassificationSummaryReportPayload = () => factories['io.flow.internal.v0.models.classification_summary_report_payload']();
|
|
32796
33021
|
export const makeClassificationTaxonomy = () => factories['io.flow.internal.v0.unions.classification_taxonomy']();
|
|
@@ -33135,6 +33360,7 @@ export const makeGeRevenueShareTransaction = () => factories['io.flow.internal.v
|
|
|
33135
33360
|
export const makeGeRevenueShareTransactionType = () => factories['io.flow.internal.v0.enums.ge_revenue_share_transaction_type']();
|
|
33136
33361
|
export const makeGenerateLoad = () => factories['io.flow.internal.v0.unions.generate_load']();
|
|
33137
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']();
|
|
33138
33364
|
export const makeGenerateLoadSingleOrg = () => factories['io.flow.internal.v0.models.generate_load_single_org']();
|
|
33139
33365
|
export const makeGenericValidationError = () => factories['io.flow.internal.v0.models.generic_validation_error']();
|
|
33140
33366
|
export const makeGiftCard = () => factories['io.flow.internal.v0.models.gift_card']();
|
|
@@ -33164,11 +33390,6 @@ export const makeHarmonizationThresholdForm = () => factories['io.flow.internal.
|
|
|
33164
33390
|
export const makeHarmonizationUnclassifiedStatistics = () => factories['io.flow.internal.v0.models.harmonization_unclassified_statistics']();
|
|
33165
33391
|
export const makeHarmonizeFullyRequestV2 = () => factories['io.flow.internal.v0.models.harmonize_fully_request_v2']();
|
|
33166
33392
|
export const makeHarmonizedItemsHs6Export = () => factories['io.flow.internal.v0.models.harmonized_items_hs6_export']();
|
|
33167
|
-
export const makeHoseinItem = () => factories['io.flow.internal.v0.models.hosein_item']();
|
|
33168
|
-
export const makeHoseinItemDeleted = () => factories['io.flow.internal.v0.models.hosein_item_deleted']();
|
|
33169
|
-
export const makeHoseinItemForm = () => factories['io.flow.internal.v0.models.hosein_item_form']();
|
|
33170
|
-
export const makeHoseinItemType = () => factories['io.flow.internal.v0.enums.hosein_item_type']();
|
|
33171
|
-
export const makeHoseinItemUpserted = () => factories['io.flow.internal.v0.models.hosein_item_upserted']();
|
|
33172
33393
|
export const makeHs6 = () => factories['io.flow.internal.v0.models.hs6']();
|
|
33173
33394
|
export const makeHs6CodeSource = () => factories['io.flow.internal.v0.enums.hs6_code_source']();
|
|
33174
33395
|
export const makeHs6Metadata = () => factories['io.flow.internal.v0.models.hs6_metadata']();
|
|
@@ -33242,7 +33463,6 @@ export const makeItemSalesMarginVersion = () => factories['io.flow.internal.v0.m
|
|
|
33242
33463
|
export const makeItemSummary = () => factories['io.flow.internal.v0.models.item_summary']();
|
|
33243
33464
|
export const makeItemType = () => factories['io.flow.internal.v0.enums.item_type']();
|
|
33244
33465
|
export const makeItemValuesForm = () => factories['io.flow.internal.v0.models.item_values_form']();
|
|
33245
|
-
export const makeJeanDemoItem = () => factories['io.flow.internal.v0.models.jean_demo_item']();
|
|
33246
33466
|
export const makeJournal = () => factories['io.flow.internal.v0.models.journal']();
|
|
33247
33467
|
export const makeJournalFailure = () => factories['io.flow.internal.v0.models.journal_failure']();
|
|
33248
33468
|
export const makeJournalOperation = () => factories['io.flow.internal.v0.enums.journal_operation']();
|
|
@@ -33269,10 +33489,6 @@ export const makeLabelCreationStatus = () => factories['io.flow.internal.v0.enum
|
|
|
33269
33489
|
export const makeLabelDestination = () => factories['io.flow.internal.v0.models.label_destination']();
|
|
33270
33490
|
export const makeLabelEventMedium = () => factories['io.flow.internal.v0.enums.label_event_medium']();
|
|
33271
33491
|
export const makeLabelEventSource = () => factories['io.flow.internal.v0.enums.label_event_source']();
|
|
33272
|
-
export const makeLabelGenerationSettings = () => factories['io.flow.internal.v0.models.label_generation_settings']();
|
|
33273
|
-
export const makeLabelGenerationSettingsDeleted = () => factories['io.flow.internal.v0.models.label_generation_settings_deleted']();
|
|
33274
|
-
export const makeLabelGenerationSettingsForm = () => factories['io.flow.internal.v0.models.label_generation_settings_form']();
|
|
33275
|
-
export const makeLabelGenerationSettingsUpserted = () => factories['io.flow.internal.v0.models.label_generation_settings_upserted']();
|
|
33276
33492
|
export const makeLabelInvoiceRequest = () => factories['io.flow.internal.v0.models.label_invoice_request']();
|
|
33277
33493
|
export const makeLabelInvoiceRequestDeleted = () => factories['io.flow.internal.v0.models.label_invoice_request_deleted']();
|
|
33278
33494
|
export const makeLabelInvoiceRequestUpserted = () => factories['io.flow.internal.v0.models.label_invoice_request_upserted']();
|
|
@@ -33380,11 +33596,6 @@ export const makeMixedBagWeight = () => factories['io.flow.internal.v0.enums.mix
|
|
|
33380
33596
|
export const makeNatureOfSale = () => factories['io.flow.internal.v0.enums.nature_of_sale']();
|
|
33381
33597
|
export const makeNegativeDebitMetrics = () => factories['io.flow.internal.v0.models.negative_debit_metrics']();
|
|
33382
33598
|
export const makeNextBillingStatement = () => factories['io.flow.internal.v0.models.next_billing_statement']();
|
|
33383
|
-
export const makeNiallItem = () => factories['io.flow.internal.v0.models.niall_item']();
|
|
33384
|
-
export const makeNiallItemDeleted = () => factories['io.flow.internal.v0.models.niall_item_deleted']();
|
|
33385
|
-
export const makeNiallItemForm = () => factories['io.flow.internal.v0.models.niall_item_form']();
|
|
33386
|
-
export const makeNiallItemType = () => factories['io.flow.internal.v0.enums.niall_item_type']();
|
|
33387
|
-
export const makeNiallItemUpserted = () => factories['io.flow.internal.v0.models.niall_item_upserted']();
|
|
33388
33599
|
export const makeNoCalculatedTaxAmount = () => factories['io.flow.internal.v0.models.no_calculated_tax_amount']();
|
|
33389
33600
|
export const makeNoClassificationForm = () => factories['io.flow.internal.v0.models.no_classification_form']();
|
|
33390
33601
|
export const makeNoLiabilityReasonCode = () => factories['io.flow.internal.v0.enums.no_liability_reason_code']();
|
|
@@ -33500,6 +33711,9 @@ export const makeOrganizationPaymentSettingForm = () => factories['io.flow.inter
|
|
|
33500
33711
|
export const makeOrganizationPaymentSettingUpserted = () => factories['io.flow.internal.v0.models.organization_payment_setting_upserted']();
|
|
33501
33712
|
export const makeOrganizationPaymentSettingVersion = () => factories['io.flow.internal.v0.models.organization_payment_setting_version']();
|
|
33502
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']();
|
|
33503
33717
|
export const makeOrganizationRestrictionApprovalStatus = () => factories['io.flow.internal.v0.enums.organization_restriction_approval_status']();
|
|
33504
33718
|
export const makeOrganizationRestrictionNoteForm = () => factories['io.flow.internal.v0.models.organization_restriction_note_form']();
|
|
33505
33719
|
export const makeOrganizationRestrictionNoteType = () => factories['io.flow.internal.v0.enums.organization_restriction_note_type']();
|
|
@@ -33622,9 +33836,6 @@ export const makePlatformFeeFlat = () => factories['io.flow.internal.v0.models.p
|
|
|
33622
33836
|
export const makePlatformFeePause = () => factories['io.flow.internal.v0.models.platform_fee_pause']();
|
|
33623
33837
|
export const makePlatformFeePercentage = () => factories['io.flow.internal.v0.models.platform_fee_percentage']();
|
|
33624
33838
|
export const makePlatformFeePercentageTier = () => factories['io.flow.internal.v0.models.platform_fee_percentage_tier']();
|
|
33625
|
-
export const makePrateekItem = () => factories['io.flow.internal.v0.models.prateek_item']();
|
|
33626
|
-
export const makePrateekItemForm = () => factories['io.flow.internal.v0.models.prateek_item_form']();
|
|
33627
|
-
export const makePrateekItemType = () => factories['io.flow.internal.v0.enums.prateek_item_type']();
|
|
33628
33839
|
export const makePrediction = () => factories['io.flow.internal.v0.models.prediction']();
|
|
33629
33840
|
export const makePreferredBillingSchedule = () => factories['io.flow.internal.v0.enums.preferred_billing_schedule']();
|
|
33630
33841
|
export const makePreonboardingClassificationDecision = () => factories['io.flow.internal.v0.enums.preonboarding_classification_decision']();
|
|
@@ -33637,6 +33848,9 @@ export const makePreonboardingClassificationType = () => factories['io.flow.inte
|
|
|
33637
33848
|
export const makePreonboardingMerchant = () => factories['io.flow.internal.v0.models.preonboarding_merchant']();
|
|
33638
33849
|
export const makePreonboardingRequestStatus = () => factories['io.flow.internal.v0.enums.preonboarding_request_status']();
|
|
33639
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']();
|
|
33640
33854
|
export const makePriceInclusivity = () => factories['io.flow.internal.v0.models.price_inclusivity']();
|
|
33641
33855
|
export const makePriceSelector = () => factories['io.flow.internal.v0.enums.price_selector']();
|
|
33642
33856
|
export const makePrioritizedCenterReference = () => factories['io.flow.internal.v0.models.prioritized_center_reference']();
|
|
@@ -33680,7 +33894,11 @@ export const makeProductReviewHistory = () => factories['io.flow.internal.v0.mod
|
|
|
33680
33894
|
export const makeProductSellabilityInternal = () => factories['io.flow.internal.v0.models.product_sellability_internal']();
|
|
33681
33895
|
export const makeProductSellabilityInternalForm = () => factories['io.flow.internal.v0.models.product_sellability_internal_form']();
|
|
33682
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']();
|
|
33683
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']();
|
|
33684
33902
|
export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
|
|
33685
33903
|
export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
|
|
33686
33904
|
export const makeProofOfPosting = () => factories['io.flow.internal.v0.unions.proof_of_posting']();
|
|
@@ -33891,11 +34109,6 @@ export const makeRevenueRecordType = () => factories['io.flow.internal.v0.enums.
|
|
|
33891
34109
|
export const makeRevenueRecordUpserted = () => factories['io.flow.internal.v0.models.revenue_record_upserted']();
|
|
33892
34110
|
export const makeRiskCheck = () => factories['io.flow.internal.v0.enums.risk_check']();
|
|
33893
34111
|
export const makeRiskEvaluation = () => factories['io.flow.internal.v0.enums.risk_evaluation']();
|
|
33894
|
-
export const makeRohanItem = () => factories['io.flow.internal.v0.models.rohan_item']();
|
|
33895
|
-
export const makeRohanItemDeleted = () => factories['io.flow.internal.v0.models.rohan_item_deleted']();
|
|
33896
|
-
export const makeRohanItemForm = () => factories['io.flow.internal.v0.models.rohan_item_form']();
|
|
33897
|
-
export const makeRohanItemType = () => factories['io.flow.internal.v0.enums.rohan_item_type']();
|
|
33898
|
-
export const makeRohanItemUpserted = () => factories['io.flow.internal.v0.models.rohan_item_upserted']();
|
|
33899
34112
|
export const makeRoutingAccount = () => factories['io.flow.internal.v0.models.routing_account']();
|
|
33900
34113
|
export const makeRoutingEntity = () => factories['io.flow.internal.v0.unions.routing_entity']();
|
|
33901
34114
|
export const makeRoutingMerchant = () => factories['io.flow.internal.v0.models.routing_merchant']();
|
|
@@ -33903,11 +34116,6 @@ export const makeRoutingProcessor = () => factories['io.flow.internal.v0.models.
|
|
|
33903
34116
|
export const makeSalesPaymentRecord = () => factories['io.flow.internal.v0.models.sales_payment_record']();
|
|
33904
34117
|
export const makeSandboxSetup = () => factories['io.flow.internal.v0.models.sandbox_setup']();
|
|
33905
34118
|
export const makeSandboxSetupForm = () => factories['io.flow.internal.v0.models.sandbox_setup_form']();
|
|
33906
|
-
export const makeSarveshItem = () => factories['io.flow.internal.v0.models.sarvesh_item']();
|
|
33907
|
-
export const makeSarveshItemDeleted = () => factories['io.flow.internal.v0.models.sarvesh_item_deleted']();
|
|
33908
|
-
export const makeSarveshItemForm = () => factories['io.flow.internal.v0.models.sarvesh_item_form']();
|
|
33909
|
-
export const makeSarveshItemType = () => factories['io.flow.internal.v0.enums.sarvesh_item_type']();
|
|
33910
|
-
export const makeSarveshItemUpserted = () => factories['io.flow.internal.v0.models.sarvesh_item_upserted']();
|
|
33911
34119
|
export const makeScheduledPayment = () => factories['io.flow.internal.v0.models.scheduled_payment']();
|
|
33912
34120
|
export const makeScreen = () => factories['io.flow.internal.v0.models.screen']();
|
|
33913
34121
|
export const makeScreenForm = () => factories['io.flow.internal.v0.models.screen_form']();
|
|
@@ -33923,20 +34131,32 @@ export const makeSearchProviderExport = () => factories['io.flow.internal.v0.mod
|
|
|
33923
34131
|
export const makeSearchTrackingSummary = () => factories['io.flow.internal.v0.models.search_tracking_summary']();
|
|
33924
34132
|
export const makeSellabilityCheckResult = () => factories['io.flow.internal.v0.models.sellability_check_result']();
|
|
33925
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']();
|
|
33926
34135
|
export const makeSellabilityStatus = () => factories['io.flow.internal.v0.enums.sellability_status']();
|
|
33927
34136
|
export const makeSessionOrderData = () => factories['io.flow.internal.v0.models.session_order_data']();
|
|
33928
34137
|
export const makeSetupBlockPutForm = () => factories['io.flow.internal.v0.models.setup_block_put_form']();
|
|
33929
34138
|
export const makeSfExpress = () => factories['io.flow.internal.v0.models.sf_express']();
|
|
33930
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']();
|
|
33931
34143
|
export const makeShippingLane = () => factories['io.flow.internal.v0.models.shipping_lane']();
|
|
33932
34144
|
export const makeShippingMethodReference = () => factories['io.flow.internal.v0.models.shipping_method_reference']();
|
|
33933
34145
|
export const makeShippingPricing = () => factories['io.flow.internal.v0.models.shipping_pricing']();
|
|
33934
34146
|
export const makeShippingRateEstimateAvailableInternal = () => factories['io.flow.internal.v0.models.shipping_rate_estimate_available_internal']();
|
|
33935
34147
|
export const makeShippingRateEstimateInternal = () => factories['io.flow.internal.v0.models.shipping_rate_estimate_internal']();
|
|
33936
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']();
|
|
33937
34153
|
export const makeShopifyCatalogPublication = () => factories['io.flow.internal.v0.models.shopify_catalog_publication']();
|
|
33938
34154
|
export const makeShopifyChannelOrganizationToken = () => factories['io.flow.internal.v0.models.shopify_channel_organization_token']();
|
|
33939
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']();
|
|
33940
34160
|
export const makeShopifyDispute = () => factories['io.flow.internal.v0.models.shopify_dispute']();
|
|
33941
34161
|
export const makeShopifyDisputeDeleted = () => factories['io.flow.internal.v0.models.shopify_dispute_deleted']();
|
|
33942
34162
|
export const makeShopifyDisputeUpserted = () => factories['io.flow.internal.v0.models.shopify_dispute_upserted']();
|
|
@@ -33944,6 +34164,7 @@ export const makeShopifyHs10Code = () => factories['io.flow.internal.v0.models.s
|
|
|
33944
34164
|
export const makeShopifyHs10Codes = () => factories['io.flow.internal.v0.models.shopify_hs10_codes']();
|
|
33945
34165
|
export const makeShopifyHs10CodesDeleted = () => factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted']();
|
|
33946
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']();
|
|
33947
34168
|
export const makeShopifyIncotermConfiguration = () => factories['io.flow.internal.v0.enums.shopify_incoterm_configuration']();
|
|
33948
34169
|
export const makeShopifyIncotermIncludes = () => factories['io.flow.internal.v0.models.shopify_incoterm_includes']();
|
|
33949
34170
|
export const makeShopifyIncotermSummaryErrorData = () => factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data']();
|
|
@@ -33990,10 +34211,12 @@ export const makeShopifyMarketsTradeSector = () => factories['io.flow.internal.v
|
|
|
33990
34211
|
export const makeShopifyMarketsWebhookRegistration = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration']();
|
|
33991
34212
|
export const makeShopifyMarketsWebhookRegistrationDeleted = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted']();
|
|
33992
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']();
|
|
33993
34215
|
export const makeShopifyMerchantPlan = () => factories['io.flow.internal.v0.models.shopify_merchant_plan']();
|
|
33994
34216
|
export const makeShopifyMerchantPlanDeleted = () => factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted']();
|
|
33995
34217
|
export const makeShopifyMerchantPlanUpserted = () => factories['io.flow.internal.v0.models.shopify_merchant_plan_upserted']();
|
|
33996
34218
|
export const makeShopifyMetadata = () => factories['io.flow.internal.v0.models.shopify_metadata']();
|
|
34219
|
+
export const makeShopifyMoney = () => factories['io.flow.internal.v0.models.shopify_money']();
|
|
33997
34220
|
export const makeShopifyMonitoringCarrierService = () => factories['io.flow.internal.v0.models.shopify_monitoring_carrier_service']();
|
|
33998
34221
|
export const makeShopifyMonitoringFulfillmentExternal = () => factories['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external']();
|
|
33999
34222
|
export const makeShopifyMonitoringFulfillmentMissingDetails = () => factories['io.flow.internal.v0.models.shopify_monitoring_fulfillment_missing_details']();
|
|
@@ -34017,6 +34240,7 @@ export const makeShopifyOrderRiskAssessmentUpserted = () => factories['io.flow.i
|
|
|
34017
34240
|
export const makeShopifyOrderTransaction = () => factories['io.flow.internal.v0.models.shopify_order_transaction']();
|
|
34018
34241
|
export const makeShopifyOrderTransactionDeleted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_deleted']();
|
|
34019
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']();
|
|
34020
34244
|
export const makeShopifyPartnerWebhook = () => factories['io.flow.internal.v0.models.shopify_partner_webhook']();
|
|
34021
34245
|
export const makeShopifyPartnerWebhookRaw = () => factories['io.flow.internal.v0.models.shopify_partner_webhook_raw']();
|
|
34022
34246
|
export const makeShopifyPlanType = () => factories['io.flow.internal.v0.enums.shopify_plan_type']();
|
|
@@ -34040,9 +34264,24 @@ export const makeShopifyProductUpdateDeleted = () => factories['io.flow.internal
|
|
|
34040
34264
|
export const makeShopifyProductUpdateUpserted = () => factories['io.flow.internal.v0.models.shopify_product_update_upserted']();
|
|
34041
34265
|
export const makeShopifyProductUpdateWebhookEvent = () => factories['io.flow.internal.v0.models.shopify_product_update_webhook_event']();
|
|
34042
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']();
|
|
34043
34269
|
export const makeShopifyReportFileDeleted = () => factories['io.flow.internal.v0.models.shopify_report_file_deleted']();
|
|
34044
34270
|
export const makeShopifyReportFileUpserted = () => factories['io.flow.internal.v0.models.shopify_report_file_upserted']();
|
|
34045
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']();
|
|
34046
34285
|
export const makeShopifyShopStatistics = () => factories['io.flow.internal.v0.models.shopify_shop_statistics']();
|
|
34047
34286
|
export const makeShopifyStoreDetail = () => factories['io.flow.internal.v0.models.shopify_store_detail']();
|
|
34048
34287
|
export const makeShopifyStripeEvent = () => factories['io.flow.internal.v0.models.shopify_stripe_event']();
|
|
@@ -34051,6 +34290,8 @@ export const makeShopifyTaxonomyAlignmentConfigForm = () => factories['io.flow.i
|
|
|
34051
34290
|
export const makeShopifyTestOrder = () => factories['io.flow.internal.v0.models.shopify_test_order']();
|
|
34052
34291
|
export const makeShopifyTestOrderDeleted = () => factories['io.flow.internal.v0.models.shopify_test_order_deleted']();
|
|
34053
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']();
|
|
34054
34295
|
export const makeShopperBreakdown = () => factories['io.flow.internal.v0.models.shopper_breakdown']();
|
|
34055
34296
|
export const makeShopperFees = () => factories['io.flow.internal.v0.models.shopper_fees']();
|
|
34056
34297
|
export const makeShopperFreight = () => factories['io.flow.internal.v0.models.shopper_freight']();
|