@flowio/api-internal-factories 0.0.140 → 0.0.144
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-internal.js +698 -398
- package/dist/esm/api-internal.js +596 -317
- package/dist/types/api-internal.d.ts +65 -44
- package/package.json +2 -3
- package/src/api-internal.ts +696 -353
package/dist/esm/api-internal.js
CHANGED
|
@@ -642,6 +642,13 @@ var factories = {
|
|
|
642
642
|
swift_code: factories.string(),
|
|
643
643
|
iban: factories.string(),
|
|
644
644
|
}); },
|
|
645
|
+
'io.flow.billing.bank.account.v0.models.bank_account_info_kor': function () { return ({
|
|
646
|
+
discriminator: 'kor',
|
|
647
|
+
name: factories.string(),
|
|
648
|
+
bank_account_number: factories.string(),
|
|
649
|
+
bank_routing_number: factories.string(),
|
|
650
|
+
bank_name: factories.string(),
|
|
651
|
+
}); },
|
|
645
652
|
'io.flow.billing.bank.account.v0.models.bank_account_info_usa': function () { return ({
|
|
646
653
|
discriminator: 'usa',
|
|
647
654
|
routing_number: factories.string(),
|
|
@@ -654,6 +661,7 @@ var factories = {
|
|
|
654
661
|
function () { return factories['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'](); },
|
|
655
662
|
function () { return factories['io.flow.billing.bank.account.v0.models.bank_account_info_fra'](); },
|
|
656
663
|
function () { return factories['io.flow.billing.bank.account.v0.models.bank_account_info_ita'](); },
|
|
664
|
+
function () { return factories['io.flow.billing.bank.account.v0.models.bank_account_info_kor'](); },
|
|
657
665
|
]);
|
|
658
666
|
return f();
|
|
659
667
|
},
|
|
@@ -672,6 +680,7 @@ var factories = {
|
|
|
672
680
|
'transfer',
|
|
673
681
|
'negative_balance_guarantee',
|
|
674
682
|
'sp',
|
|
683
|
+
'rev_share',
|
|
675
684
|
]); },
|
|
676
685
|
'io.flow.billing.v0.enums.payout_attachment_type': function () { return faker.helpers.arrayElement(['transactions']); },
|
|
677
686
|
'io.flow.billing.v0.enums.payout_status_failure_code': function () { return faker.helpers.arrayElement(['invalid_account_number', 'account_closed', 'could_not_process']); },
|
|
@@ -699,6 +708,7 @@ var factories = {
|
|
|
699
708
|
'wyol_shipment_above_de_min',
|
|
700
709
|
'full_refund_without_shipment',
|
|
701
710
|
'unfulfilled_order_above_de_min',
|
|
711
|
+
'order_cancellation_without_capture',
|
|
702
712
|
]); },
|
|
703
713
|
'io.flow.billing.v0.enums.transaction_source': function () { return faker.helpers.arrayElement([
|
|
704
714
|
'capture',
|
|
@@ -735,6 +745,8 @@ var factories = {
|
|
|
735
745
|
'merchant_fee',
|
|
736
746
|
'b2b_tax',
|
|
737
747
|
'b2b_tax_refund',
|
|
748
|
+
'b2b_fee_mor_tax',
|
|
749
|
+
'b2b_fee_shipping_tax',
|
|
738
750
|
]); },
|
|
739
751
|
'io.flow.billing.v0.enums.trueup_source': function () { return faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']); },
|
|
740
752
|
'io.flow.billing.v0.enums.withholding_deduction_type': function () { return faker.helpers.arrayElement(['tax', 'duty', 'freight', 'insurance']); },
|
|
@@ -1020,6 +1032,17 @@ var factories = {
|
|
|
1020
1032
|
description: factories.string(),
|
|
1021
1033
|
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
1022
1034
|
url: factories.string(),
|
|
1035
|
+
recoup: factories.boolean(),
|
|
1036
|
+
}); },
|
|
1037
|
+
'io.flow.billing.v0.models.transaction_metadata_merchant_fee': function () { return ({
|
|
1038
|
+
discriminator: 'merchant_fee',
|
|
1039
|
+
items: arrayOf(function () { return factories['io.flow.billing.v0.models.transaction_metadata_merchant_fee_item'](); }),
|
|
1040
|
+
}); },
|
|
1041
|
+
'io.flow.billing.v0.models.transaction_metadata_merchant_fee_item': function () { return ({
|
|
1042
|
+
type: factories.string(),
|
|
1043
|
+
amount: factories.decimal(),
|
|
1044
|
+
local_amount: factories.decimal(),
|
|
1045
|
+
description: factories.string(),
|
|
1023
1046
|
}); },
|
|
1024
1047
|
'io.flow.billing.v0.models.transaction_metadata_original_transaction': function () { return ({
|
|
1025
1048
|
id: factories.string(),
|
|
@@ -1174,6 +1197,7 @@ var factories = {
|
|
|
1174
1197
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_failed_payout'](); },
|
|
1175
1198
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](); },
|
|
1176
1199
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_tax_duty'](); },
|
|
1200
|
+
function () { return factories['io.flow.billing.v0.models.transaction_metadata_merchant_fee'](); },
|
|
1177
1201
|
]);
|
|
1178
1202
|
return f();
|
|
1179
1203
|
},
|
|
@@ -2244,6 +2268,7 @@ var factories = {
|
|
|
2244
2268
|
'io.flow.common.v0.models.line_item_form': function () { return ({
|
|
2245
2269
|
number: factories.string(),
|
|
2246
2270
|
quantity: factories.long(),
|
|
2271
|
+
line_item_identifier: factories.string(),
|
|
2247
2272
|
shipment_estimate: factories['io.flow.common.v0.models.datetime_range'](),
|
|
2248
2273
|
price: factories['io.flow.common.v0.models.money'](),
|
|
2249
2274
|
attributes: objectOf(function () { return factories.string(); }),
|
|
@@ -2517,6 +2542,7 @@ var factories = {
|
|
|
2517
2542
|
b2b_invoice_type: factories['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'](),
|
|
2518
2543
|
center: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'](),
|
|
2519
2544
|
order: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'](),
|
|
2545
|
+
voids_b2b_invoice: factories.boolean(),
|
|
2520
2546
|
}); },
|
|
2521
2547
|
'io.flow.consumer.invoice.v0.models.b2b_invoice': function () { return ({
|
|
2522
2548
|
id: factories.string(),
|
|
@@ -2886,6 +2912,7 @@ var factories = {
|
|
|
2886
2912
|
'io.flow.experience.v0.enums.organization_payment_method_tag': function () { return faker.helpers.arrayElement(['deny']); },
|
|
2887
2913
|
'io.flow.experience.v0.enums.payment_method_rule_content_key': function () { return faker.helpers.arrayElement(['description']); },
|
|
2888
2914
|
'io.flow.experience.v0.enums.price_facet_boundary': function () { return faker.helpers.arrayElement(['min', 'max']); },
|
|
2915
|
+
'io.flow.experience.v0.enums.pricing_type': function () { return faker.helpers.arrayElement(['inclusive_pricing']); },
|
|
2889
2916
|
'io.flow.experience.v0.enums.promotion_trigger_type': function () { return faker.helpers.arrayElement(['automatic', 'order_subtotal']); },
|
|
2890
2917
|
'io.flow.experience.v0.models.address_configuration': function () { return ({
|
|
2891
2918
|
country: factories.string(),
|
|
@@ -3420,6 +3447,7 @@ var factories = {
|
|
|
3420
3447
|
payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
3421
3448
|
edits: arrayOf(function () { return factories['io.flow.experience.v0.models.edit_summary'](); }),
|
|
3422
3449
|
rates: arrayOf(function () { return factories['io.flow.experience.v0.models.order_rate'](); }),
|
|
3450
|
+
pricing_type: factories['io.flow.experience.v0.enums.pricing_type'](),
|
|
3423
3451
|
}); },
|
|
3424
3452
|
'io.flow.experience.v0.models.order_address': function () { return ({
|
|
3425
3453
|
text: factories.string(),
|
|
@@ -5769,6 +5797,10 @@ var factories = {
|
|
|
5769
5797
|
company_name_match_result: factories['io.flow.harmonization.v0.enums.tax_verification_result'](),
|
|
5770
5798
|
company_name_match_result_reason: factories.string(),
|
|
5771
5799
|
}); },
|
|
5800
|
+
'io.flow.harmonization.v0.models.harmonization_tariff_code': function () { return ({
|
|
5801
|
+
tariff_code: factories.string(),
|
|
5802
|
+
destination: factories.string(),
|
|
5803
|
+
}); },
|
|
5772
5804
|
'io.flow.harmonization.v0.models.harmonized_category_reference': function () { return ({
|
|
5773
5805
|
id: factories.string(),
|
|
5774
5806
|
}); },
|
|
@@ -5852,6 +5884,12 @@ var factories = {
|
|
|
5852
5884
|
effective_duty: factories['io.flow.price.v0.models.duty'](),
|
|
5853
5885
|
tax: factories['io.flow.price.v0.models.tax'](),
|
|
5854
5886
|
}); },
|
|
5887
|
+
'io.flow.harmonization.v0.models.tariff_codes': function () { return ({
|
|
5888
|
+
item_number: factories.string(),
|
|
5889
|
+
product_id: factories.string(),
|
|
5890
|
+
hs6_code: factories.string(),
|
|
5891
|
+
codes: arrayOf(function () { return factories['io.flow.harmonization.v0.models.harmonization_tariff_code'](); }),
|
|
5892
|
+
}); },
|
|
5855
5893
|
'io.flow.harmonization.v0.models.tax_registration': function () { return ({
|
|
5856
5894
|
id: factories.string(),
|
|
5857
5895
|
key: factories.string(),
|
|
@@ -5867,14 +5905,13 @@ var factories = {
|
|
|
5867
5905
|
number: factories.string(),
|
|
5868
5906
|
company_name: factories.string(),
|
|
5869
5907
|
}); },
|
|
5908
|
+
'io.flow.internal.v0.enums.account_currency_filter': function () { return faker.helpers.arrayElement(['GBP', 'CAD', 'USD']); },
|
|
5870
5909
|
'io.flow.internal.v0.enums.account_payment_hold_reason': function () { return faker.helpers.arrayElement(['fraudulent', 'frozen', 'invalid_bank_account']); },
|
|
5871
5910
|
'io.flow.internal.v0.enums.account_setting_liabilities_method': function () { return faker.helpers.arrayElement(['withholding', 'transaction']); },
|
|
5872
5911
|
'io.flow.internal.v0.enums.account_type': function () { return faker.helpers.arrayElement(['channel', 'organization']); },
|
|
5873
5912
|
'io.flow.internal.v0.enums.adjustment_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal']); },
|
|
5874
5913
|
'io.flow.internal.v0.enums.adyen_integration_type': function () { return faker.helpers.arrayElement(['hosted_payment_page', 'checkout_payments_api', 'classic_authorise_api']); },
|
|
5875
|
-
'io.flow.internal.v0.enums.
|
|
5876
|
-
'io.flow.internal.v0.enums.anirban_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5877
|
-
'io.flow.internal.v0.enums.ansh_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5914
|
+
'io.flow.internal.v0.enums.amrutha_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5878
5915
|
'io.flow.internal.v0.enums.any_dangerous_goods': function () { return faker.helpers.arrayElement(['yes', 'no', 'i_dont_know']); },
|
|
5879
5916
|
'io.flow.internal.v0.enums.api_call_reference_id': function () { return faker.helpers.arrayElement(['duty_rates_data_event', 'integration_test', 'unit_test']); },
|
|
5880
5917
|
'io.flow.internal.v0.enums.applicable_preferential_rate': function () { return faker.helpers.arrayElement(['baby', 'children']); },
|
|
@@ -5894,6 +5931,8 @@ var factories = {
|
|
|
5894
5931
|
'prr-566cc67167944bc4bd08167aa9c0beba',
|
|
5895
5932
|
'prr-74e1320efb7741cf9ace400b69800f9b',
|
|
5896
5933
|
]); },
|
|
5934
|
+
'io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type': function () { return faker.helpers.arrayElement(['capture', 'order']); },
|
|
5935
|
+
'io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type': function () { return faker.helpers.arrayElement(['label', 'trueup']); },
|
|
5897
5936
|
'io.flow.internal.v0.enums.b2b_tax_ledger_document_type': function () { return faker.helpers.arrayElement(['b2b_invoice', 'b2b_credit_memo']); },
|
|
5898
5937
|
'io.flow.internal.v0.enums.b2b_tax_rate_type': function () { return faker.helpers.arrayElement(['basic', 'preferential', 'exempt']); },
|
|
5899
5938
|
'io.flow.internal.v0.enums.bank_account_status': function () { return faker.helpers.arrayElement(['on_hold', 'not_on_hold']); },
|
|
@@ -6172,7 +6211,10 @@ var factories = {
|
|
|
6172
6211
|
'merchant_refund',
|
|
6173
6212
|
'b2b_tax',
|
|
6174
6213
|
'b2b_tax_refund',
|
|
6214
|
+
'b2b_fee_mor_tax',
|
|
6215
|
+
'b2b_fee_shipping_tax',
|
|
6175
6216
|
]); },
|
|
6217
|
+
'io.flow.internal.v0.enums.bojana_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
6176
6218
|
'io.flow.internal.v0.enums.calculator_engine': function () { return faker.helpers.arrayElement(['dtce_with_deminimis', 'dtce_with_inclusive_pricing', 'dtce_and_us_tax']); },
|
|
6177
6219
|
'io.flow.internal.v0.enums.carrier_charge_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']); },
|
|
6178
6220
|
'io.flow.internal.v0.enums.carrier_charge_type': function () { return faker.helpers.arrayElement(['label', 'tax', 'other']); },
|
|
@@ -6256,11 +6298,13 @@ var factories = {
|
|
|
6256
6298
|
'io.flow.internal.v0.enums.checkout_prompt_behavior': function () { return faker.helpers.arrayElement(['always', 'incomplete']); },
|
|
6257
6299
|
'io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior': function () { return faker.helpers.arrayElement(['always', 'multiple']); },
|
|
6258
6300
|
'io.flow.internal.v0.enums.checkout_url_type': function () { return faker.helpers.arrayElement(['continue_shopping', 'confirmation', 'invalid_checkout']); },
|
|
6301
|
+
'io.flow.internal.v0.enums.chenglin_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
6259
6302
|
'io.flow.internal.v0.enums.classification_decision': function () { return faker.helpers.arrayElement(['Accept', 'Reject']); },
|
|
6260
6303
|
'io.flow.internal.v0.enums.classification_error_code': function () { return faker.helpers.arrayElement(['generic_error']); },
|
|
6261
|
-
'io.flow.internal.v0.enums.classification_failure_reason': function () { return faker.helpers.arrayElement(['low_confidence', 'timeout']); },
|
|
6304
|
+
'io.flow.internal.v0.enums.classification_failure_reason': function () { return faker.helpers.arrayElement(['low_confidence', 'timeout', 'missing_hs6_code', 'invalid_price']); },
|
|
6262
6305
|
'io.flow.internal.v0.enums.classification_platform': function () { return faker.helpers.arrayElement(['GlobalE', 'Flow', 'FlowOnboarding', 'Borderfree']); },
|
|
6263
6306
|
'io.flow.internal.v0.enums.classification_scope': function () { return faker.helpers.arrayElement(['Item', 'Product']); },
|
|
6307
|
+
'io.flow.internal.v0.enums.classification_source': function () { return faker.helpers.arrayElement(['sellability']); },
|
|
6264
6308
|
'io.flow.internal.v0.enums.classification_type': function () { return faker.helpers.arrayElement(['None', 'Manual', 'ML', 'System']); },
|
|
6265
6309
|
'io.flow.internal.v0.enums.clothing_age_classification': function () { return faker.helpers.arrayElement(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']); },
|
|
6266
6310
|
'io.flow.internal.v0.enums.commercial_invoice_version': function () { return faker.helpers.arrayElement(['v2_2_1']); },
|
|
@@ -6382,8 +6426,6 @@ var factories = {
|
|
|
6382
6426
|
'calculator_organization_settings_deleted',
|
|
6383
6427
|
'carrier_account_upserted_v2',
|
|
6384
6428
|
'carrier_account_deleted',
|
|
6385
|
-
'label_generation_settings_upserted',
|
|
6386
|
-
'label_generation_settings_deleted',
|
|
6387
6429
|
'catalog_import_request',
|
|
6388
6430
|
'exclusion_rule_upserted',
|
|
6389
6431
|
'exclusion_rule_deleted',
|
|
@@ -6453,6 +6495,8 @@ var factories = {
|
|
|
6453
6495
|
'carrier_charge_deleted',
|
|
6454
6496
|
'bank_payment_order_upserted',
|
|
6455
6497
|
'bank_payment_order_deleted',
|
|
6498
|
+
'shipping_cost_upserted',
|
|
6499
|
+
'shipping_cost_deleted',
|
|
6456
6500
|
'fraud_review_upserted',
|
|
6457
6501
|
'fraud_review_deleted',
|
|
6458
6502
|
'fraud_pending_review_upserted',
|
|
@@ -6566,11 +6610,17 @@ var factories = {
|
|
|
6566
6610
|
'paypal_refund_upserted',
|
|
6567
6611
|
'paypal_dispute_upserted',
|
|
6568
6612
|
'paypal_dispute_deleted',
|
|
6613
|
+
'preonboarding_sellability_result_inserted',
|
|
6614
|
+
'preonboarding_sellability_result_updated',
|
|
6615
|
+
'preonboarding_sellability_result_deleted',
|
|
6569
6616
|
'product_restriction_rule_decision_upserted',
|
|
6570
6617
|
'product_restriction_rule_decision_deleted',
|
|
6571
6618
|
'product_restriction_state_inserted',
|
|
6572
6619
|
'product_restriction_state_updated',
|
|
6573
6620
|
'product_restriction_state_deleted',
|
|
6621
|
+
'product_sellability_result_inserted',
|
|
6622
|
+
'product_sellability_result_updated',
|
|
6623
|
+
'product_sellability_result_deleted',
|
|
6574
6624
|
'order_rates_published_v3',
|
|
6575
6625
|
'ratecard_dimension_estimate_upserted',
|
|
6576
6626
|
'ratecard_dimension_estimate_deleted',
|
|
@@ -6630,6 +6680,8 @@ var factories = {
|
|
|
6630
6680
|
'shopify_order_risk_assessment_deleted',
|
|
6631
6681
|
'shopify_order_transaction_upserted',
|
|
6632
6682
|
'shopify_order_transaction_deleted',
|
|
6683
|
+
'shopify_test_order_upserted',
|
|
6684
|
+
'shopify_test_order_deleted',
|
|
6633
6685
|
'shopify_product_create_upserted',
|
|
6634
6686
|
'shopify_product_create_deleted',
|
|
6635
6687
|
'shopify_product_update_upserted',
|
|
@@ -6666,22 +6718,10 @@ var factories = {
|
|
|
6666
6718
|
'stripe_connect_report_record_deleted',
|
|
6667
6719
|
'liability_remittance_plan_upserted',
|
|
6668
6720
|
'liability_remittance_plan_deleted',
|
|
6669
|
-
'anirban_item_upserted',
|
|
6670
|
-
'anirban_item_deleted',
|
|
6671
|
-
'sarvesh_item_upserted',
|
|
6672
|
-
'sarvesh_item_deleted',
|
|
6673
|
-
'hosein_item_upserted',
|
|
6674
|
-
'hosein_item_deleted',
|
|
6675
|
-
'niall_item_upserted',
|
|
6676
|
-
'niall_item_deleted',
|
|
6677
|
-
'rohan_item_upserted',
|
|
6678
|
-
'rohan_item_deleted',
|
|
6679
|
-
'aldo_item_upserted',
|
|
6680
|
-
'aldo_item_deleted',
|
|
6681
|
-
'ansh_item_upserted',
|
|
6682
|
-
'ansh_item_deleted',
|
|
6683
6721
|
'gabriel_item_upserted',
|
|
6684
6722
|
'gabriel_item_deleted',
|
|
6723
|
+
'chenglin_item_upserted',
|
|
6724
|
+
'chenglin_item_deleted',
|
|
6685
6725
|
'tracking_processing_error_upserted',
|
|
6686
6726
|
'tracking_processing_error_deleted',
|
|
6687
6727
|
'tracking_label_event_upserted_v2',
|
|
@@ -6732,7 +6772,6 @@ var factories = {
|
|
|
6732
6772
|
'shopify_webhook',
|
|
6733
6773
|
]); },
|
|
6734
6774
|
'io.flow.internal.v0.enums.harmonization_decision_source': function () { return faker.helpers.arrayElement(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']); },
|
|
6735
|
-
'io.flow.internal.v0.enums.hosein_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
6736
6775
|
'io.flow.internal.v0.enums.hs6_code_source': function () { return faker.helpers.arrayElement(['sellability', 'classification', 'human']); },
|
|
6737
6776
|
'io.flow.internal.v0.enums.http_method': function () { return faker.helpers.arrayElement(['get', 'post']); },
|
|
6738
6777
|
'io.flow.internal.v0.enums.internal_payment_entity_type': function () { return faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'dispute']); },
|
|
@@ -6771,10 +6810,13 @@ var factories = {
|
|
|
6771
6810
|
'globale_system',
|
|
6772
6811
|
'carrier',
|
|
6773
6812
|
]); },
|
|
6774
|
-
'io.flow.internal.v0.enums.label_request_result_organization_type': function () { return faker.helpers.arrayElement(['all', '
|
|
6813
|
+
'io.flow.internal.v0.enums.label_request_result_organization_type': function () { return faker.helpers.arrayElement(['all', 'cafe24_production', 'shopify_production', 'sandbox']); },
|
|
6775
6814
|
'io.flow.internal.v0.enums.label_request_result_state': function () { return faker.helpers.arrayElement(['success', 'failure']); },
|
|
6776
6815
|
'io.flow.internal.v0.enums.label_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']); },
|
|
6777
|
-
'io.flow.internal.v0.enums.ledger_report_type': function () { return faker.helpers.arrayElement([
|
|
6816
|
+
'io.flow.internal.v0.enums.ledger_report_type': function () { return faker.helpers.arrayElement([
|
|
6817
|
+
'periodic_mor_jurisdiction_report',
|
|
6818
|
+
'periodic_mor_jurisdiction_sandbox_report',
|
|
6819
|
+
]); },
|
|
6778
6820
|
'io.flow.internal.v0.enums.ledger_report_url_type': function () { return faker.helpers.arrayElement(['sharepoint', 's3']); },
|
|
6779
6821
|
'io.flow.internal.v0.enums.liability_type': function () { return faker.helpers.arrayElement(['full_value_tax', 'low_value_goods_tax', 'high_value_goods_tax', 'duties']); },
|
|
6780
6822
|
'io.flow.internal.v0.enums.logistics_capability': function () { return faker.helpers.arrayElement(['logistics_address_correction']); },
|
|
@@ -6795,6 +6837,7 @@ var factories = {
|
|
|
6795
6837
|
'negative_balance_guarantee',
|
|
6796
6838
|
'bank_payment_failure',
|
|
6797
6839
|
'non_fraud_chargeback',
|
|
6840
|
+
'v1_migration_neg_balance_settlement',
|
|
6798
6841
|
]); },
|
|
6799
6842
|
'io.flow.internal.v0.enums.merchant_fee_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'fee']); },
|
|
6800
6843
|
'io.flow.internal.v0.enums.merchant_of_record': function () { return faker.helpers.arrayElement([
|
|
@@ -6817,7 +6860,6 @@ var factories = {
|
|
|
6817
6860
|
'to_registered_business',
|
|
6818
6861
|
'flash_title',
|
|
6819
6862
|
]); },
|
|
6820
|
-
'io.flow.internal.v0.enums.niall_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
6821
6863
|
'io.flow.internal.v0.enums.no_liability_reason_code': function () { return faker.helpers.arrayElement([
|
|
6822
6864
|
'zero_basis',
|
|
6823
6865
|
'zero_rate_on_goods',
|
|
@@ -6893,6 +6935,7 @@ var factories = {
|
|
|
6893
6935
|
'io.flow.internal.v0.enums.organization_capability': function () { return faker.helpers.arrayElement(['organization', 'flow', 'dynamic']); },
|
|
6894
6936
|
'io.flow.internal.v0.enums.organization_metric_type': function () { return faker.helpers.arrayElement(['organization_restriction_status']); },
|
|
6895
6937
|
'io.flow.internal.v0.enums.organization_payment_status': function () { return faker.helpers.arrayElement(['active', 'archived']); },
|
|
6938
|
+
'io.flow.internal.v0.enums.organization_promotion_status': function () { return faker.helpers.arrayElement(['in_progress', 'completed', 'failed']); },
|
|
6896
6939
|
'io.flow.internal.v0.enums.organization_restriction_approval_status': function () { return faker.helpers.arrayElement(['ready', 'not-ready']); },
|
|
6897
6940
|
'io.flow.internal.v0.enums.organization_restriction_note_type': function () { return faker.helpers.arrayElement(['internal', 'rejection_reason', 'additional_rejection_info']); },
|
|
6898
6941
|
'io.flow.internal.v0.enums.organization_restriction_review_type': function () { return faker.helpers.arrayElement(['all_pending', 'pending_verification']); },
|
|
@@ -6917,7 +6960,6 @@ var factories = {
|
|
|
6917
6960
|
'io.flow.internal.v0.enums.payment_summary_type': function () { return faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'reversal', 'credit']); },
|
|
6918
6961
|
'io.flow.internal.v0.enums.payment_term': function () { return faker.helpers.arrayElement(['net7', 'net15', 'net30']); },
|
|
6919
6962
|
'io.flow.internal.v0.enums.pending_record_type': function () { return faker.helpers.arrayElement(['verification', 'classification', 'restriction']); },
|
|
6920
|
-
'io.flow.internal.v0.enums.prateek_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
6921
6963
|
'io.flow.internal.v0.enums.preferred_billing_schedule': function () { return faker.helpers.arrayElement(['monthly', 'bi-monthly']); },
|
|
6922
6964
|
'io.flow.internal.v0.enums.preonboarding_classification_decision': function () { return faker.helpers.arrayElement(['Accept', 'Reject']); },
|
|
6923
6965
|
'io.flow.internal.v0.enums.preonboarding_classification_platform': function () { return faker.helpers.arrayElement(['FlowOnboarding']); },
|
|
@@ -7002,6 +7044,8 @@ var factories = {
|
|
|
7002
7044
|
'shopify-sandbox',
|
|
7003
7045
|
'enterprise-sandbox',
|
|
7004
7046
|
'enterprise-qa',
|
|
7047
|
+
'cafe24',
|
|
7048
|
+
'cafe24-sandbox',
|
|
7005
7049
|
]); },
|
|
7006
7050
|
'io.flow.internal.v0.enums.restriction_organization_source': function () { return faker.helpers.arrayElement(['smb', 'enterprise']); },
|
|
7007
7051
|
'io.flow.internal.v0.enums.restriction_rule_activation_status': function () { return faker.helpers.arrayElement(['draft', 'active', 'inactive']); },
|
|
@@ -7012,8 +7056,6 @@ var factories = {
|
|
|
7012
7056
|
'io.flow.internal.v0.enums.revenue_record_type': function () { return faker.helpers.arrayElement(['pending', 'sales', 'refund']); },
|
|
7013
7057
|
'io.flow.internal.v0.enums.risk_check': function () { return faker.helpers.arrayElement(['three_d_secure']); },
|
|
7014
7058
|
'io.flow.internal.v0.enums.risk_evaluation': function () { return faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']); },
|
|
7015
|
-
'io.flow.internal.v0.enums.rohan_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
7016
|
-
'io.flow.internal.v0.enums.sarvesh_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
7017
7059
|
'io.flow.internal.v0.enums.sellability_check_status': function () { return faker.helpers.arrayElement([
|
|
7018
7060
|
'more_restrictive',
|
|
7019
7061
|
'less_restrictive',
|
|
@@ -7021,7 +7063,75 @@ var factories = {
|
|
|
7021
7063
|
'regions_differ',
|
|
7022
7064
|
'rules_differ',
|
|
7023
7065
|
]); },
|
|
7066
|
+
'io.flow.internal.v0.enums.sellability_internal_match_type': function () { return faker.helpers.arrayElement(['positive_keyword', 'auto_restricted']); },
|
|
7024
7067
|
'io.flow.internal.v0.enums.sellability_status': function () { return faker.helpers.arrayElement(['complete', 'incomplete']); },
|
|
7068
|
+
'io.flow.internal.v0.enums.shopify_callback_error_code': function () { return faker.helpers.arrayElement([
|
|
7069
|
+
'UNKNOWN',
|
|
7070
|
+
'SYSTEM_ERROR',
|
|
7071
|
+
'THIRD_PARTY_SYSTEM_ERROR',
|
|
7072
|
+
'TIMEOUT',
|
|
7073
|
+
'VERSION_MISMATCH',
|
|
7074
|
+
'INVALID_AUTHENTICATION',
|
|
7075
|
+
'RATE_LIMIT_EXCEEDED',
|
|
7076
|
+
'TEMPORARILY_UNAVAILABLE',
|
|
7077
|
+
'FAILED_VALIDATION',
|
|
7078
|
+
'INVALID_FORMAT',
|
|
7079
|
+
'MISSING_VALUE',
|
|
7080
|
+
'OUT_OF_RANGE',
|
|
7081
|
+
'OVER_LIMIT',
|
|
7082
|
+
'UNDER_LIMIT',
|
|
7083
|
+
'UNAUTHORIZED',
|
|
7084
|
+
'NOT_FOUND',
|
|
7085
|
+
'EXPIRED',
|
|
7086
|
+
]); },
|
|
7087
|
+
'io.flow.internal.v0.enums.shopify_charge_code': function () { return faker.helpers.arrayElement([
|
|
7088
|
+
'transport_cost',
|
|
7089
|
+
'above_threshold',
|
|
7090
|
+
'additional_handling',
|
|
7091
|
+
'customs_additional_fees',
|
|
7092
|
+
'customs_clearance',
|
|
7093
|
+
'customs_duties',
|
|
7094
|
+
'customs_regulatory_fee',
|
|
7095
|
+
'customs_duty',
|
|
7096
|
+
'customs_taxes',
|
|
7097
|
+
'dangerous_goods',
|
|
7098
|
+
'delivery_area_surcharge',
|
|
7099
|
+
'duties_fx_surcharge',
|
|
7100
|
+
'discount',
|
|
7101
|
+
'eei_filing',
|
|
7102
|
+
'elevated_risk_area_surcharge',
|
|
7103
|
+
'emergency_situation_surcharge',
|
|
7104
|
+
'environmental_surcharge',
|
|
7105
|
+
'fuel_surcharge',
|
|
7106
|
+
'oversize_piece_surcharge',
|
|
7107
|
+
'packaging',
|
|
7108
|
+
'pickup_area_surcharge',
|
|
7109
|
+
'peak_surcharge',
|
|
7110
|
+
'remote_delivery_area_surcharge',
|
|
7111
|
+
'residential_surcharge',
|
|
7112
|
+
'security_surcharge',
|
|
7113
|
+
'shipper_intercept',
|
|
7114
|
+
'address_correction',
|
|
7115
|
+
'undeliverable',
|
|
7116
|
+
'unknown',
|
|
7117
|
+
'prohibited_item',
|
|
7118
|
+
'trade_restriction_surcharge',
|
|
7119
|
+
'processing',
|
|
7120
|
+
'delivery',
|
|
7121
|
+
'notification',
|
|
7122
|
+
'broker_notification',
|
|
7123
|
+
'delivery_confirmation',
|
|
7124
|
+
'signature_required',
|
|
7125
|
+
'tax_gst',
|
|
7126
|
+
'tax_hst',
|
|
7127
|
+
'tax_pst',
|
|
7128
|
+
'tax_vat',
|
|
7129
|
+
'discount_tax',
|
|
7130
|
+
'incoterm_ddp',
|
|
7131
|
+
]); },
|
|
7132
|
+
'io.flow.internal.v0.enums.shopify_delivery_method_type': function () { return faker.helpers.arrayElement(['SHIPPING', 'PICKUP_POINT']); },
|
|
7133
|
+
'io.flow.internal.v0.enums.shopify_dimension_unit': function () { return faker.helpers.arrayElement(['cm', 'ft', 'in', 'm', 'mm']); },
|
|
7134
|
+
'io.flow.internal.v0.enums.shopify_incoterm': function () { return faker.helpers.arrayElement(['DAP', 'DDP']); },
|
|
7025
7135
|
'io.flow.internal.v0.enums.shopify_incoterm_configuration': function () { return faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']); },
|
|
7026
7136
|
'io.flow.internal.v0.enums.shopify_markets_dangerous_goods': function () { return faker.helpers.arrayElement([
|
|
7027
7137
|
'aerosols',
|
|
@@ -7076,8 +7186,40 @@ var factories = {
|
|
|
7076
7186
|
]); },
|
|
7077
7187
|
'io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status': function () { return faker.helpers.arrayElement(['in_review', 'reviewed']); },
|
|
7078
7188
|
'io.flow.internal.v0.enums.shopify_monitoring_tracking_field': function () { return faker.helpers.arrayElement(['tracking_number', 'carrier_service', 'tracking_url']); },
|
|
7189
|
+
'io.flow.internal.v0.enums.shopify_package_type': function () { return faker.helpers.arrayElement(['BOX', 'ENVELOPE', 'SOFT_PACK', 'TUBE', 'CARRIER_PACKAGING']); },
|
|
7079
7190
|
'io.flow.internal.v0.enums.shopify_plan_type': function () { return faker.helpers.arrayElement(['standard', 'shopify_plus']); },
|
|
7080
7191
|
'io.flow.internal.v0.enums.shopify_service': function () { return faker.helpers.arrayElement(['payment', 'duty_tax_calculator', 'sellability']); },
|
|
7192
|
+
'io.flow.internal.v0.enums.shopify_shipment_option_code': function () { return faker.helpers.arrayElement([
|
|
7193
|
+
'adult_signature_required',
|
|
7194
|
+
'delivery_confirmation',
|
|
7195
|
+
'insurance',
|
|
7196
|
+
'named_person_only',
|
|
7197
|
+
'no_neighbour_delivery',
|
|
7198
|
+
'pickup',
|
|
7199
|
+
'package_pickup',
|
|
7200
|
+
'signature_required',
|
|
7201
|
+
'proof_of_age',
|
|
7202
|
+
'proof_of_age_16',
|
|
7203
|
+
'proof_of_age_18',
|
|
7204
|
+
'proof_of_age_19',
|
|
7205
|
+
'proof_of_age_21',
|
|
7206
|
+
'incoterm_ddp',
|
|
7207
|
+
'incoterm_dap',
|
|
7208
|
+
'usps_first_mile',
|
|
7209
|
+
]); },
|
|
7210
|
+
'io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code': function () { return faker.helpers.arrayElement([
|
|
7211
|
+
'SERVICE_NOT_AVAILABLE',
|
|
7212
|
+
'TEMPORARILY_UNAVAILABLE',
|
|
7213
|
+
'TIMEOUT',
|
|
7214
|
+
'RATE_LIMIT_EXCEEDED',
|
|
7215
|
+
'SYSTEM_ERROR',
|
|
7216
|
+
'THIRD_PARTY_SYSTEM_ERROR',
|
|
7217
|
+
'FAILED_VALIDATION',
|
|
7218
|
+
'INVALID_FORMAT',
|
|
7219
|
+
'MISSING_VALUE',
|
|
7220
|
+
'OUT_OF_RANGE',
|
|
7221
|
+
]); },
|
|
7222
|
+
'io.flow.internal.v0.enums.shopify_weight_unit': function () { return faker.helpers.arrayElement(['g', 'kg', 'lb', 'oz']); },
|
|
7081
7223
|
'io.flow.internal.v0.enums.simple_rounding_strategy': function () { return faker.helpers.arrayElement(['no_rounding', 'currency_precision']); },
|
|
7082
7224
|
'io.flow.internal.v0.enums.snooze_next_action_with': function () { return faker.helpers.arrayElement(['customer_service', 'engineering']); },
|
|
7083
7225
|
'io.flow.internal.v0.enums.snooze_source_type': function () { return faker.helpers.arrayElement(['task', 'invariant']); },
|
|
@@ -7258,11 +7400,13 @@ var factories = {
|
|
|
7258
7400
|
transfer_method: factories['io.flow.internal.v0.enums.transfer_method'](),
|
|
7259
7401
|
b2b_tax_remittance_days: factories.long(),
|
|
7260
7402
|
merchant_of_record_fee: factories.decimal(),
|
|
7403
|
+
merchant_of_record_fee_create_on_order: factories.boolean(),
|
|
7261
7404
|
duty_guarantee_fee: factories.decimal(),
|
|
7262
7405
|
transfer_fee: factories.decimal(),
|
|
7263
7406
|
negative_balance_fee: factories.decimal(),
|
|
7264
7407
|
order_service_fee: factories['io.flow.internal.v0.models.tiered_fee'](),
|
|
7265
7408
|
label_fees: factories['io.flow.internal.v0.models.account_setting_label_fees'](),
|
|
7409
|
+
revenue_share_rate: factories.decimal(),
|
|
7266
7410
|
charge_label_cost_directly: factories.boolean(),
|
|
7267
7411
|
transaction_posting_method: factories['io.flow.internal.v0.enums.transaction_posting_method'](),
|
|
7268
7412
|
statement_transfer_transaction_location: factories['io.flow.internal.v0.enums.statement_transfer_transaction_location'](),
|
|
@@ -7273,6 +7417,10 @@ var factories = {
|
|
|
7273
7417
|
enable_fee_reversals: factories.boolean(),
|
|
7274
7418
|
record_reason_for_transactions_pending_payout: factories.boolean(),
|
|
7275
7419
|
enable_negative_debits: factories.boolean(),
|
|
7420
|
+
enable_statement_pdf: factories.boolean(),
|
|
7421
|
+
enable_shipping_label_revenue_share: factories.boolean(),
|
|
7422
|
+
enable_carrier_charge_revenue_share: factories.boolean(),
|
|
7423
|
+
always_charge_organization_for_trueup: factories.boolean(),
|
|
7276
7424
|
}); },
|
|
7277
7425
|
'io.flow.internal.v0.models.account_settings_deleted': function () { return ({
|
|
7278
7426
|
discriminator: 'account_settings_deleted',
|
|
@@ -7736,33 +7884,6 @@ var factories = {
|
|
|
7736
7884
|
'io.flow.internal.v0.models.aftership_webhook': function () { return ({
|
|
7737
7885
|
placeholder: factories.boolean(),
|
|
7738
7886
|
}); },
|
|
7739
|
-
'io.flow.internal.v0.models.aldo_item': function () { return ({
|
|
7740
|
-
id: factories.string(),
|
|
7741
|
-
number: factories.string(),
|
|
7742
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
7743
|
-
description: factories.string(),
|
|
7744
|
-
type: factories['io.flow.internal.v0.enums.aldo_item_type'](),
|
|
7745
|
-
added_on: factories.date_iso_8601(),
|
|
7746
|
-
}); },
|
|
7747
|
-
'io.flow.internal.v0.models.aldo_item_deleted': function () { return ({
|
|
7748
|
-
discriminator: 'aldo_item_deleted',
|
|
7749
|
-
event_id: factories.string(),
|
|
7750
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7751
|
-
id: factories.string(),
|
|
7752
|
-
}); },
|
|
7753
|
-
'io.flow.internal.v0.models.aldo_item_form': function () { return ({
|
|
7754
|
-
number: factories.string(),
|
|
7755
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
7756
|
-
description: factories.string(),
|
|
7757
|
-
type: factories['io.flow.internal.v0.enums.aldo_item_type'](),
|
|
7758
|
-
added_on: factories.date_iso_8601(),
|
|
7759
|
-
}); },
|
|
7760
|
-
'io.flow.internal.v0.models.aldo_item_upserted': function () { return ({
|
|
7761
|
-
discriminator: 'aldo_item_upserted',
|
|
7762
|
-
event_id: factories.string(),
|
|
7763
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7764
|
-
item: factories['io.flow.internal.v0.models.aldo_item'](),
|
|
7765
|
-
}); },
|
|
7766
7887
|
'io.flow.internal.v0.models.all_items_export': function () { return ({
|
|
7767
7888
|
discriminator: 'all_items_export',
|
|
7768
7889
|
event_id: factories.string(),
|
|
@@ -7781,60 +7902,21 @@ var factories = {
|
|
|
7781
7902
|
name: factories.string(),
|
|
7782
7903
|
labels: objectOf(function () { return arrayOf(function () { return factories.string(); }); }),
|
|
7783
7904
|
}); },
|
|
7784
|
-
'io.flow.internal.v0.models.
|
|
7905
|
+
'io.flow.internal.v0.models.amrutha_item': function () { return ({
|
|
7785
7906
|
id: factories.string(),
|
|
7786
7907
|
number: factories.string(),
|
|
7787
7908
|
amount: factories['io.flow.common.v0.models.price'](),
|
|
7788
7909
|
description: factories.string(),
|
|
7789
|
-
type: factories['io.flow.internal.v0.enums.
|
|
7910
|
+
type: factories['io.flow.internal.v0.enums.amrutha_item_type'](),
|
|
7790
7911
|
added_on: factories.date_time_iso_8601(),
|
|
7791
7912
|
}); },
|
|
7792
|
-
'io.flow.internal.v0.models.
|
|
7793
|
-
discriminator: 'anirban_item_deleted',
|
|
7794
|
-
event_id: factories.string(),
|
|
7795
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7796
|
-
id: factories.string(),
|
|
7797
|
-
}); },
|
|
7798
|
-
'io.flow.internal.v0.models.anirban_item_form': function () { return ({
|
|
7913
|
+
'io.flow.internal.v0.models.amrutha_item_form': function () { return ({
|
|
7799
7914
|
number: factories.string(),
|
|
7800
7915
|
amount: factories['io.flow.common.v0.models.price'](),
|
|
7801
7916
|
description: factories.string(),
|
|
7802
|
-
type: factories['io.flow.internal.v0.enums.
|
|
7917
|
+
type: factories['io.flow.internal.v0.enums.amrutha_item_type'](),
|
|
7803
7918
|
added_on: factories.date_time_iso_8601(),
|
|
7804
7919
|
}); },
|
|
7805
|
-
'io.flow.internal.v0.models.anirban_item_upserted': function () { return ({
|
|
7806
|
-
discriminator: 'anirban_item_upserted',
|
|
7807
|
-
event_id: factories.string(),
|
|
7808
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7809
|
-
item: factories['io.flow.internal.v0.models.anirban_item'](),
|
|
7810
|
-
}); },
|
|
7811
|
-
'io.flow.internal.v0.models.ansh_item': function () { return ({
|
|
7812
|
-
id: factories.string(),
|
|
7813
|
-
number: factories.string(),
|
|
7814
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
7815
|
-
description: factories.string(),
|
|
7816
|
-
type: factories['io.flow.internal.v0.enums.ansh_item_type'](),
|
|
7817
|
-
added_on: factories.date_iso_8601(),
|
|
7818
|
-
}); },
|
|
7819
|
-
'io.flow.internal.v0.models.ansh_item_deleted': function () { return ({
|
|
7820
|
-
discriminator: 'ansh_item_deleted',
|
|
7821
|
-
event_id: factories.string(),
|
|
7822
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7823
|
-
id: factories.string(),
|
|
7824
|
-
}); },
|
|
7825
|
-
'io.flow.internal.v0.models.ansh_item_form': function () { return ({
|
|
7826
|
-
number: factories.string(),
|
|
7827
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
7828
|
-
description: factories.string(),
|
|
7829
|
-
type: factories['io.flow.internal.v0.enums.ansh_item_type'](),
|
|
7830
|
-
added_on: factories.date_iso_8601(),
|
|
7831
|
-
}); },
|
|
7832
|
-
'io.flow.internal.v0.models.ansh_item_upserted': function () { return ({
|
|
7833
|
-
discriminator: 'ansh_item_upserted',
|
|
7834
|
-
event_id: factories.string(),
|
|
7835
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7836
|
-
item: factories['io.flow.internal.v0.models.ansh_item'](),
|
|
7837
|
-
}); },
|
|
7838
7920
|
'io.flow.internal.v0.models.apple_pay_authorization_payload': function () { return ({
|
|
7839
7921
|
discriminator: 'apple_pay_authorization_payload',
|
|
7840
7922
|
apple_pay_token: factories.string(),
|
|
@@ -7922,6 +8004,14 @@ var factories = {
|
|
|
7922
8004
|
keywords: arrayOf(function () { return factories.string(); }),
|
|
7923
8005
|
action: factories['io.flow.internal.v0.enums.restriction_status'](),
|
|
7924
8006
|
}); },
|
|
8007
|
+
'io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata': function () { return ({
|
|
8008
|
+
discriminator: 'b2b_fee_mor_tax_trigger_metadata',
|
|
8009
|
+
trigger_type: factories['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'](),
|
|
8010
|
+
}); },
|
|
8011
|
+
'io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata': function () { return ({
|
|
8012
|
+
discriminator: 'b2b_fee_shipping_tax_trigger_metadata',
|
|
8013
|
+
trigger_type: factories['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'](),
|
|
8014
|
+
}); },
|
|
7925
8015
|
'io.flow.internal.v0.models.b2b_tax_ledger': function () { return ({
|
|
7926
8016
|
id: factories.string(),
|
|
7927
8017
|
total_amount: factories['io.flow.internal.v0.models.tax_type_total'](),
|
|
@@ -7939,6 +8029,8 @@ var factories = {
|
|
|
7939
8029
|
document_type: factories['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'](),
|
|
7940
8030
|
document_date: factories.date_time_iso_8601(),
|
|
7941
8031
|
ledger_report_id: factories.string(),
|
|
8032
|
+
voids_invoice_number: factories.string(),
|
|
8033
|
+
document_number: factories.string(),
|
|
7942
8034
|
}); },
|
|
7943
8035
|
'io.flow.internal.v0.models.b2b_tax_ledger_form': function () { return ({
|
|
7944
8036
|
total_amount: factories['io.flow.internal.v0.models.tax_type_total'](),
|
|
@@ -7956,6 +8048,8 @@ var factories = {
|
|
|
7956
8048
|
document_type: factories['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'](),
|
|
7957
8049
|
document_date: factories.date_time_iso_8601(),
|
|
7958
8050
|
ledger_report_id: factories.string(),
|
|
8051
|
+
voids_invoice_number: factories.string(),
|
|
8052
|
+
document_number: factories.string(),
|
|
7959
8053
|
}); },
|
|
7960
8054
|
'io.flow.internal.v0.models.bank_account': function () { return ({
|
|
7961
8055
|
status: factories['io.flow.internal.v0.enums.bank_account_status'](),
|
|
@@ -8225,6 +8319,9 @@ var factories = {
|
|
|
8225
8319
|
tax_refund: factories['io.flow.common.v0.models.price'](),
|
|
8226
8320
|
b2b_tax: factories['io.flow.common.v0.models.price'](),
|
|
8227
8321
|
b2b_tax_refund: factories['io.flow.common.v0.models.price'](),
|
|
8322
|
+
merchant_fee: factories['io.flow.common.v0.models.price'](),
|
|
8323
|
+
b2b_fee_mor_tax: factories['io.flow.common.v0.models.price'](),
|
|
8324
|
+
b2b_fee_shipping_tax: factories['io.flow.common.v0.models.price'](),
|
|
8228
8325
|
}); },
|
|
8229
8326
|
'io.flow.internal.v0.models.billing_statement_upserted': function () { return ({
|
|
8230
8327
|
discriminator: 'billing_statement_upserted',
|
|
@@ -8282,6 +8379,21 @@ var factories = {
|
|
|
8282
8379
|
public_key: factories.string(),
|
|
8283
8380
|
secret_key: factories.string(),
|
|
8284
8381
|
}); },
|
|
8382
|
+
'io.flow.internal.v0.models.bojana_item': function () { return ({
|
|
8383
|
+
id: factories.string(),
|
|
8384
|
+
number: factories.string(),
|
|
8385
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
8386
|
+
description: factories.string(),
|
|
8387
|
+
type: factories['io.flow.internal.v0.enums.bojana_item_type'](),
|
|
8388
|
+
added_on: factories.date_time_iso_8601(),
|
|
8389
|
+
}); },
|
|
8390
|
+
'io.flow.internal.v0.models.bojana_item_form': function () { return ({
|
|
8391
|
+
number: factories.string(),
|
|
8392
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
8393
|
+
description: factories.string(),
|
|
8394
|
+
type: factories['io.flow.internal.v0.enums.bojana_item_type'](),
|
|
8395
|
+
added_on: factories.date_time_iso_8601(),
|
|
8396
|
+
}); },
|
|
8285
8397
|
'io.flow.internal.v0.models.boolean_feature_default_value': function () { return ({
|
|
8286
8398
|
discriminator: 'boolean',
|
|
8287
8399
|
value: factories.boolean(),
|
|
@@ -9158,6 +9270,33 @@ var factories = {
|
|
|
9158
9270
|
url: factories.string(),
|
|
9159
9271
|
type: factories['io.flow.internal.v0.enums.checkout_url_type'](),
|
|
9160
9272
|
}); },
|
|
9273
|
+
'io.flow.internal.v0.models.chenglin_item': function () { return ({
|
|
9274
|
+
id: factories.string(),
|
|
9275
|
+
number: factories.string(),
|
|
9276
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
9277
|
+
description: factories.string(),
|
|
9278
|
+
type: factories['io.flow.internal.v0.enums.gabriel_item_type'](),
|
|
9279
|
+
added_on: factories.date_iso_8601(),
|
|
9280
|
+
}); },
|
|
9281
|
+
'io.flow.internal.v0.models.chenglin_item_deleted': function () { return ({
|
|
9282
|
+
discriminator: 'chenglin_item_deleted',
|
|
9283
|
+
event_id: factories.string(),
|
|
9284
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9285
|
+
id: factories.string(),
|
|
9286
|
+
}); },
|
|
9287
|
+
'io.flow.internal.v0.models.chenglin_item_form': function () { return ({
|
|
9288
|
+
number: factories.string(),
|
|
9289
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
9290
|
+
description: factories.string(),
|
|
9291
|
+
type: factories['io.flow.internal.v0.enums.gabriel_item_type'](),
|
|
9292
|
+
added_on: factories.date_iso_8601(),
|
|
9293
|
+
}); },
|
|
9294
|
+
'io.flow.internal.v0.models.chenglin_item_upserted': function () { return ({
|
|
9295
|
+
discriminator: 'chenglin_item_upserted',
|
|
9296
|
+
event_id: factories.string(),
|
|
9297
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9298
|
+
item: factories['io.flow.internal.v0.models.chenglin_item'](),
|
|
9299
|
+
}); },
|
|
9161
9300
|
'io.flow.internal.v0.models.cipher': function () { return ({
|
|
9162
9301
|
id: factories.string(),
|
|
9163
9302
|
attributes: objectOf(function () { return factories.string(); }),
|
|
@@ -11230,6 +11369,11 @@ var factories = {
|
|
|
11230
11369
|
organization_ids: arrayOf(function () { return factories.string(); }),
|
|
11231
11370
|
num_events: factories.long(),
|
|
11232
11371
|
}); },
|
|
11372
|
+
'io.flow.internal.v0.models.generate_load_rate': function () { return ({
|
|
11373
|
+
organization_ids: arrayOf(function () { return factories.string(); }),
|
|
11374
|
+
events_per_second: factories.long(),
|
|
11375
|
+
duration_seconds: factories.long(),
|
|
11376
|
+
}); },
|
|
11233
11377
|
'io.flow.internal.v0.models.generate_load_single_org': function () { return ({
|
|
11234
11378
|
discriminator: 'generate_load_single_org',
|
|
11235
11379
|
organization_id: factories.string(),
|
|
@@ -11375,39 +11519,13 @@ var factories = {
|
|
|
11375
11519
|
organization: factories.string(),
|
|
11376
11520
|
export_id: factories.string(),
|
|
11377
11521
|
}); },
|
|
11378
|
-
'io.flow.internal.v0.models.hosein_item': function () { return ({
|
|
11379
|
-
id: factories.string(),
|
|
11380
|
-
number: factories.string(),
|
|
11381
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
11382
|
-
description: factories.string(),
|
|
11383
|
-
type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
|
|
11384
|
-
added_on: factories.date_time_iso_8601(),
|
|
11385
|
-
}); },
|
|
11386
|
-
'io.flow.internal.v0.models.hosein_item_deleted': function () { return ({
|
|
11387
|
-
discriminator: 'hosein_item_deleted',
|
|
11388
|
-
event_id: factories.string(),
|
|
11389
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11390
|
-
id: factories.string(),
|
|
11391
|
-
}); },
|
|
11392
|
-
'io.flow.internal.v0.models.hosein_item_form': function () { return ({
|
|
11393
|
-
number: factories.string(),
|
|
11394
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
11395
|
-
description: factories.string(),
|
|
11396
|
-
type: factories['io.flow.internal.v0.enums.hosein_item_type'](),
|
|
11397
|
-
added_on: factories.date_time_iso_8601(),
|
|
11398
|
-
}); },
|
|
11399
|
-
'io.flow.internal.v0.models.hosein_item_upserted': function () { return ({
|
|
11400
|
-
discriminator: 'hosein_item_upserted',
|
|
11401
|
-
event_id: factories.string(),
|
|
11402
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11403
|
-
item: factories['io.flow.internal.v0.models.hosein_item'](),
|
|
11404
|
-
}); },
|
|
11405
11522
|
'io.flow.internal.v0.models.hs6': function () { return ({
|
|
11406
11523
|
code: factories.string(),
|
|
11407
11524
|
description: factories.string(),
|
|
11408
11525
|
}); },
|
|
11409
11526
|
'io.flow.internal.v0.models.hs6_metadata': function () { return ({
|
|
11410
11527
|
description: factories.string(),
|
|
11528
|
+
classification_source: factories['io.flow.internal.v0.enums.classification_source'](),
|
|
11411
11529
|
}); },
|
|
11412
11530
|
'io.flow.internal.v0.models.import_completed': function () { return ({
|
|
11413
11531
|
discriminator: 'import_completed',
|
|
@@ -11858,10 +11976,6 @@ var factories = {
|
|
|
11858
11976
|
'io.flow.internal.v0.models.item_values_form': function () { return ({
|
|
11859
11977
|
values: arrayOf(function () { return factories.string(); }),
|
|
11860
11978
|
}); },
|
|
11861
|
-
'io.flow.internal.v0.models.jean_demo_item': function () { return ({
|
|
11862
|
-
id: factories.string(),
|
|
11863
|
-
name: factories.string(),
|
|
11864
|
-
}); },
|
|
11865
11979
|
'io.flow.internal.v0.models.journal': function () { return ({
|
|
11866
11980
|
name: factories.string(),
|
|
11867
11981
|
queued: factories.integer(),
|
|
@@ -11963,30 +12077,6 @@ var factories = {
|
|
|
11963
12077
|
country: factories.string(),
|
|
11964
12078
|
postal: factories.string(),
|
|
11965
12079
|
}); },
|
|
11966
|
-
'io.flow.internal.v0.models.label_generation_settings': function () { return ({
|
|
11967
|
-
id: factories.string(),
|
|
11968
|
-
auto_generate_query: factories.string(),
|
|
11969
|
-
commercial_invoice_only_query: factories.string(),
|
|
11970
|
-
}); },
|
|
11971
|
-
'io.flow.internal.v0.models.label_generation_settings_deleted': function () { return ({
|
|
11972
|
-
discriminator: 'label_generation_settings_deleted',
|
|
11973
|
-
event_id: factories.string(),
|
|
11974
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11975
|
-
organization: factories.string(),
|
|
11976
|
-
id: factories.string(),
|
|
11977
|
-
}); },
|
|
11978
|
-
'io.flow.internal.v0.models.label_generation_settings_form': function () { return ({
|
|
11979
|
-
item_identifier: factories.string(),
|
|
11980
|
-
auto_generate_query: factories.string(),
|
|
11981
|
-
commercial_invoice_only_query: factories.string(),
|
|
11982
|
-
}); },
|
|
11983
|
-
'io.flow.internal.v0.models.label_generation_settings_upserted': function () { return ({
|
|
11984
|
-
discriminator: 'label_generation_settings_upserted',
|
|
11985
|
-
event_id: factories.string(),
|
|
11986
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11987
|
-
organization: factories.string(),
|
|
11988
|
-
label_generation_settings: factories['io.flow.internal.v0.models.label_generation_settings'](),
|
|
11989
|
-
}); },
|
|
11990
12080
|
'io.flow.internal.v0.models.label_invoice_request': function () { return ({
|
|
11991
12081
|
id: factories.string(),
|
|
11992
12082
|
label: factories['io.flow.internal.v0.models.trueup_label_summary'](),
|
|
@@ -12064,6 +12154,7 @@ var factories = {
|
|
|
12064
12154
|
reference_id: factories.string(),
|
|
12065
12155
|
logistics_integration_provider: factories.string(),
|
|
12066
12156
|
tax_lrp_liabilities: arrayOf(function () { return factories['io.flow.internal.v0.models.liability'](); }),
|
|
12157
|
+
channel_id: factories.string(),
|
|
12067
12158
|
}); },
|
|
12068
12159
|
'io.flow.internal.v0.models.label_summary': function () { return ({
|
|
12069
12160
|
id: factories.string(),
|
|
@@ -12434,6 +12525,7 @@ var factories = {
|
|
|
12434
12525
|
original_transaction: factories['io.flow.internal.v0.models.transaction_reference'](),
|
|
12435
12526
|
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
12436
12527
|
attributes: objectOf(function () { return factories.string(); }),
|
|
12528
|
+
recoup: factories.boolean(),
|
|
12437
12529
|
id: factories.string(),
|
|
12438
12530
|
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
12439
12531
|
status: factories['io.flow.internal.v0.enums.billing_transaction_status'](),
|
|
@@ -12450,6 +12542,7 @@ var factories = {
|
|
|
12450
12542
|
category: factories['io.flow.internal.v0.enums.manual_transaction_category'](),
|
|
12451
12543
|
order: factories['io.flow.internal.v0.models.manual_transaction_form_order'](),
|
|
12452
12544
|
original_transaction_id: factories.string(),
|
|
12545
|
+
recoup: factories.boolean(),
|
|
12453
12546
|
attributes: objectOf(function () { return factories.string(); }),
|
|
12454
12547
|
}); },
|
|
12455
12548
|
'io.flow.internal.v0.models.manual_transaction_form_order': function () { return ({
|
|
@@ -12660,33 +12753,6 @@ var factories = {
|
|
|
12660
12753
|
amount: factories['io.flow.common.v0.models.price'](),
|
|
12661
12754
|
conditions: factories.string(),
|
|
12662
12755
|
}); },
|
|
12663
|
-
'io.flow.internal.v0.models.niall_item': function () { return ({
|
|
12664
|
-
id: factories.string(),
|
|
12665
|
-
number: factories.string(),
|
|
12666
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
12667
|
-
description: factories.string(),
|
|
12668
|
-
type: factories['io.flow.internal.v0.enums.niall_item_type'](),
|
|
12669
|
-
added_on: factories.date_time_iso_8601(),
|
|
12670
|
-
}); },
|
|
12671
|
-
'io.flow.internal.v0.models.niall_item_deleted': function () { return ({
|
|
12672
|
-
discriminator: 'niall_item_deleted',
|
|
12673
|
-
event_id: factories.string(),
|
|
12674
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12675
|
-
id: factories.string(),
|
|
12676
|
-
}); },
|
|
12677
|
-
'io.flow.internal.v0.models.niall_item_form': function () { return ({
|
|
12678
|
-
number: factories.string(),
|
|
12679
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
12680
|
-
description: factories.string(),
|
|
12681
|
-
type: factories['io.flow.internal.v0.enums.niall_item_type'](),
|
|
12682
|
-
added_on: factories.date_time_iso_8601(),
|
|
12683
|
-
}); },
|
|
12684
|
-
'io.flow.internal.v0.models.niall_item_upserted': function () { return ({
|
|
12685
|
-
discriminator: 'niall_item_upserted',
|
|
12686
|
-
event_id: factories.string(),
|
|
12687
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12688
|
-
item: factories['io.flow.internal.v0.models.niall_item'](),
|
|
12689
|
-
}); },
|
|
12690
12756
|
'io.flow.internal.v0.models.no_calculated_tax_amount': function () { return ({
|
|
12691
12757
|
discriminator: 'no_calculated_tax_amount',
|
|
12692
12758
|
amount: factories.decimal(),
|
|
@@ -12759,6 +12825,7 @@ var factories = {
|
|
|
12759
12825
|
audit_result: factories['io.flow.internal.v0.enums.onboarding_audit_result'](),
|
|
12760
12826
|
blocked_since: factories.date_time_iso_8601(),
|
|
12761
12827
|
onboarding_segment: factories.string(),
|
|
12828
|
+
country: factories.string(),
|
|
12762
12829
|
}); },
|
|
12763
12830
|
'io.flow.internal.v0.models.onboarding_state_form': function () { return ({
|
|
12764
12831
|
onboarding_state: factories['io.flow.organization.onboarding.state.v0.unions.onboarding_state'](),
|
|
@@ -13316,6 +13383,14 @@ var factories = {
|
|
|
13316
13383
|
type: factories['io.flow.common.v0.enums.change_type'](),
|
|
13317
13384
|
organization_payment_setting: factories['io.flow.internal.v0.models.organization_payment_setting'](),
|
|
13318
13385
|
}); },
|
|
13386
|
+
'io.flow.internal.v0.models.organization_promotion': function () { return ({
|
|
13387
|
+
status: factories['io.flow.internal.v0.enums.organization_promotion_status'](),
|
|
13388
|
+
prod_org: factories.string(),
|
|
13389
|
+
}); },
|
|
13390
|
+
'io.flow.internal.v0.models.organization_promotion_warning': function () { return ({
|
|
13391
|
+
prod_org: factories.string(),
|
|
13392
|
+
message: factories.string(),
|
|
13393
|
+
}); },
|
|
13319
13394
|
'io.flow.internal.v0.models.organization_restriction_note_form': function () { return ({
|
|
13320
13395
|
note: factories.string(),
|
|
13321
13396
|
note_type: factories['io.flow.internal.v0.enums.organization_restriction_note_type'](),
|
|
@@ -13510,6 +13585,7 @@ var factories = {
|
|
|
13510
13585
|
label_transaction_id: factories.string(),
|
|
13511
13586
|
label_invoice_request_id: factories.string(),
|
|
13512
13587
|
carrier_charge_id: factories.string(),
|
|
13588
|
+
subtype: factories.string(),
|
|
13513
13589
|
}); },
|
|
13514
13590
|
'io.flow.internal.v0.models.other_record_order_summary': function () { return ({
|
|
13515
13591
|
organization: factories['io.flow.internal.v0.models.other_record_organization_summary'](),
|
|
@@ -14050,21 +14126,6 @@ var factories = {
|
|
|
14050
14126
|
minimum_amount_base: factories.decimal(),
|
|
14051
14127
|
rate: factories.decimal(),
|
|
14052
14128
|
}); },
|
|
14053
|
-
'io.flow.internal.v0.models.prateek_item': function () { return ({
|
|
14054
|
-
id: factories.string(),
|
|
14055
|
-
number: factories.string(),
|
|
14056
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
14057
|
-
description: factories.string(),
|
|
14058
|
-
type: factories['io.flow.internal.v0.enums.prateek_item_type'](),
|
|
14059
|
-
added_on: factories.date_iso_8601(),
|
|
14060
|
-
}); },
|
|
14061
|
-
'io.flow.internal.v0.models.prateek_item_form': function () { return ({
|
|
14062
|
-
number: factories.string(),
|
|
14063
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
14064
|
-
description: factories.string(),
|
|
14065
|
-
type: factories['io.flow.internal.v0.enums.prateek_item_type'](),
|
|
14066
|
-
added_on: factories.date_iso_8601(),
|
|
14067
|
-
}); },
|
|
14068
14129
|
'io.flow.internal.v0.models.prediction': function () { return ({
|
|
14069
14130
|
main_material: factories.string(),
|
|
14070
14131
|
gender: factories.string(),
|
|
@@ -14120,6 +14181,7 @@ var factories = {
|
|
|
14120
14181
|
last_request: factories.date_time_iso_8601(),
|
|
14121
14182
|
}); },
|
|
14122
14183
|
'io.flow.internal.v0.models.preonboarding_sellability_result': function () { return ({
|
|
14184
|
+
id: factories.string(),
|
|
14123
14185
|
merchant_id: factories.string(),
|
|
14124
14186
|
product_id: factories.string(),
|
|
14125
14187
|
channel: factories.string(),
|
|
@@ -14135,6 +14197,25 @@ var factories = {
|
|
|
14135
14197
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
14136
14198
|
fingerprint: factories.string(),
|
|
14137
14199
|
}); },
|
|
14200
|
+
'io.flow.internal.v0.models.preonboarding_sellability_result_deleted': function () { return ({
|
|
14201
|
+
discriminator: 'preonboarding_sellability_result_deleted',
|
|
14202
|
+
event_id: factories.string(),
|
|
14203
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14204
|
+
id: factories.string(),
|
|
14205
|
+
}); },
|
|
14206
|
+
'io.flow.internal.v0.models.preonboarding_sellability_result_inserted': function () { return ({
|
|
14207
|
+
discriminator: 'preonboarding_sellability_result_inserted',
|
|
14208
|
+
event_id: factories.string(),
|
|
14209
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14210
|
+
preonboarding_sellability_result: factories['io.flow.internal.v0.models.preonboarding_sellability_result'](),
|
|
14211
|
+
}); },
|
|
14212
|
+
'io.flow.internal.v0.models.preonboarding_sellability_result_updated': function () { return ({
|
|
14213
|
+
discriminator: 'preonboarding_sellability_result_updated',
|
|
14214
|
+
event_id: factories.string(),
|
|
14215
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14216
|
+
previous_preonboarding_sellability_result: factories['io.flow.internal.v0.models.preonboarding_sellability_result'](),
|
|
14217
|
+
preonboarding_sellability_result: factories['io.flow.internal.v0.models.preonboarding_sellability_result'](),
|
|
14218
|
+
}); },
|
|
14138
14219
|
'io.flow.internal.v0.models.price_inclusivity': function () { return ({
|
|
14139
14220
|
tax: factories.boolean(),
|
|
14140
14221
|
duty: factories.boolean(),
|
|
@@ -14370,9 +14451,15 @@ var factories = {
|
|
|
14370
14451
|
}); },
|
|
14371
14452
|
'io.flow.internal.v0.models.product_sellability_internal_result': function () { return ({
|
|
14372
14453
|
restricted_regions: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellability_region_result'](); }),
|
|
14373
|
-
|
|
14454
|
+
rule_matches: arrayOf(function () { return factories['io.flow.internal.v0.models.product_sellability_internal_rule_match'](); }),
|
|
14455
|
+
matching_positive_keywords: arrayOf(function () { return factories.string(); }),
|
|
14456
|
+
}); },
|
|
14457
|
+
'io.flow.internal.v0.models.product_sellability_internal_rule_match': function () { return ({
|
|
14458
|
+
rule_id: factories.string(),
|
|
14459
|
+
match_types: arrayOf(function () { return factories['io.flow.internal.v0.enums.sellability_internal_match_type'](); }),
|
|
14374
14460
|
}); },
|
|
14375
14461
|
'io.flow.internal.v0.models.product_sellability_result': function () { return ({
|
|
14462
|
+
id: factories.string(),
|
|
14376
14463
|
shop_id: factories.string(),
|
|
14377
14464
|
product_number: factories.string(),
|
|
14378
14465
|
request_id: factories.string(),
|
|
@@ -14381,6 +14468,27 @@ var factories = {
|
|
|
14381
14468
|
restricted_regions_by_type: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellability_region_result'](); }),
|
|
14382
14469
|
rule_ids: arrayOf(function () { return factories.string(); }),
|
|
14383
14470
|
taxonomy_category: factories.string(),
|
|
14471
|
+
fingerprint: factories.string(),
|
|
14472
|
+
processed_at: factories.date_time_iso_8601(),
|
|
14473
|
+
}); },
|
|
14474
|
+
'io.flow.internal.v0.models.product_sellability_result_deleted': function () { return ({
|
|
14475
|
+
discriminator: 'product_sellability_result_deleted',
|
|
14476
|
+
event_id: factories.string(),
|
|
14477
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14478
|
+
id: factories.string(),
|
|
14479
|
+
}); },
|
|
14480
|
+
'io.flow.internal.v0.models.product_sellability_result_inserted': function () { return ({
|
|
14481
|
+
discriminator: 'product_sellability_result_inserted',
|
|
14482
|
+
event_id: factories.string(),
|
|
14483
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14484
|
+
product_sellability_result: factories['io.flow.internal.v0.models.product_sellability_result'](),
|
|
14485
|
+
}); },
|
|
14486
|
+
'io.flow.internal.v0.models.product_sellability_result_updated': function () { return ({
|
|
14487
|
+
discriminator: 'product_sellability_result_updated',
|
|
14488
|
+
event_id: factories.string(),
|
|
14489
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14490
|
+
previous_product_sellability_result: factories['io.flow.internal.v0.models.product_sellability_result'](),
|
|
14491
|
+
product_sellability_result: factories['io.flow.internal.v0.models.product_sellability_result'](),
|
|
14384
14492
|
}); },
|
|
14385
14493
|
'io.flow.internal.v0.models.product_transaction': function () { return ({
|
|
14386
14494
|
transaction_amount: factories.decimal(),
|
|
@@ -14850,6 +14958,7 @@ var factories = {
|
|
|
14850
14958
|
source_type: factories['io.flow.internal.v0.enums.source_type_filter'](),
|
|
14851
14959
|
order_payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
14852
14960
|
amount_range: factories['io.flow.internal.v0.models.report_amount_range'](),
|
|
14961
|
+
account_currency: factories['io.flow.internal.v0.enums.account_currency_filter'](),
|
|
14853
14962
|
}); },
|
|
14854
14963
|
'io.flow.internal.v0.models.report_form': function () { return ({
|
|
14855
14964
|
type: factories['io.flow.internal.v0.enums.report_type'](),
|
|
@@ -15582,33 +15691,6 @@ var factories = {
|
|
|
15582
15691
|
organization: factories.string(),
|
|
15583
15692
|
revenue_record: factories['io.flow.internal.v0.models.revenue_record'](),
|
|
15584
15693
|
}); },
|
|
15585
|
-
'io.flow.internal.v0.models.rohan_item': function () { return ({
|
|
15586
|
-
id: factories.string(),
|
|
15587
|
-
number: factories.string(),
|
|
15588
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15589
|
-
description: factories.string(),
|
|
15590
|
-
type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
|
|
15591
|
-
added_on: factories.date_iso_8601(),
|
|
15592
|
-
}); },
|
|
15593
|
-
'io.flow.internal.v0.models.rohan_item_deleted': function () { return ({
|
|
15594
|
-
discriminator: 'rohan_item_deleted',
|
|
15595
|
-
event_id: factories.string(),
|
|
15596
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15597
|
-
id: factories.string(),
|
|
15598
|
-
}); },
|
|
15599
|
-
'io.flow.internal.v0.models.rohan_item_form': function () { return ({
|
|
15600
|
-
number: factories.string(),
|
|
15601
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15602
|
-
description: factories.string(),
|
|
15603
|
-
type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
|
|
15604
|
-
added_on: factories.date_iso_8601(),
|
|
15605
|
-
}); },
|
|
15606
|
-
'io.flow.internal.v0.models.rohan_item_upserted': function () { return ({
|
|
15607
|
-
discriminator: 'rohan_item_upserted',
|
|
15608
|
-
event_id: factories.string(),
|
|
15609
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15610
|
-
item: factories['io.flow.internal.v0.models.rohan_item'](),
|
|
15611
|
-
}); },
|
|
15612
15694
|
'io.flow.internal.v0.models.routing_account': function () { return ({
|
|
15613
15695
|
discriminator: 'routing_account',
|
|
15614
15696
|
processor: factories['io.flow.internal.v0.enums.processor'](),
|
|
@@ -15640,6 +15722,9 @@ var factories = {
|
|
|
15640
15722
|
price_inclusivity: factories['io.flow.internal.v0.models.price_inclusivity'](),
|
|
15641
15723
|
destination_country: factories.string(),
|
|
15642
15724
|
fulfilled_at: factories.date_time_iso_8601(),
|
|
15725
|
+
reconciliation: factories['io.flow.internal.v0.models.reporting_reconciliation'](),
|
|
15726
|
+
is_eu_destination: factories.boolean(),
|
|
15727
|
+
debug_url: factories.string(),
|
|
15643
15728
|
}); },
|
|
15644
15729
|
'io.flow.internal.v0.models.sandbox_setup': function () { return ({
|
|
15645
15730
|
requested_by: factories.string(),
|
|
@@ -15647,33 +15732,6 @@ var factories = {
|
|
|
15647
15732
|
'io.flow.internal.v0.models.sandbox_setup_form': function () { return ({
|
|
15648
15733
|
requested_by: factories.string(),
|
|
15649
15734
|
}); },
|
|
15650
|
-
'io.flow.internal.v0.models.sarvesh_item': function () { return ({
|
|
15651
|
-
id: factories.string(),
|
|
15652
|
-
number: factories.string(),
|
|
15653
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15654
|
-
description: factories.string(),
|
|
15655
|
-
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
15656
|
-
added_on: factories.date_time_iso_8601(),
|
|
15657
|
-
}); },
|
|
15658
|
-
'io.flow.internal.v0.models.sarvesh_item_deleted': function () { return ({
|
|
15659
|
-
discriminator: 'sarvesh_item_deleted',
|
|
15660
|
-
event_id: factories.string(),
|
|
15661
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15662
|
-
id: factories.string(),
|
|
15663
|
-
}); },
|
|
15664
|
-
'io.flow.internal.v0.models.sarvesh_item_form': function () { return ({
|
|
15665
|
-
number: factories.string(),
|
|
15666
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
15667
|
-
description: factories.string(),
|
|
15668
|
-
type: factories['io.flow.internal.v0.enums.sarvesh_item_type'](),
|
|
15669
|
-
added_on: factories.date_time_iso_8601(),
|
|
15670
|
-
}); },
|
|
15671
|
-
'io.flow.internal.v0.models.sarvesh_item_upserted': function () { return ({
|
|
15672
|
-
discriminator: 'sarvesh_item_upserted',
|
|
15673
|
-
event_id: factories.string(),
|
|
15674
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15675
|
-
item: factories['io.flow.internal.v0.models.sarvesh_item'](),
|
|
15676
|
-
}); },
|
|
15677
15735
|
'io.flow.internal.v0.models.scheduled_payment': function () { return ({
|
|
15678
15736
|
payment: factories['io.flow.internal.v0.models.report_payment'](),
|
|
15679
15737
|
bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
|
|
@@ -15795,6 +15853,31 @@ var factories = {
|
|
|
15795
15853
|
cost_estimate_source: factories['io.flow.label.v0.enums.cost_estimate_source'](),
|
|
15796
15854
|
cost: factories['io.flow.common.v0.models.money'](),
|
|
15797
15855
|
}); },
|
|
15856
|
+
'io.flow.internal.v0.models.shipping_cost_deleted': function () { return ({
|
|
15857
|
+
discriminator: 'shipping_cost_deleted',
|
|
15858
|
+
event_id: factories.string(),
|
|
15859
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15860
|
+
organization: factories.string(),
|
|
15861
|
+
id: factories.string(),
|
|
15862
|
+
}); },
|
|
15863
|
+
'io.flow.internal.v0.models.shipping_cost_summary': function () { return ({
|
|
15864
|
+
id: factories.string(),
|
|
15865
|
+
source: factories['io.flow.billing.v0.enums.transaction_source'](),
|
|
15866
|
+
organization_id: factories.string(),
|
|
15867
|
+
order_number: factories.string(),
|
|
15868
|
+
amount: factories['io.flow.common.v0.models.money'](),
|
|
15869
|
+
tax: factories['io.flow.common.v0.models.money'](),
|
|
15870
|
+
label_id: factories.string(),
|
|
15871
|
+
base: factories['io.flow.trueup.v0.models.label_base'](),
|
|
15872
|
+
surcharges: arrayOf(function () { return factories['io.flow.trueup.v0.models.label_surcharge'](); }),
|
|
15873
|
+
}); },
|
|
15874
|
+
'io.flow.internal.v0.models.shipping_cost_upserted': function () { return ({
|
|
15875
|
+
discriminator: 'shipping_cost_upserted',
|
|
15876
|
+
event_id: factories.string(),
|
|
15877
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15878
|
+
organization: factories.string(),
|
|
15879
|
+
shipping_cost: factories['io.flow.internal.v0.models.shipping_cost_summary'](),
|
|
15880
|
+
}); },
|
|
15798
15881
|
'io.flow.internal.v0.models.shipping_lane': function () { return ({
|
|
15799
15882
|
origin: factories.string(),
|
|
15800
15883
|
destination: factories.string(),
|
|
@@ -15848,6 +15931,22 @@ var factories = {
|
|
|
15848
15931
|
line_items: arrayOf(function () { return factories['io.flow.common.v0.models.line_item_form'](); }),
|
|
15849
15932
|
include_unpublished: factories.boolean(),
|
|
15850
15933
|
}); },
|
|
15934
|
+
'io.flow.internal.v0.models.shopify_address': function () { return ({
|
|
15935
|
+
address1: factories.string(),
|
|
15936
|
+
city: factories.string(),
|
|
15937
|
+
country_code: factories.string(),
|
|
15938
|
+
address2: factories.string(),
|
|
15939
|
+
postal_code: factories.string(),
|
|
15940
|
+
province: factories.string(),
|
|
15941
|
+
}); },
|
|
15942
|
+
'io.flow.internal.v0.models.shopify_callback_error': function () { return ({
|
|
15943
|
+
errors: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_callback_error_item'](); }),
|
|
15944
|
+
}); },
|
|
15945
|
+
'io.flow.internal.v0.models.shopify_callback_error_item': function () { return ({
|
|
15946
|
+
code: factories['io.flow.internal.v0.enums.shopify_callback_error_code'](),
|
|
15947
|
+
message: factories.string(),
|
|
15948
|
+
field: factories.string(),
|
|
15949
|
+
}); },
|
|
15851
15950
|
'io.flow.internal.v0.models.shopify_catalog_publication': function () { return ({
|
|
15852
15951
|
owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
|
|
15853
15952
|
}); },
|
|
@@ -15858,6 +15957,12 @@ var factories = {
|
|
|
15858
15957
|
token: factories['io.flow.internal.v0.models.shopify_channel_organization_token'](),
|
|
15859
15958
|
service: factories['io.flow.internal.v0.enums.shopify_service'](),
|
|
15860
15959
|
}); },
|
|
15960
|
+
'io.flow.internal.v0.models.shopify_contact_details': function () { return ({
|
|
15961
|
+
company: factories.string(),
|
|
15962
|
+
email: factories.string(),
|
|
15963
|
+
name: factories.string(),
|
|
15964
|
+
phone: factories.string(),
|
|
15965
|
+
}); },
|
|
15861
15966
|
'io.flow.internal.v0.models.shopify_dispute': function () { return ({
|
|
15862
15967
|
id: factories.string(),
|
|
15863
15968
|
organization_id: factories.string(),
|
|
@@ -16165,6 +16270,14 @@ var factories = {
|
|
|
16165
16270
|
organization: factories.string(),
|
|
16166
16271
|
registration: factories['io.flow.internal.v0.models.shopify_markets_webhook_registration'](),
|
|
16167
16272
|
}); },
|
|
16273
|
+
'io.flow.internal.v0.models.shopify_measurements': function () { return ({
|
|
16274
|
+
dimension_unit: factories['io.flow.internal.v0.enums.shopify_dimension_unit'](),
|
|
16275
|
+
height: factories.decimal(),
|
|
16276
|
+
length: factories.decimal(),
|
|
16277
|
+
width: factories.decimal(),
|
|
16278
|
+
weight: factories.decimal(),
|
|
16279
|
+
weight_unit: factories['io.flow.internal.v0.enums.shopify_weight_unit'](),
|
|
16280
|
+
}); },
|
|
16168
16281
|
'io.flow.internal.v0.models.shopify_merchant_plan': function () { return ({
|
|
16169
16282
|
id: factories.string(),
|
|
16170
16283
|
authorization: factories['io.flow.payment.v0.models.authorization_reference'](),
|
|
@@ -16188,6 +16301,10 @@ var factories = {
|
|
|
16188
16301
|
catalog_publication: factories['io.flow.internal.v0.models.shopify_catalog_publication'](),
|
|
16189
16302
|
token: factories.string(),
|
|
16190
16303
|
}); },
|
|
16304
|
+
'io.flow.internal.v0.models.shopify_money': function () { return ({
|
|
16305
|
+
amount: factories.decimal(),
|
|
16306
|
+
currency_code: factories.string(),
|
|
16307
|
+
}); },
|
|
16191
16308
|
'io.flow.internal.v0.models.shopify_monitoring_carrier_service': function () { return ({
|
|
16192
16309
|
service: factories.string(),
|
|
16193
16310
|
}); },
|
|
@@ -16427,6 +16544,13 @@ var factories = {
|
|
|
16427
16544
|
shopify_product: factories['io.flow.shopify.external.v0.models.product'](),
|
|
16428
16545
|
deleted_at: factories.date_time_iso_8601(),
|
|
16429
16546
|
}); },
|
|
16547
|
+
'io.flow.internal.v0.models.shopify_rate_customs_detail': function () { return ({
|
|
16548
|
+
incoterm: factories['io.flow.internal.v0.enums.shopify_incoterm'](),
|
|
16549
|
+
net_value: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
16550
|
+
}); },
|
|
16551
|
+
'io.flow.internal.v0.models.shopify_rate_pickup_point': function () { return ({
|
|
16552
|
+
partner_reference_id: factories.string(),
|
|
16553
|
+
}); },
|
|
16430
16554
|
'io.flow.internal.v0.models.shopify_report_file_deleted': function () { return ({
|
|
16431
16555
|
discriminator: 'shopify_report_file_deleted',
|
|
16432
16556
|
event_id: factories.string(),
|
|
@@ -16439,6 +16563,73 @@ var factories = {
|
|
|
16439
16563
|
timestamp: factories.date_time_iso_8601(),
|
|
16440
16564
|
shopify_report_file: factories['io.flow.internal.v0.models.report_file'](),
|
|
16441
16565
|
}); },
|
|
16566
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_available': function () { return ({
|
|
16567
|
+
carrier_service_id: factories.string(),
|
|
16568
|
+
total_charges: factories['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'](),
|
|
16569
|
+
charges: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_charge'](); }),
|
|
16570
|
+
shipment_options: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_option'](); }),
|
|
16571
|
+
expected_delivery_date: factories.date_time_iso_8601(),
|
|
16572
|
+
guaranteed_delivery_date: factories.date_time_iso_8601(),
|
|
16573
|
+
incoterm: factories['io.flow.internal.v0.enums.shopify_incoterm'](),
|
|
16574
|
+
}); },
|
|
16575
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_charge': function () { return ({
|
|
16576
|
+
code: factories['io.flow.internal.v0.enums.shopify_charge_code'](),
|
|
16577
|
+
cost: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
16578
|
+
}); },
|
|
16579
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_option': function () { return ({
|
|
16580
|
+
code: factories['io.flow.internal.v0.enums.shopify_shipment_option_code'](),
|
|
16581
|
+
cost: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
16582
|
+
optional: factories.boolean(),
|
|
16583
|
+
}); },
|
|
16584
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_package': function () { return ({
|
|
16585
|
+
type: factories['io.flow.internal.v0.enums.shopify_package_type'](),
|
|
16586
|
+
measurements: factories['io.flow.internal.v0.models.shopify_measurements'](),
|
|
16587
|
+
}); },
|
|
16588
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_reason': function () { return ({
|
|
16589
|
+
code: factories['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code'](),
|
|
16590
|
+
field: factories.string(),
|
|
16591
|
+
message: factories.string(),
|
|
16592
|
+
}); },
|
|
16593
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_request': function () { return ({
|
|
16594
|
+
idempotency_key: factories.string(),
|
|
16595
|
+
webhook_id: factories.string(),
|
|
16596
|
+
test: factories.boolean(),
|
|
16597
|
+
shipper: factories['io.flow.internal.v0.models.shopify_shipment_rate_shipper'](),
|
|
16598
|
+
shipment: factories['io.flow.internal.v0.models.shopify_shipment_rate_shipment'](),
|
|
16599
|
+
}); },
|
|
16600
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_response': function () { return ({
|
|
16601
|
+
rates: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_available'](); }),
|
|
16602
|
+
unavailable_rates: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_unavailable'](); }),
|
|
16603
|
+
}); },
|
|
16604
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_shipment': function () { return ({
|
|
16605
|
+
carrier_id: factories.string(),
|
|
16606
|
+
delivery_method_type: factories['io.flow.internal.v0.enums.shopify_delivery_method_type'](),
|
|
16607
|
+
shipping_date_time: factories.date_time_iso_8601(),
|
|
16608
|
+
'return': factories.boolean(),
|
|
16609
|
+
origin: factories['io.flow.internal.v0.models.shopify_shipping_location'](),
|
|
16610
|
+
destination: factories['io.flow.internal.v0.models.shopify_shipping_location'](),
|
|
16611
|
+
'package': factories['io.flow.internal.v0.models.shopify_shipment_rate_package'](),
|
|
16612
|
+
pickup_point: factories['io.flow.internal.v0.models.shopify_rate_pickup_point'](),
|
|
16613
|
+
customs_detail: factories['io.flow.internal.v0.models.shopify_rate_customs_detail'](),
|
|
16614
|
+
}); },
|
|
16615
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_shipper': function () { return ({
|
|
16616
|
+
account_id: factories.string(),
|
|
16617
|
+
carrier_account_reference_id: factories.string(),
|
|
16618
|
+
byoa: factories.boolean(),
|
|
16619
|
+
}); },
|
|
16620
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_total_charges': function () { return ({
|
|
16621
|
+
subtotal: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
16622
|
+
tax: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
16623
|
+
total: factories['io.flow.internal.v0.models.shopify_money'](),
|
|
16624
|
+
}); },
|
|
16625
|
+
'io.flow.internal.v0.models.shopify_shipment_rate_unavailable': function () { return ({
|
|
16626
|
+
carrier_service_id: factories.string(),
|
|
16627
|
+
reasons: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_reason'](); }),
|
|
16628
|
+
}); },
|
|
16629
|
+
'io.flow.internal.v0.models.shopify_shipping_location': function () { return ({
|
|
16630
|
+
address: factories['io.flow.internal.v0.models.shopify_address'](),
|
|
16631
|
+
contact_details: factories['io.flow.internal.v0.models.shopify_contact_details'](),
|
|
16632
|
+
}); },
|
|
16442
16633
|
'io.flow.internal.v0.models.shopify_shop_statistics': function () { return ({
|
|
16443
16634
|
id: factories.string(),
|
|
16444
16635
|
initial_catalog_synced_at: factories.date_time_iso_8601(),
|
|
@@ -16472,12 +16663,31 @@ var factories = {
|
|
|
16472
16663
|
default_hs6_code: factories.string(),
|
|
16473
16664
|
auto_correct: factories.boolean(),
|
|
16474
16665
|
}); },
|
|
16666
|
+
'io.flow.internal.v0.models.shopify_test_order': function () { return ({
|
|
16667
|
+
id: factories.string(),
|
|
16668
|
+
submitted_at: factories.date_time_iso_8601(),
|
|
16669
|
+
}); },
|
|
16670
|
+
'io.flow.internal.v0.models.shopify_test_order_deleted': function () { return ({
|
|
16671
|
+
discriminator: 'shopify_test_order_deleted',
|
|
16672
|
+
event_id: factories.string(),
|
|
16673
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16674
|
+
organization: factories.string(),
|
|
16675
|
+
id: factories.string(),
|
|
16676
|
+
}); },
|
|
16677
|
+
'io.flow.internal.v0.models.shopify_test_order_upserted': function () { return ({
|
|
16678
|
+
discriminator: 'shopify_test_order_upserted',
|
|
16679
|
+
event_id: factories.string(),
|
|
16680
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16681
|
+
organization: factories.string(),
|
|
16682
|
+
shopify_test_order: factories['io.flow.internal.v0.models.shopify_test_order'](),
|
|
16683
|
+
}); },
|
|
16475
16684
|
'io.flow.internal.v0.models.shopper_breakdown': function () { return ({
|
|
16476
16685
|
product: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16477
16686
|
product_purchase_price: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16478
16687
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16479
16688
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16480
16689
|
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16690
|
+
subtotal: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16481
16691
|
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16482
16692
|
}); },
|
|
16483
16693
|
'io.flow.internal.v0.models.shopper_fees': function () { return ({
|
|
@@ -16788,6 +16998,7 @@ var factories = {
|
|
|
16788
16998
|
mor_fees: factories.integer(),
|
|
16789
16999
|
mor_foreign_exchange_fees: factories.integer(),
|
|
16790
17000
|
sp_processing_fees: factories.integer(),
|
|
17001
|
+
mor_fees_tax: factories.integer(),
|
|
16791
17002
|
}); },
|
|
16792
17003
|
'io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata': function () { return ({
|
|
16793
17004
|
discriminator: 'stripe_connect_report_record_transfer_metadata',
|
|
@@ -17696,7 +17907,6 @@ var factories = {
|
|
|
17696
17907
|
fulfillment_key: factories.string(),
|
|
17697
17908
|
rex_number: factories.string(),
|
|
17698
17909
|
weee_number: factories.string(),
|
|
17699
|
-
generate_commercial_invoice_only: factories.boolean(),
|
|
17700
17910
|
liability_remittance_plan: factories['io.flow.internal.v0.models.liability_remittance_plan'](),
|
|
17701
17911
|
shipment_cost_summary: factories['io.flow.internal.v0.models.shipment_cost_summary'](),
|
|
17702
17912
|
shipping_label_hop_cost_itemized_estimate: factories['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'](),
|
|
@@ -17983,8 +18193,6 @@ var factories = {
|
|
|
17983
18193
|
function () { return factories['io.flow.internal.v0.models.calculator_organization_settings_deleted'](); },
|
|
17984
18194
|
function () { return factories['io.flow.internal.v0.models.carrier_account_upserted_v2'](); },
|
|
17985
18195
|
function () { return factories['io.flow.internal.v0.models.carrier_account_deleted'](); },
|
|
17986
|
-
function () { return factories['io.flow.internal.v0.models.label_generation_settings_upserted'](); },
|
|
17987
|
-
function () { return factories['io.flow.internal.v0.models.label_generation_settings_deleted'](); },
|
|
17988
18196
|
function () { return factories['io.flow.internal.v0.models.catalog_import_request'](); },
|
|
17989
18197
|
function () { return factories['io.flow.internal.v0.models.exclusion_rule_upserted'](); },
|
|
17990
18198
|
function () { return factories['io.flow.internal.v0.models.exclusion_rule_deleted'](); },
|
|
@@ -18054,6 +18262,8 @@ var factories = {
|
|
|
18054
18262
|
function () { return factories['io.flow.internal.v0.models.carrier_charge_deleted'](); },
|
|
18055
18263
|
function () { return factories['io.flow.internal.v0.models.bank_payment_order_upserted'](); },
|
|
18056
18264
|
function () { return factories['io.flow.internal.v0.models.bank_payment_order_deleted'](); },
|
|
18265
|
+
function () { return factories['io.flow.internal.v0.models.shipping_cost_upserted'](); },
|
|
18266
|
+
function () { return factories['io.flow.internal.v0.models.shipping_cost_deleted'](); },
|
|
18057
18267
|
function () { return factories['io.flow.internal.v0.models.fraud_review_upserted'](); },
|
|
18058
18268
|
function () { return factories['io.flow.internal.v0.models.fraud_review_deleted'](); },
|
|
18059
18269
|
function () { return factories['io.flow.internal.v0.models.fraud_pending_review_upserted'](); },
|
|
@@ -18167,11 +18377,17 @@ var factories = {
|
|
|
18167
18377
|
function () { return factories['io.flow.internal.v0.models.paypal_refund_upserted'](); },
|
|
18168
18378
|
function () { return factories['io.flow.internal.v0.models.paypal_dispute_upserted'](); },
|
|
18169
18379
|
function () { return factories['io.flow.internal.v0.models.paypal_dispute_deleted'](); },
|
|
18380
|
+
function () { return factories['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'](); },
|
|
18381
|
+
function () { return factories['io.flow.internal.v0.models.preonboarding_sellability_result_updated'](); },
|
|
18382
|
+
function () { return factories['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'](); },
|
|
18170
18383
|
function () { return factories['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'](); },
|
|
18171
18384
|
function () { return factories['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'](); },
|
|
18172
18385
|
function () { return factories['io.flow.internal.v0.models.product_restriction_state_inserted'](); },
|
|
18173
18386
|
function () { return factories['io.flow.internal.v0.models.product_restriction_state_updated'](); },
|
|
18174
18387
|
function () { return factories['io.flow.internal.v0.models.product_restriction_state_deleted'](); },
|
|
18388
|
+
function () { return factories['io.flow.internal.v0.models.product_sellability_result_inserted'](); },
|
|
18389
|
+
function () { return factories['io.flow.internal.v0.models.product_sellability_result_updated'](); },
|
|
18390
|
+
function () { return factories['io.flow.internal.v0.models.product_sellability_result_deleted'](); },
|
|
18175
18391
|
function () { return factories['io.flow.internal.v0.models.order_rates_published_v3'](); },
|
|
18176
18392
|
function () { return factories['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'](); },
|
|
18177
18393
|
function () { return factories['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'](); },
|
|
@@ -18231,6 +18447,8 @@ var factories = {
|
|
|
18231
18447
|
function () { return factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'](); },
|
|
18232
18448
|
function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_upserted'](); },
|
|
18233
18449
|
function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_deleted'](); },
|
|
18450
|
+
function () { return factories['io.flow.internal.v0.models.shopify_test_order_upserted'](); },
|
|
18451
|
+
function () { return factories['io.flow.internal.v0.models.shopify_test_order_deleted'](); },
|
|
18234
18452
|
function () { return factories['io.flow.internal.v0.models.shopify_product_create_upserted'](); },
|
|
18235
18453
|
function () { return factories['io.flow.internal.v0.models.shopify_product_create_deleted'](); },
|
|
18236
18454
|
function () { return factories['io.flow.internal.v0.models.shopify_product_update_upserted'](); },
|
|
@@ -18267,22 +18485,10 @@ var factories = {
|
|
|
18267
18485
|
function () { return factories['io.flow.internal.v0.models.stripe_connect_report_record_deleted'](); },
|
|
18268
18486
|
function () { return factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](); },
|
|
18269
18487
|
function () { return factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](); },
|
|
18270
|
-
function () { return factories['io.flow.internal.v0.models.anirban_item_upserted'](); },
|
|
18271
|
-
function () { return factories['io.flow.internal.v0.models.anirban_item_deleted'](); },
|
|
18272
|
-
function () { return factories['io.flow.internal.v0.models.sarvesh_item_upserted'](); },
|
|
18273
|
-
function () { return factories['io.flow.internal.v0.models.sarvesh_item_deleted'](); },
|
|
18274
|
-
function () { return factories['io.flow.internal.v0.models.hosein_item_upserted'](); },
|
|
18275
|
-
function () { return factories['io.flow.internal.v0.models.hosein_item_deleted'](); },
|
|
18276
|
-
function () { return factories['io.flow.internal.v0.models.niall_item_upserted'](); },
|
|
18277
|
-
function () { return factories['io.flow.internal.v0.models.niall_item_deleted'](); },
|
|
18278
|
-
function () { return factories['io.flow.internal.v0.models.rohan_item_upserted'](); },
|
|
18279
|
-
function () { return factories['io.flow.internal.v0.models.rohan_item_deleted'](); },
|
|
18280
|
-
function () { return factories['io.flow.internal.v0.models.aldo_item_upserted'](); },
|
|
18281
|
-
function () { return factories['io.flow.internal.v0.models.aldo_item_deleted'](); },
|
|
18282
|
-
function () { return factories['io.flow.internal.v0.models.ansh_item_upserted'](); },
|
|
18283
|
-
function () { return factories['io.flow.internal.v0.models.ansh_item_deleted'](); },
|
|
18284
18488
|
function () { return factories['io.flow.internal.v0.models.gabriel_item_upserted'](); },
|
|
18285
18489
|
function () { return factories['io.flow.internal.v0.models.gabriel_item_deleted'](); },
|
|
18490
|
+
function () { return factories['io.flow.internal.v0.models.chenglin_item_upserted'](); },
|
|
18491
|
+
function () { return factories['io.flow.internal.v0.models.chenglin_item_deleted'](); },
|
|
18286
18492
|
function () { return factories['io.flow.internal.v0.models.tracking_processing_error_upserted'](); },
|
|
18287
18493
|
function () { return factories['io.flow.internal.v0.models.tracking_processing_error_deleted'](); },
|
|
18288
18494
|
function () { return factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2'](); },
|
|
@@ -18645,6 +18851,8 @@ var factories = {
|
|
|
18645
18851
|
function () { return factories['io.flow.internal.v0.models.accounting_return_metadata'](); },
|
|
18646
18852
|
function () { return factories['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'](); },
|
|
18647
18853
|
function () { return factories['io.flow.internal.v0.models.channel_transaction_trigger_metadata'](); },
|
|
18854
|
+
function () { return factories['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'](); },
|
|
18855
|
+
function () { return factories['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'](); },
|
|
18648
18856
|
]);
|
|
18649
18857
|
return f();
|
|
18650
18858
|
},
|
|
@@ -18899,6 +19107,7 @@ var factories = {
|
|
|
18899
19107
|
'notification_requiring_crossdock',
|
|
18900
19108
|
'flow_simulation_sync',
|
|
18901
19109
|
'autogenerated',
|
|
19110
|
+
'legacy_shopify_graphql_server',
|
|
18902
19111
|
]); },
|
|
18903
19112
|
'io.flow.label.v0.enums.label_trigger_method': function () { return faker.helpers.arrayElement(['autogenerated', 'on_demand']); },
|
|
18904
19113
|
'io.flow.label.v0.enums.origin_location_source': function () { return faker.helpers.arrayElement([
|
|
@@ -19218,7 +19427,6 @@ var factories = {
|
|
|
19218
19427
|
beneficiary_details: factories['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
19219
19428
|
other_trade_sector: factories.string(),
|
|
19220
19429
|
center_contact: factories['io.flow.merchant.onboarding.v0.models.operations_contact'](),
|
|
19221
|
-
center_address: factories['io.flow.common.v0.models.address'](),
|
|
19222
19430
|
average_order_weight: factories.decimal(),
|
|
19223
19431
|
average_order_weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
19224
19432
|
package_dimensions: arrayOf(function () { return factories['io.flow.common.v0.models.dimension'](); }),
|
|
@@ -19245,7 +19453,6 @@ var factories = {
|
|
|
19245
19453
|
beneficiary_details: factories['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
19246
19454
|
other_trade_sector: factories.string(),
|
|
19247
19455
|
center_contact: factories['io.flow.merchant.onboarding.v0.models.operations_contact'](),
|
|
19248
|
-
center_address: factories['io.flow.common.v0.models.address'](),
|
|
19249
19456
|
average_order_weight: factories.decimal(),
|
|
19250
19457
|
average_order_weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
19251
19458
|
package_dimensions: arrayOf(function () { return factories['io.flow.common.v0.models.dimension'](); }),
|
|
@@ -19332,6 +19539,7 @@ var factories = {
|
|
|
19332
19539
|
company: factories.string(),
|
|
19333
19540
|
email: factories.string(),
|
|
19334
19541
|
phone: factories.string(),
|
|
19542
|
+
address: factories['io.flow.common.v0.models.address'](),
|
|
19335
19543
|
}); },
|
|
19336
19544
|
'io.flow.merchant.onboarding.v0.models.shop': function () { return ({
|
|
19337
19545
|
name: factories.string(),
|
|
@@ -19534,7 +19742,7 @@ var factories = {
|
|
|
19534
19742
|
'surcharges',
|
|
19535
19743
|
'tip',
|
|
19536
19744
|
]); },
|
|
19537
|
-
'io.flow.order.price.v0.enums.order_price_fee_type': function () { return faker.helpers.arrayElement(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product']); },
|
|
19745
|
+
'io.flow.order.price.v0.enums.order_price_fee_type': function () { return faker.helpers.arrayElement(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product', 'mor_tax']); },
|
|
19538
19746
|
'io.flow.order.price.v0.models.order_price_detail': function () { return ({
|
|
19539
19747
|
key: factories['io.flow.order.price.v0.enums.order_price_detail_key'](),
|
|
19540
19748
|
currency: factories.string(),
|
|
@@ -20810,7 +21018,7 @@ var factories = {
|
|
|
20810
21018
|
'invalid_destination',
|
|
20811
21019
|
'unknown',
|
|
20812
21020
|
]); },
|
|
20813
|
-
'io.flow.payment.v0.enums.payment_fee_type': function () { return faker.helpers.arrayElement(['fx', 'mor', 'sp']); },
|
|
21021
|
+
'io.flow.payment.v0.enums.payment_fee_type': function () { return faker.helpers.arrayElement(['fx', 'mor', 'sp', 'mor_tax']); },
|
|
20814
21022
|
'io.flow.payment.v0.enums.payment_source_confirmation_action_type': function () { return faker.helpers.arrayElement(['cvv', 'billing_address', 'number']); },
|
|
20815
21023
|
'io.flow.payment.v0.enums.refund_decline_code': function () { return faker.helpers.arrayElement(['expired', 'insufficient_funds', 'unknown']); },
|
|
20816
21024
|
'io.flow.payment.v0.enums.refund_failure_category': function () { return faker.helpers.arrayElement([
|
|
@@ -22435,6 +22643,11 @@ var factories = {
|
|
|
22435
22643
|
id: factories.string(),
|
|
22436
22644
|
name: factories.string(),
|
|
22437
22645
|
}); },
|
|
22646
|
+
'io.flow.ratecard.v0.models.ratecard_data': function () { return ({
|
|
22647
|
+
dhlParcelDistributionCenter: factories.string(),
|
|
22648
|
+
glbeRatecardMetadataLaneIdentifier: factories.string(),
|
|
22649
|
+
pickupCenter: factories.string(),
|
|
22650
|
+
}); },
|
|
22438
22651
|
'io.flow.ratecard.v0.models.ratecard_estimate_form': function () { return ({
|
|
22439
22652
|
origin_address: factories['io.flow.common.v0.models.address'](),
|
|
22440
22653
|
destination_address: factories['io.flow.common.v0.models.address'](),
|
|
@@ -22520,7 +22733,7 @@ var factories = {
|
|
|
22520
22733
|
glbe_shipping_method_id: factories.string(),
|
|
22521
22734
|
glbe_proposition_name: factories.string(),
|
|
22522
22735
|
channel_revenue_share_percentage: factories.decimal(),
|
|
22523
|
-
data:
|
|
22736
|
+
data: factories['io.flow.ratecard.v0.models.ratecard_data'](),
|
|
22524
22737
|
}); },
|
|
22525
22738
|
'io.flow.ratecard.v0.models.ratecard_lane': function () { return ({
|
|
22526
22739
|
id: factories.string(),
|
|
@@ -22872,6 +23085,10 @@ var factories = {
|
|
|
22872
23085
|
hs_code: factories.string(),
|
|
22873
23086
|
restricted_regions_by_type: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellability_region_result'](); }),
|
|
22874
23087
|
needs_action_attributes: arrayOf(function () { return factories['io.flow.restrictions.v0.models.needs_action_attributes'](); }),
|
|
23088
|
+
fingerprint: factories.string(),
|
|
23089
|
+
restriction_created_at: factories.date_time_iso_8601(),
|
|
23090
|
+
first_reviewed_at: factories.date_time_iso_8601(),
|
|
23091
|
+
seconds_to_first_review: factories.long(),
|
|
22875
23092
|
}); },
|
|
22876
23093
|
'io.flow.restrictions.v0.models.reasons_per_region': function () { return ({
|
|
22877
23094
|
region: factories.string(),
|
|
@@ -22979,7 +23196,14 @@ var factories = {
|
|
|
22979
23196
|
'external_service_unavailable',
|
|
22980
23197
|
]); },
|
|
22981
23198
|
'io.flow.sellability.v0.enums.sellability_request_status': function () { return faker.helpers.arrayElement(['commit']); },
|
|
22982
|
-
'io.flow.sellability.v0.enums.sellability_result_error_code': function () { return faker.helpers.arrayElement([
|
|
23199
|
+
'io.flow.sellability.v0.enums.sellability_result_error_code': function () { return faker.helpers.arrayElement([
|
|
23200
|
+
'insufficient_details',
|
|
23201
|
+
'ineligible_category',
|
|
23202
|
+
'wait_for_high_fidelity',
|
|
23203
|
+
'external_service_unavailable',
|
|
23204
|
+
'generic_error',
|
|
23205
|
+
'catalog_processing_threshold',
|
|
23206
|
+
]); },
|
|
22983
23207
|
'io.flow.sellability.v0.enums.sellability_result_status': function () { return faker.helpers.arrayElement(['in_review', 'succeeded', 'failed']); },
|
|
22984
23208
|
'io.flow.sellability.v0.enums.sellability_screening_mode': function () { return faker.helpers.arrayElement(['pre_onboarding', 'default_on', 'active']); },
|
|
22985
23209
|
'io.flow.sellability.v0.models.product_sellability': function () { return ({
|
|
@@ -23002,11 +23226,14 @@ var factories = {
|
|
|
23002
23226
|
dry_run: factories.boolean(),
|
|
23003
23227
|
}); },
|
|
23004
23228
|
'io.flow.sellability.v0.models.product_sellability_result': function () { return ({
|
|
23229
|
+
id: factories.string(),
|
|
23005
23230
|
merchant_id: factories.string(),
|
|
23006
23231
|
product_id: factories.string(),
|
|
23007
23232
|
restricted_regions: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellability_restricted_region'](); }),
|
|
23233
|
+
restricted_reasons: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellability_restricted_reason'](); }),
|
|
23008
23234
|
needs_action_attributes: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellability_needs_action_attributes'](); }),
|
|
23009
23235
|
request_id: factories.string(),
|
|
23236
|
+
hs6_code: factories.string(),
|
|
23010
23237
|
}); },
|
|
23011
23238
|
'io.flow.sellability.v0.models.sellability_error': function () { return ({
|
|
23012
23239
|
discriminator: 'sellability_error',
|
|
@@ -23016,8 +23243,14 @@ var factories = {
|
|
|
23016
23243
|
'io.flow.sellability.v0.models.sellability_needs_action_attributes': function () { return ({
|
|
23017
23244
|
reason_code: factories.string(),
|
|
23018
23245
|
category_metafield_handles: arrayOf(function () { return factories.string(); }),
|
|
23246
|
+
category_metafield_ids: arrayOf(function () { return factories.string(); }),
|
|
23019
23247
|
require_msds: factories.boolean(),
|
|
23020
23248
|
}); },
|
|
23249
|
+
'io.flow.sellability.v0.models.sellability_reason_with_regions': function () { return ({
|
|
23250
|
+
reason: factories.string(),
|
|
23251
|
+
regions: arrayOf(function () { return factories.string(); }),
|
|
23252
|
+
review_status: factories.string(),
|
|
23253
|
+
}); },
|
|
23021
23254
|
'io.flow.sellability.v0.models.sellability_region_result': function () { return ({
|
|
23022
23255
|
type: factories['io.flow.sellability.v0.enums.rule_effect_type'](),
|
|
23023
23256
|
regions: arrayOf(function () { return factories.string(); }),
|
|
@@ -23026,13 +23259,17 @@ var factories = {
|
|
|
23026
23259
|
region: factories.string(),
|
|
23027
23260
|
reasons: arrayOf(function () { return factories.string(); }),
|
|
23028
23261
|
}); },
|
|
23262
|
+
'io.flow.sellability.v0.models.sellability_restricted_reason': function () { return ({
|
|
23263
|
+
type: factories['io.flow.sellability.v0.enums.rule_effect_type'](),
|
|
23264
|
+
reasons_with_regions: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellability_reason_with_regions'](); }),
|
|
23265
|
+
}); },
|
|
23029
23266
|
'io.flow.sellability.v0.models.sellability_restricted_region': function () { return ({
|
|
23030
23267
|
type: factories['io.flow.sellability.v0.enums.rule_effect_type'](),
|
|
23031
|
-
|
|
23268
|
+
regions: arrayOf(function () { return factories.string(); }),
|
|
23032
23269
|
}); },
|
|
23033
23270
|
'io.flow.sellability.v0.models.sellability_screening': function () { return ({
|
|
23034
23271
|
discriminator: 'sellability_screening',
|
|
23035
|
-
|
|
23272
|
+
product_sellability_result: factories['io.flow.sellability.v0.models.product_sellability_result'](),
|
|
23036
23273
|
request_id: factories.string(),
|
|
23037
23274
|
status: factories['io.flow.sellability.v0.enums.sellability_result_status'](),
|
|
23038
23275
|
error_code: factories['io.flow.sellability.v0.enums.sellability_result_error_code'](),
|
|
@@ -24312,6 +24549,20 @@ var factories = {
|
|
|
24312
24549
|
timestamp: factories.date_time_iso_8601(),
|
|
24313
24550
|
shopify_product_taxonomy_attribute_value: factories['io.flow.shopify.markets.internal.v0.models.shopify_product_taxonomy_attribute_value'](),
|
|
24314
24551
|
}); },
|
|
24552
|
+
'io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted': function () { return ({
|
|
24553
|
+
discriminator: 'shopify_test_order_deleted',
|
|
24554
|
+
event_id: factories.string(),
|
|
24555
|
+
timestamp: factories.date_time_iso_8601(),
|
|
24556
|
+
organization: factories.string(),
|
|
24557
|
+
id: factories.string(),
|
|
24558
|
+
}); },
|
|
24559
|
+
'io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted': function () { return ({
|
|
24560
|
+
discriminator: 'shopify_test_order_upserted',
|
|
24561
|
+
event_id: factories.string(),
|
|
24562
|
+
timestamp: factories.date_time_iso_8601(),
|
|
24563
|
+
organization: factories.string(),
|
|
24564
|
+
shopify_test_order: factories['io.flow.shopify.markets.internal.v0.models.shopify_test_order'](),
|
|
24565
|
+
}); },
|
|
24315
24566
|
'io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_event': function () {
|
|
24316
24567
|
var f = faker.helpers.arrayElement([
|
|
24317
24568
|
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_upserted'](); },
|
|
@@ -24343,6 +24594,8 @@ var factories = {
|
|
|
24343
24594
|
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'](); },
|
|
24344
24595
|
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted'](); },
|
|
24345
24596
|
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'](); },
|
|
24597
|
+
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'](); },
|
|
24598
|
+
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'](); },
|
|
24346
24599
|
]);
|
|
24347
24600
|
return f();
|
|
24348
24601
|
},
|
|
@@ -24643,6 +24896,10 @@ var factories = {
|
|
|
24643
24896
|
catalog_products_count: factories.long(),
|
|
24644
24897
|
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
24645
24898
|
}); },
|
|
24899
|
+
'io.flow.shopify.markets.internal.v0.models.shopify_test_order': function () { return ({
|
|
24900
|
+
id: factories.string(),
|
|
24901
|
+
submitted_at: factories.date_time_iso_8601(),
|
|
24902
|
+
}); },
|
|
24646
24903
|
'io.flow.shopify.markets.internal.v0.models.third_party_logistics_partner': function () { return ({
|
|
24647
24904
|
warehouse_address: factories['io.flow.common.v0.models.billing_address'](),
|
|
24648
24905
|
warehouse_url: factories.string(),
|
|
@@ -25051,6 +25308,7 @@ var factories = {
|
|
|
25051
25308
|
tags: factories.string(),
|
|
25052
25309
|
tax_lines: arrayOf(function () { return factories['io.flow.shopify.markets.v0.models.shopify_order_tax_line'](); }),
|
|
25053
25310
|
taxes_included: factories.boolean(),
|
|
25311
|
+
test: factories.boolean(),
|
|
25054
25312
|
token: factories.string(),
|
|
25055
25313
|
total_weight: factories.decimal(),
|
|
25056
25314
|
updated_at: factories.date_time_iso_8601(),
|
|
@@ -27568,6 +27826,7 @@ export var makeAccountContact = function () { return factories['io.flow.internal
|
|
|
27568
27826
|
export var makeAccountContactDeleted = function () { return factories['io.flow.internal.v0.models.account_contact_deleted'](); };
|
|
27569
27827
|
export var makeAccountContactForm = function () { return factories['io.flow.internal.v0.models.account_contact_form'](); };
|
|
27570
27828
|
export var makeAccountContactUpserted = function () { return factories['io.flow.internal.v0.models.account_contact_upserted'](); };
|
|
27829
|
+
export var makeAccountCurrencyFilter = function () { return factories['io.flow.internal.v0.enums.account_currency_filter'](); };
|
|
27571
27830
|
export var makeAccountDeletedV2 = function () { return factories['io.flow.internal.v0.models.account_deleted_v2'](); };
|
|
27572
27831
|
export var makeAccountDepositRule = function () { return factories['io.flow.internal.v0.models.account_deposit_rule'](); };
|
|
27573
27832
|
export var makeAccountDepositRuleForm = function () { return factories['io.flow.internal.v0.models.account_deposit_rule_form'](); };
|
|
@@ -27655,25 +27914,13 @@ export var makeAfterpayRefund = function () { return factories['io.flow.internal
|
|
|
27655
27914
|
export var makeAfterpayRefundDeleted = function () { return factories['io.flow.internal.v0.models.afterpay_refund_deleted'](); };
|
|
27656
27915
|
export var makeAfterpayRefundUpserted = function () { return factories['io.flow.internal.v0.models.afterpay_refund_upserted'](); };
|
|
27657
27916
|
export var makeAftershipWebhook = function () { return factories['io.flow.internal.v0.models.aftership_webhook'](); };
|
|
27658
|
-
export var makeAldoItem = function () { return factories['io.flow.internal.v0.models.aldo_item'](); };
|
|
27659
|
-
export var makeAldoItemDeleted = function () { return factories['io.flow.internal.v0.models.aldo_item_deleted'](); };
|
|
27660
|
-
export var makeAldoItemForm = function () { return factories['io.flow.internal.v0.models.aldo_item_form'](); };
|
|
27661
|
-
export var makeAldoItemType = function () { return factories['io.flow.internal.v0.enums.aldo_item_type'](); };
|
|
27662
|
-
export var makeAldoItemUpserted = function () { return factories['io.flow.internal.v0.models.aldo_item_upserted'](); };
|
|
27663
27917
|
export var makeAllItemsExport = function () { return factories['io.flow.internal.v0.models.all_items_export'](); };
|
|
27664
27918
|
export var makeAllOrganizationsMembership = function () { return factories['io.flow.internal.v0.models.all_organizations_membership'](); };
|
|
27665
27919
|
export var makeAllocationItemReference = function () { return factories['io.flow.internal.v0.models.allocation_item_reference'](); };
|
|
27666
27920
|
export var makeAllowedLabels = function () { return factories['io.flow.internal.v0.models.allowed_labels'](); };
|
|
27667
|
-
export var
|
|
27668
|
-
export var
|
|
27669
|
-
export var
|
|
27670
|
-
export var makeAnirbanItemType = function () { return factories['io.flow.internal.v0.enums.anirban_item_type'](); };
|
|
27671
|
-
export var makeAnirbanItemUpserted = function () { return factories['io.flow.internal.v0.models.anirban_item_upserted'](); };
|
|
27672
|
-
export var makeAnshItem = function () { return factories['io.flow.internal.v0.models.ansh_item'](); };
|
|
27673
|
-
export var makeAnshItemDeleted = function () { return factories['io.flow.internal.v0.models.ansh_item_deleted'](); };
|
|
27674
|
-
export var makeAnshItemForm = function () { return factories['io.flow.internal.v0.models.ansh_item_form'](); };
|
|
27675
|
-
export var makeAnshItemType = function () { return factories['io.flow.internal.v0.enums.ansh_item_type'](); };
|
|
27676
|
-
export var makeAnshItemUpserted = function () { return factories['io.flow.internal.v0.models.ansh_item_upserted'](); };
|
|
27921
|
+
export var makeAmruthaItem = function () { return factories['io.flow.internal.v0.models.amrutha_item'](); };
|
|
27922
|
+
export var makeAmruthaItemForm = function () { return factories['io.flow.internal.v0.models.amrutha_item_form'](); };
|
|
27923
|
+
export var makeAmruthaItemType = function () { return factories['io.flow.internal.v0.enums.amrutha_item_type'](); };
|
|
27677
27924
|
export var makeAnyDangerousGoods = function () { return factories['io.flow.internal.v0.enums.any_dangerous_goods'](); };
|
|
27678
27925
|
export var makeApiCallReferenceId = function () { return factories['io.flow.internal.v0.enums.api_call_reference_id'](); };
|
|
27679
27926
|
export var makeApplePayAuthorizationPayload = function () { return factories['io.flow.internal.v0.models.apple_pay_authorization_payload'](); };
|
|
@@ -27696,6 +27943,10 @@ export var makeAuthorizedOrderCharge = function () { return factories['io.flow.i
|
|
|
27696
27943
|
export var makeAuthorizedShippingCharge = function () { return factories['io.flow.internal.v0.models.authorized_shipping_charge'](); };
|
|
27697
27944
|
export var makeAutoRestrictRule = function () { return factories['io.flow.internal.v0.enums.auto_restrict_rule'](); };
|
|
27698
27945
|
export var makeAutoReviewCriteria = function () { return factories['io.flow.internal.v0.models.auto_review_criteria'](); };
|
|
27946
|
+
export var makeB2BFeeMorTaxTriggerMetadata = function () { return factories['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'](); };
|
|
27947
|
+
export var makeB2BFeeMorTaxTriggerType = function () { return factories['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'](); };
|
|
27948
|
+
export var makeB2BFeeShippingTaxTriggerMetadata = function () { return factories['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'](); };
|
|
27949
|
+
export var makeB2BFeeShippingTaxTriggerType = function () { return factories['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'](); };
|
|
27699
27950
|
export var makeB2BTaxLedger = function () { return factories['io.flow.internal.v0.models.b2b_tax_ledger'](); };
|
|
27700
27951
|
export var makeB2BTaxLedgerDocumentType = function () { return factories['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'](); };
|
|
27701
27952
|
export var makeB2BTaxLedgerForm = function () { return factories['io.flow.internal.v0.models.b2b_tax_ledger_form'](); };
|
|
@@ -27757,6 +28008,9 @@ export var makeBitpayAccountPutForm = function () { return factories['io.flow.in
|
|
|
27757
28008
|
export var makeBitpayAuthentication = function () { return factories['io.flow.internal.v0.models.bitpay_authentication'](); };
|
|
27758
28009
|
export var makeBitpayAuthenticationDataReference = function () { return factories['io.flow.internal.v0.models.bitpay_authentication_data_reference'](); };
|
|
27759
28010
|
export var makeBitpayAuthenticationForm = function () { return factories['io.flow.internal.v0.models.bitpay_authentication_form'](); };
|
|
28011
|
+
export var makeBojanaItem = function () { return factories['io.flow.internal.v0.models.bojana_item'](); };
|
|
28012
|
+
export var makeBojanaItemForm = function () { return factories['io.flow.internal.v0.models.bojana_item_form'](); };
|
|
28013
|
+
export var makeBojanaItemType = function () { return factories['io.flow.internal.v0.enums.bojana_item_type'](); };
|
|
27760
28014
|
export var makeBooleanFeatureDefaultValue = function () { return factories['io.flow.internal.v0.models.boolean_feature_default_value'](); };
|
|
27761
28015
|
export var makeBooleanFeatureRule = function () { return factories['io.flow.internal.v0.models.boolean_feature_rule'](); };
|
|
27762
28016
|
export var makeBooleanFeatureRuleForm = function () { return factories['io.flow.internal.v0.models.boolean_feature_rule_form'](); };
|
|
@@ -27928,6 +28182,11 @@ export var makeCheckoutSettings = function () { return factories['io.flow.intern
|
|
|
27928
28182
|
export var makeCheckoutShippingMethodPromptBehavior = function () { return factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'](); };
|
|
27929
28183
|
export var makeCheckoutUrl = function () { return factories['io.flow.internal.v0.models.checkout_url'](); };
|
|
27930
28184
|
export var makeCheckoutUrlType = function () { return factories['io.flow.internal.v0.enums.checkout_url_type'](); };
|
|
28185
|
+
export var makeChenglinItem = function () { return factories['io.flow.internal.v0.models.chenglin_item'](); };
|
|
28186
|
+
export var makeChenglinItemDeleted = function () { return factories['io.flow.internal.v0.models.chenglin_item_deleted'](); };
|
|
28187
|
+
export var makeChenglinItemForm = function () { return factories['io.flow.internal.v0.models.chenglin_item_form'](); };
|
|
28188
|
+
export var makeChenglinItemType = function () { return factories['io.flow.internal.v0.enums.chenglin_item_type'](); };
|
|
28189
|
+
export var makeChenglinItemUpserted = function () { return factories['io.flow.internal.v0.models.chenglin_item_upserted'](); };
|
|
27931
28190
|
export var makeCipher = function () { return factories['io.flow.internal.v0.models.cipher'](); };
|
|
27932
28191
|
export var makeCipherForm = function () { return factories['io.flow.internal.v0.models.cipher_form'](); };
|
|
27933
28192
|
export var makeCipherReference = function () { return factories['io.flow.internal.v0.models.cipher_reference'](); };
|
|
@@ -27961,6 +28220,7 @@ export var makeClassificationProductSummaryPage = function () { return factories
|
|
|
27961
28220
|
export var makeClassificationRequeueRequest = function () { return factories['io.flow.internal.v0.models.classification_requeue_request'](); };
|
|
27962
28221
|
export var makeClassificationResponse = function () { return factories['io.flow.internal.v0.unions.classification_response'](); };
|
|
27963
28222
|
export var makeClassificationScope = function () { return factories['io.flow.internal.v0.enums.classification_scope'](); };
|
|
28223
|
+
export var makeClassificationSource = function () { return factories['io.flow.internal.v0.enums.classification_source'](); };
|
|
27964
28224
|
export var makeClassificationStatistics = function () { return factories['io.flow.internal.v0.models.classification_statistics'](); };
|
|
27965
28225
|
export var makeClassificationSummaryReportPayload = function () { return factories['io.flow.internal.v0.models.classification_summary_report_payload'](); };
|
|
27966
28226
|
export var makeClassificationTaxonomy = function () { return factories['io.flow.internal.v0.unions.classification_taxonomy'](); };
|
|
@@ -28305,6 +28565,7 @@ export var makeGeRevenueShareTransaction = function () { return factories['io.fl
|
|
|
28305
28565
|
export var makeGeRevenueShareTransactionType = function () { return factories['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'](); };
|
|
28306
28566
|
export var makeGenerateLoad = function () { return factories['io.flow.internal.v0.unions.generate_load'](); };
|
|
28307
28567
|
export var makeGenerateLoadMultipleOrgs = function () { return factories['io.flow.internal.v0.models.generate_load_multiple_orgs'](); };
|
|
28568
|
+
export var makeGenerateLoadRate = function () { return factories['io.flow.internal.v0.models.generate_load_rate'](); };
|
|
28308
28569
|
export var makeGenerateLoadSingleOrg = function () { return factories['io.flow.internal.v0.models.generate_load_single_org'](); };
|
|
28309
28570
|
export var makeGenericValidationError = function () { return factories['io.flow.internal.v0.models.generic_validation_error'](); };
|
|
28310
28571
|
export var makeGiftCard = function () { return factories['io.flow.internal.v0.models.gift_card'](); };
|
|
@@ -28334,11 +28595,6 @@ export var makeHarmonizationThresholdForm = function () { return factories['io.f
|
|
|
28334
28595
|
export var makeHarmonizationUnclassifiedStatistics = function () { return factories['io.flow.internal.v0.models.harmonization_unclassified_statistics'](); };
|
|
28335
28596
|
export var makeHarmonizeFullyRequestV2 = function () { return factories['io.flow.internal.v0.models.harmonize_fully_request_v2'](); };
|
|
28336
28597
|
export var makeHarmonizedItemsHs6Export = function () { return factories['io.flow.internal.v0.models.harmonized_items_hs6_export'](); };
|
|
28337
|
-
export var makeHoseinItem = function () { return factories['io.flow.internal.v0.models.hosein_item'](); };
|
|
28338
|
-
export var makeHoseinItemDeleted = function () { return factories['io.flow.internal.v0.models.hosein_item_deleted'](); };
|
|
28339
|
-
export var makeHoseinItemForm = function () { return factories['io.flow.internal.v0.models.hosein_item_form'](); };
|
|
28340
|
-
export var makeHoseinItemType = function () { return factories['io.flow.internal.v0.enums.hosein_item_type'](); };
|
|
28341
|
-
export var makeHoseinItemUpserted = function () { return factories['io.flow.internal.v0.models.hosein_item_upserted'](); };
|
|
28342
28598
|
export var makeHs6 = function () { return factories['io.flow.internal.v0.models.hs6'](); };
|
|
28343
28599
|
export var makeHs6CodeSource = function () { return factories['io.flow.internal.v0.enums.hs6_code_source'](); };
|
|
28344
28600
|
export var makeHs6Metadata = function () { return factories['io.flow.internal.v0.models.hs6_metadata'](); };
|
|
@@ -28412,7 +28668,6 @@ export var makeItemSalesMarginVersion = function () { return factories['io.flow.
|
|
|
28412
28668
|
export var makeItemSummary = function () { return factories['io.flow.internal.v0.models.item_summary'](); };
|
|
28413
28669
|
export var makeItemType = function () { return factories['io.flow.internal.v0.enums.item_type'](); };
|
|
28414
28670
|
export var makeItemValuesForm = function () { return factories['io.flow.internal.v0.models.item_values_form'](); };
|
|
28415
|
-
export var makeJeanDemoItem = function () { return factories['io.flow.internal.v0.models.jean_demo_item'](); };
|
|
28416
28671
|
export var makeJournal = function () { return factories['io.flow.internal.v0.models.journal'](); };
|
|
28417
28672
|
export var makeJournalFailure = function () { return factories['io.flow.internal.v0.models.journal_failure'](); };
|
|
28418
28673
|
export var makeJournalOperation = function () { return factories['io.flow.internal.v0.enums.journal_operation'](); };
|
|
@@ -28439,10 +28694,6 @@ export var makeLabelCreationStatus = function () { return factories['io.flow.int
|
|
|
28439
28694
|
export var makeLabelDestination = function () { return factories['io.flow.internal.v0.models.label_destination'](); };
|
|
28440
28695
|
export var makeLabelEventMedium = function () { return factories['io.flow.internal.v0.enums.label_event_medium'](); };
|
|
28441
28696
|
export var makeLabelEventSource = function () { return factories['io.flow.internal.v0.enums.label_event_source'](); };
|
|
28442
|
-
export var makeLabelGenerationSettings = function () { return factories['io.flow.internal.v0.models.label_generation_settings'](); };
|
|
28443
|
-
export var makeLabelGenerationSettingsDeleted = function () { return factories['io.flow.internal.v0.models.label_generation_settings_deleted'](); };
|
|
28444
|
-
export var makeLabelGenerationSettingsForm = function () { return factories['io.flow.internal.v0.models.label_generation_settings_form'](); };
|
|
28445
|
-
export var makeLabelGenerationSettingsUpserted = function () { return factories['io.flow.internal.v0.models.label_generation_settings_upserted'](); };
|
|
28446
28697
|
export var makeLabelInvoiceRequest = function () { return factories['io.flow.internal.v0.models.label_invoice_request'](); };
|
|
28447
28698
|
export var makeLabelInvoiceRequestDeleted = function () { return factories['io.flow.internal.v0.models.label_invoice_request_deleted'](); };
|
|
28448
28699
|
export var makeLabelInvoiceRequestUpserted = function () { return factories['io.flow.internal.v0.models.label_invoice_request_upserted'](); };
|
|
@@ -28550,11 +28801,6 @@ export var makeMixedBagWeight = function () { return factories['io.flow.internal
|
|
|
28550
28801
|
export var makeNatureOfSale = function () { return factories['io.flow.internal.v0.enums.nature_of_sale'](); };
|
|
28551
28802
|
export var makeNegativeDebitMetrics = function () { return factories['io.flow.internal.v0.models.negative_debit_metrics'](); };
|
|
28552
28803
|
export var makeNextBillingStatement = function () { return factories['io.flow.internal.v0.models.next_billing_statement'](); };
|
|
28553
|
-
export var makeNiallItem = function () { return factories['io.flow.internal.v0.models.niall_item'](); };
|
|
28554
|
-
export var makeNiallItemDeleted = function () { return factories['io.flow.internal.v0.models.niall_item_deleted'](); };
|
|
28555
|
-
export var makeNiallItemForm = function () { return factories['io.flow.internal.v0.models.niall_item_form'](); };
|
|
28556
|
-
export var makeNiallItemType = function () { return factories['io.flow.internal.v0.enums.niall_item_type'](); };
|
|
28557
|
-
export var makeNiallItemUpserted = function () { return factories['io.flow.internal.v0.models.niall_item_upserted'](); };
|
|
28558
28804
|
export var makeNoCalculatedTaxAmount = function () { return factories['io.flow.internal.v0.models.no_calculated_tax_amount'](); };
|
|
28559
28805
|
export var makeNoClassificationForm = function () { return factories['io.flow.internal.v0.models.no_classification_form'](); };
|
|
28560
28806
|
export var makeNoLiabilityReasonCode = function () { return factories['io.flow.internal.v0.enums.no_liability_reason_code'](); };
|
|
@@ -28670,6 +28916,9 @@ export var makeOrganizationPaymentSettingForm = function () { return factories['
|
|
|
28670
28916
|
export var makeOrganizationPaymentSettingUpserted = function () { return factories['io.flow.internal.v0.models.organization_payment_setting_upserted'](); };
|
|
28671
28917
|
export var makeOrganizationPaymentSettingVersion = function () { return factories['io.flow.internal.v0.models.organization_payment_setting_version'](); };
|
|
28672
28918
|
export var makeOrganizationPaymentStatus = function () { return factories['io.flow.internal.v0.enums.organization_payment_status'](); };
|
|
28919
|
+
export var makeOrganizationPromotion = function () { return factories['io.flow.internal.v0.models.organization_promotion'](); };
|
|
28920
|
+
export var makeOrganizationPromotionStatus = function () { return factories['io.flow.internal.v0.enums.organization_promotion_status'](); };
|
|
28921
|
+
export var makeOrganizationPromotionWarning = function () { return factories['io.flow.internal.v0.models.organization_promotion_warning'](); };
|
|
28673
28922
|
export var makeOrganizationRestrictionApprovalStatus = function () { return factories['io.flow.internal.v0.enums.organization_restriction_approval_status'](); };
|
|
28674
28923
|
export var makeOrganizationRestrictionNoteForm = function () { return factories['io.flow.internal.v0.models.organization_restriction_note_form'](); };
|
|
28675
28924
|
export var makeOrganizationRestrictionNoteType = function () { return factories['io.flow.internal.v0.enums.organization_restriction_note_type'](); };
|
|
@@ -28792,9 +29041,6 @@ export var makePlatformFeeFlat = function () { return factories['io.flow.interna
|
|
|
28792
29041
|
export var makePlatformFeePause = function () { return factories['io.flow.internal.v0.models.platform_fee_pause'](); };
|
|
28793
29042
|
export var makePlatformFeePercentage = function () { return factories['io.flow.internal.v0.models.platform_fee_percentage'](); };
|
|
28794
29043
|
export var makePlatformFeePercentageTier = function () { return factories['io.flow.internal.v0.models.platform_fee_percentage_tier'](); };
|
|
28795
|
-
export var makePrateekItem = function () { return factories['io.flow.internal.v0.models.prateek_item'](); };
|
|
28796
|
-
export var makePrateekItemForm = function () { return factories['io.flow.internal.v0.models.prateek_item_form'](); };
|
|
28797
|
-
export var makePrateekItemType = function () { return factories['io.flow.internal.v0.enums.prateek_item_type'](); };
|
|
28798
29044
|
export var makePrediction = function () { return factories['io.flow.internal.v0.models.prediction'](); };
|
|
28799
29045
|
export var makePreferredBillingSchedule = function () { return factories['io.flow.internal.v0.enums.preferred_billing_schedule'](); };
|
|
28800
29046
|
export var makePreonboardingClassificationDecision = function () { return factories['io.flow.internal.v0.enums.preonboarding_classification_decision'](); };
|
|
@@ -28807,6 +29053,9 @@ export var makePreonboardingClassificationType = function () { return factories[
|
|
|
28807
29053
|
export var makePreonboardingMerchant = function () { return factories['io.flow.internal.v0.models.preonboarding_merchant'](); };
|
|
28808
29054
|
export var makePreonboardingRequestStatus = function () { return factories['io.flow.internal.v0.enums.preonboarding_request_status'](); };
|
|
28809
29055
|
export var makePreonboardingSellabilityResult = function () { return factories['io.flow.internal.v0.models.preonboarding_sellability_result'](); };
|
|
29056
|
+
export var makePreonboardingSellabilityResultDeleted = function () { return factories['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'](); };
|
|
29057
|
+
export var makePreonboardingSellabilityResultInserted = function () { return factories['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'](); };
|
|
29058
|
+
export var makePreonboardingSellabilityResultUpdated = function () { return factories['io.flow.internal.v0.models.preonboarding_sellability_result_updated'](); };
|
|
28810
29059
|
export var makePriceInclusivity = function () { return factories['io.flow.internal.v0.models.price_inclusivity'](); };
|
|
28811
29060
|
export var makePriceSelector = function () { return factories['io.flow.internal.v0.enums.price_selector'](); };
|
|
28812
29061
|
export var makePrioritizedCenterReference = function () { return factories['io.flow.internal.v0.models.prioritized_center_reference'](); };
|
|
@@ -28850,7 +29099,11 @@ export var makeProductReviewHistory = function () { return factories['io.flow.in
|
|
|
28850
29099
|
export var makeProductSellabilityInternal = function () { return factories['io.flow.internal.v0.models.product_sellability_internal'](); };
|
|
28851
29100
|
export var makeProductSellabilityInternalForm = function () { return factories['io.flow.internal.v0.models.product_sellability_internal_form'](); };
|
|
28852
29101
|
export var makeProductSellabilityInternalResult = function () { return factories['io.flow.internal.v0.models.product_sellability_internal_result'](); };
|
|
29102
|
+
export var makeProductSellabilityInternalRuleMatch = function () { return factories['io.flow.internal.v0.models.product_sellability_internal_rule_match'](); };
|
|
28853
29103
|
export var makeProductSellabilityResult = function () { return factories['io.flow.internal.v0.models.product_sellability_result'](); };
|
|
29104
|
+
export var makeProductSellabilityResultDeleted = function () { return factories['io.flow.internal.v0.models.product_sellability_result_deleted'](); };
|
|
29105
|
+
export var makeProductSellabilityResultInserted = function () { return factories['io.flow.internal.v0.models.product_sellability_result_inserted'](); };
|
|
29106
|
+
export var makeProductSellabilityResultUpdated = function () { return factories['io.flow.internal.v0.models.product_sellability_result_updated'](); };
|
|
28854
29107
|
export var makeProductStatus = function () { return factories['io.flow.internal.v0.enums.product_status'](); };
|
|
28855
29108
|
export var makeProductTransaction = function () { return factories['io.flow.internal.v0.models.product_transaction'](); };
|
|
28856
29109
|
export var makeProofOfPosting = function () { return factories['io.flow.internal.v0.unions.proof_of_posting'](); };
|
|
@@ -29061,11 +29314,6 @@ export var makeRevenueRecordType = function () { return factories['io.flow.inter
|
|
|
29061
29314
|
export var makeRevenueRecordUpserted = function () { return factories['io.flow.internal.v0.models.revenue_record_upserted'](); };
|
|
29062
29315
|
export var makeRiskCheck = function () { return factories['io.flow.internal.v0.enums.risk_check'](); };
|
|
29063
29316
|
export var makeRiskEvaluation = function () { return factories['io.flow.internal.v0.enums.risk_evaluation'](); };
|
|
29064
|
-
export var makeRohanItem = function () { return factories['io.flow.internal.v0.models.rohan_item'](); };
|
|
29065
|
-
export var makeRohanItemDeleted = function () { return factories['io.flow.internal.v0.models.rohan_item_deleted'](); };
|
|
29066
|
-
export var makeRohanItemForm = function () { return factories['io.flow.internal.v0.models.rohan_item_form'](); };
|
|
29067
|
-
export var makeRohanItemType = function () { return factories['io.flow.internal.v0.enums.rohan_item_type'](); };
|
|
29068
|
-
export var makeRohanItemUpserted = function () { return factories['io.flow.internal.v0.models.rohan_item_upserted'](); };
|
|
29069
29317
|
export var makeRoutingAccount = function () { return factories['io.flow.internal.v0.models.routing_account'](); };
|
|
29070
29318
|
export var makeRoutingEntity = function () { return factories['io.flow.internal.v0.unions.routing_entity'](); };
|
|
29071
29319
|
export var makeRoutingMerchant = function () { return factories['io.flow.internal.v0.models.routing_merchant'](); };
|
|
@@ -29073,11 +29321,6 @@ export var makeRoutingProcessor = function () { return factories['io.flow.intern
|
|
|
29073
29321
|
export var makeSalesPaymentRecord = function () { return factories['io.flow.internal.v0.models.sales_payment_record'](); };
|
|
29074
29322
|
export var makeSandboxSetup = function () { return factories['io.flow.internal.v0.models.sandbox_setup'](); };
|
|
29075
29323
|
export var makeSandboxSetupForm = function () { return factories['io.flow.internal.v0.models.sandbox_setup_form'](); };
|
|
29076
|
-
export var makeSarveshItem = function () { return factories['io.flow.internal.v0.models.sarvesh_item'](); };
|
|
29077
|
-
export var makeSarveshItemDeleted = function () { return factories['io.flow.internal.v0.models.sarvesh_item_deleted'](); };
|
|
29078
|
-
export var makeSarveshItemForm = function () { return factories['io.flow.internal.v0.models.sarvesh_item_form'](); };
|
|
29079
|
-
export var makeSarveshItemType = function () { return factories['io.flow.internal.v0.enums.sarvesh_item_type'](); };
|
|
29080
|
-
export var makeSarveshItemUpserted = function () { return factories['io.flow.internal.v0.models.sarvesh_item_upserted'](); };
|
|
29081
29324
|
export var makeScheduledPayment = function () { return factories['io.flow.internal.v0.models.scheduled_payment'](); };
|
|
29082
29325
|
export var makeScreen = function () { return factories['io.flow.internal.v0.models.screen'](); };
|
|
29083
29326
|
export var makeScreenForm = function () { return factories['io.flow.internal.v0.models.screen_form'](); };
|
|
@@ -29093,20 +29336,32 @@ export var makeSearchProviderExport = function () { return factories['io.flow.in
|
|
|
29093
29336
|
export var makeSearchTrackingSummary = function () { return factories['io.flow.internal.v0.models.search_tracking_summary'](); };
|
|
29094
29337
|
export var makeSellabilityCheckResult = function () { return factories['io.flow.internal.v0.models.sellability_check_result'](); };
|
|
29095
29338
|
export var makeSellabilityCheckStatus = function () { return factories['io.flow.internal.v0.enums.sellability_check_status'](); };
|
|
29339
|
+
export var makeSellabilityInternalMatchType = function () { return factories['io.flow.internal.v0.enums.sellability_internal_match_type'](); };
|
|
29096
29340
|
export var makeSellabilityStatus = function () { return factories['io.flow.internal.v0.enums.sellability_status'](); };
|
|
29097
29341
|
export var makeSessionOrderData = function () { return factories['io.flow.internal.v0.models.session_order_data'](); };
|
|
29098
29342
|
export var makeSetupBlockPutForm = function () { return factories['io.flow.internal.v0.models.setup_block_put_form'](); };
|
|
29099
29343
|
export var makeSfExpress = function () { return factories['io.flow.internal.v0.models.sf_express'](); };
|
|
29100
29344
|
export var makeShipmentCostSummary = function () { return factories['io.flow.internal.v0.models.shipment_cost_summary'](); };
|
|
29345
|
+
export var makeShippingCostDeleted = function () { return factories['io.flow.internal.v0.models.shipping_cost_deleted'](); };
|
|
29346
|
+
export var makeShippingCostSummary = function () { return factories['io.flow.internal.v0.models.shipping_cost_summary'](); };
|
|
29347
|
+
export var makeShippingCostUpserted = function () { return factories['io.flow.internal.v0.models.shipping_cost_upserted'](); };
|
|
29101
29348
|
export var makeShippingLane = function () { return factories['io.flow.internal.v0.models.shipping_lane'](); };
|
|
29102
29349
|
export var makeShippingMethodReference = function () { return factories['io.flow.internal.v0.models.shipping_method_reference'](); };
|
|
29103
29350
|
export var makeShippingPricing = function () { return factories['io.flow.internal.v0.models.shipping_pricing'](); };
|
|
29104
29351
|
export var makeShippingRateEstimateAvailableInternal = function () { return factories['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'](); };
|
|
29105
29352
|
export var makeShippingRateEstimateInternal = function () { return factories['io.flow.internal.v0.models.shipping_rate_estimate_internal'](); };
|
|
29106
29353
|
export var makeShippingRateEstimateRequestInternal = function () { return factories['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'](); };
|
|
29354
|
+
export var makeShopifyAddress = function () { return factories['io.flow.internal.v0.models.shopify_address'](); };
|
|
29355
|
+
export var makeShopifyCallbackError = function () { return factories['io.flow.internal.v0.models.shopify_callback_error'](); };
|
|
29356
|
+
export var makeShopifyCallbackErrorCode = function () { return factories['io.flow.internal.v0.enums.shopify_callback_error_code'](); };
|
|
29357
|
+
export var makeShopifyCallbackErrorItem = function () { return factories['io.flow.internal.v0.models.shopify_callback_error_item'](); };
|
|
29107
29358
|
export var makeShopifyCatalogPublication = function () { return factories['io.flow.internal.v0.models.shopify_catalog_publication'](); };
|
|
29108
29359
|
export var makeShopifyChannelOrganizationToken = function () { return factories['io.flow.internal.v0.models.shopify_channel_organization_token'](); };
|
|
29109
29360
|
export var makeShopifyChannelOrganizationTokens = function () { return factories['io.flow.internal.v0.models.shopify_channel_organization_tokens'](); };
|
|
29361
|
+
export var makeShopifyChargeCode = function () { return factories['io.flow.internal.v0.enums.shopify_charge_code'](); };
|
|
29362
|
+
export var makeShopifyContactDetails = function () { return factories['io.flow.internal.v0.models.shopify_contact_details'](); };
|
|
29363
|
+
export var makeShopifyDeliveryMethodType = function () { return factories['io.flow.internal.v0.enums.shopify_delivery_method_type'](); };
|
|
29364
|
+
export var makeShopifyDimensionUnit = function () { return factories['io.flow.internal.v0.enums.shopify_dimension_unit'](); };
|
|
29110
29365
|
export var makeShopifyDispute = function () { return factories['io.flow.internal.v0.models.shopify_dispute'](); };
|
|
29111
29366
|
export var makeShopifyDisputeDeleted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_deleted'](); };
|
|
29112
29367
|
export var makeShopifyDisputeUpserted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_upserted'](); };
|
|
@@ -29114,6 +29369,7 @@ export var makeShopifyHs10Code = function () { return factories['io.flow.interna
|
|
|
29114
29369
|
export var makeShopifyHs10Codes = function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes'](); };
|
|
29115
29370
|
export var makeShopifyHs10CodesDeleted = function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_deleted'](); };
|
|
29116
29371
|
export var makeShopifyHs10CodesUpserted = function () { return factories['io.flow.internal.v0.models.shopify_hs10_codes_upserted'](); };
|
|
29372
|
+
export var makeShopifyIncoterm = function () { return factories['io.flow.internal.v0.enums.shopify_incoterm'](); };
|
|
29117
29373
|
export var makeShopifyIncotermConfiguration = function () { return factories['io.flow.internal.v0.enums.shopify_incoterm_configuration'](); };
|
|
29118
29374
|
export var makeShopifyIncotermIncludes = function () { return factories['io.flow.internal.v0.models.shopify_incoterm_includes'](); };
|
|
29119
29375
|
export var makeShopifyIncotermSummaryErrorData = function () { return factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_data'](); };
|
|
@@ -29160,10 +29416,12 @@ export var makeShopifyMarketsTradeSector = function () { return factories['io.fl
|
|
|
29160
29416
|
export var makeShopifyMarketsWebhookRegistration = function () { return factories['io.flow.internal.v0.models.shopify_markets_webhook_registration'](); };
|
|
29161
29417
|
export var makeShopifyMarketsWebhookRegistrationDeleted = function () { return factories['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'](); };
|
|
29162
29418
|
export var makeShopifyMarketsWebhookRegistrationUpserted = function () { return factories['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'](); };
|
|
29419
|
+
export var makeShopifyMeasurements = function () { return factories['io.flow.internal.v0.models.shopify_measurements'](); };
|
|
29163
29420
|
export var makeShopifyMerchantPlan = function () { return factories['io.flow.internal.v0.models.shopify_merchant_plan'](); };
|
|
29164
29421
|
export var makeShopifyMerchantPlanDeleted = function () { return factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](); };
|
|
29165
29422
|
export var makeShopifyMerchantPlanUpserted = function () { return factories['io.flow.internal.v0.models.shopify_merchant_plan_upserted'](); };
|
|
29166
29423
|
export var makeShopifyMetadata = function () { return factories['io.flow.internal.v0.models.shopify_metadata'](); };
|
|
29424
|
+
export var makeShopifyMoney = function () { return factories['io.flow.internal.v0.models.shopify_money'](); };
|
|
29167
29425
|
export var makeShopifyMonitoringCarrierService = function () { return factories['io.flow.internal.v0.models.shopify_monitoring_carrier_service'](); };
|
|
29168
29426
|
export var makeShopifyMonitoringFulfillmentExternal = function () { return factories['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'](); };
|
|
29169
29427
|
export var makeShopifyMonitoringFulfillmentMissingDetails = function () { return factories['io.flow.internal.v0.models.shopify_monitoring_fulfillment_missing_details'](); };
|
|
@@ -29187,6 +29445,7 @@ export var makeShopifyOrderRiskAssessmentUpserted = function () { return factori
|
|
|
29187
29445
|
export var makeShopifyOrderTransaction = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction'](); };
|
|
29188
29446
|
export var makeShopifyOrderTransactionDeleted = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_deleted'](); };
|
|
29189
29447
|
export var makeShopifyOrderTransactionUpserted = function () { return factories['io.flow.internal.v0.models.shopify_order_transaction_upserted'](); };
|
|
29448
|
+
export var makeShopifyPackageType = function () { return factories['io.flow.internal.v0.enums.shopify_package_type'](); };
|
|
29190
29449
|
export var makeShopifyPartnerWebhook = function () { return factories['io.flow.internal.v0.models.shopify_partner_webhook'](); };
|
|
29191
29450
|
export var makeShopifyPartnerWebhookRaw = function () { return factories['io.flow.internal.v0.models.shopify_partner_webhook_raw'](); };
|
|
29192
29451
|
export var makeShopifyPlanType = function () { return factories['io.flow.internal.v0.enums.shopify_plan_type'](); };
|
|
@@ -29210,14 +29469,34 @@ export var makeShopifyProductUpdateDeleted = function () { return factories['io.
|
|
|
29210
29469
|
export var makeShopifyProductUpdateUpserted = function () { return factories['io.flow.internal.v0.models.shopify_product_update_upserted'](); };
|
|
29211
29470
|
export var makeShopifyProductUpdateWebhookEvent = function () { return factories['io.flow.internal.v0.models.shopify_product_update_webhook_event'](); };
|
|
29212
29471
|
export var makeShopifyProductWrapper = function () { return factories['io.flow.internal.v0.models.shopify_product_wrapper'](); };
|
|
29472
|
+
export var makeShopifyRateCustomsDetail = function () { return factories['io.flow.internal.v0.models.shopify_rate_customs_detail'](); };
|
|
29473
|
+
export var makeShopifyRatePickupPoint = function () { return factories['io.flow.internal.v0.models.shopify_rate_pickup_point'](); };
|
|
29213
29474
|
export var makeShopifyReportFileDeleted = function () { return factories['io.flow.internal.v0.models.shopify_report_file_deleted'](); };
|
|
29214
29475
|
export var makeShopifyReportFileUpserted = function () { return factories['io.flow.internal.v0.models.shopify_report_file_upserted'](); };
|
|
29215
29476
|
export var makeShopifyService = function () { return factories['io.flow.internal.v0.enums.shopify_service'](); };
|
|
29477
|
+
export var makeShopifyShipmentOptionCode = function () { return factories['io.flow.internal.v0.enums.shopify_shipment_option_code'](); };
|
|
29478
|
+
export var makeShopifyShipmentRateAvailable = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_available'](); };
|
|
29479
|
+
export var makeShopifyShipmentRateCharge = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_charge'](); };
|
|
29480
|
+
export var makeShopifyShipmentRateOption = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_option'](); };
|
|
29481
|
+
export var makeShopifyShipmentRatePackage = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_package'](); };
|
|
29482
|
+
export var makeShopifyShipmentRateReason = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_reason'](); };
|
|
29483
|
+
export var makeShopifyShipmentRateRequest = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_request'](); };
|
|
29484
|
+
export var makeShopifyShipmentRateResponse = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_response'](); };
|
|
29485
|
+
export var makeShopifyShipmentRateShipment = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_shipment'](); };
|
|
29486
|
+
export var makeShopifyShipmentRateShipper = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_shipper'](); };
|
|
29487
|
+
export var makeShopifyShipmentRateTotalCharges = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'](); };
|
|
29488
|
+
export var makeShopifyShipmentRateUnavailable = function () { return factories['io.flow.internal.v0.models.shopify_shipment_rate_unavailable'](); };
|
|
29489
|
+
export var makeShopifyShippingLocation = function () { return factories['io.flow.internal.v0.models.shopify_shipping_location'](); };
|
|
29216
29490
|
export var makeShopifyShopStatistics = function () { return factories['io.flow.internal.v0.models.shopify_shop_statistics'](); };
|
|
29217
29491
|
export var makeShopifyStoreDetail = function () { return factories['io.flow.internal.v0.models.shopify_store_detail'](); };
|
|
29218
29492
|
export var makeShopifyStripeEvent = function () { return factories['io.flow.internal.v0.models.shopify_stripe_event'](); };
|
|
29219
29493
|
export var makeShopifyTaxonomyAlignmentConfig = function () { return factories['io.flow.internal.v0.models.shopify_taxonomy_alignment_config'](); };
|
|
29220
29494
|
export var makeShopifyTaxonomyAlignmentConfigForm = function () { return factories['io.flow.internal.v0.models.shopify_taxonomy_alignment_config_form'](); };
|
|
29495
|
+
export var makeShopifyTestOrder = function () { return factories['io.flow.internal.v0.models.shopify_test_order'](); };
|
|
29496
|
+
export var makeShopifyTestOrderDeleted = function () { return factories['io.flow.internal.v0.models.shopify_test_order_deleted'](); };
|
|
29497
|
+
export var makeShopifyTestOrderUpserted = function () { return factories['io.flow.internal.v0.models.shopify_test_order_upserted'](); };
|
|
29498
|
+
export var makeShopifyUnavailableRateReasonCode = function () { return factories['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code'](); };
|
|
29499
|
+
export var makeShopifyWeightUnit = function () { return factories['io.flow.internal.v0.enums.shopify_weight_unit'](); };
|
|
29221
29500
|
export var makeShopperBreakdown = function () { return factories['io.flow.internal.v0.models.shopper_breakdown'](); };
|
|
29222
29501
|
export var makeShopperFees = function () { return factories['io.flow.internal.v0.models.shopper_fees'](); };
|
|
29223
29502
|
export var makeShopperFreight = function () { return factories['io.flow.internal.v0.models.shopper_freight'](); };
|