@flowio/api-factories 0.0.109 → 0.0.110
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.js +327 -508
- package/dist/esm/api.js +266 -441
- package/dist/types/api.d.ts +28 -34
- package/package.json +2 -2
- package/src/api.ts +296 -491
package/dist/esm/api.js
CHANGED
|
@@ -2334,6 +2334,7 @@ var factories = {
|
|
|
2334
2334
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
2335
2335
|
taxonomy_data: arrayOf(function () { return factories['io.flow.product.v0.models.product_taxonomy_data'](); }),
|
|
2336
2336
|
item_numbers: arrayOf(function () { return factories.string(); }),
|
|
2337
|
+
highest_value_item_number: factories.string(),
|
|
2337
2338
|
updated_at: factories.date_time_iso_8601(),
|
|
2338
2339
|
deleted_at: factories.date_time_iso_8601(),
|
|
2339
2340
|
}); },
|
|
@@ -2547,52 +2548,6 @@ var factories = {
|
|
|
2547
2548
|
description: factories.string(),
|
|
2548
2549
|
offset: factories.integer(),
|
|
2549
2550
|
}); },
|
|
2550
|
-
'io.flow.sellability.v0.enums.rule_effect_type': function () { return faker.helpers.arrayElement(['market', 'dhl', 'dhl_ecommerce', 'ups']); },
|
|
2551
|
-
'io.flow.sellability.v0.enums.sellability_error_code': function () { return faker.helpers.arrayElement([
|
|
2552
|
-
'insufficient_details',
|
|
2553
|
-
'ineligible_category',
|
|
2554
|
-
'wait_for_high_fidelity',
|
|
2555
|
-
'external_service_unavailable',
|
|
2556
|
-
]); },
|
|
2557
|
-
'io.flow.sellability.v0.enums.sellability_request_status': function () { return faker.helpers.arrayElement(['commit']); },
|
|
2558
|
-
'io.flow.sellability.v0.models.product_sellability': function () { return ({
|
|
2559
|
-
discriminator: 'product_sellability',
|
|
2560
|
-
shop_id: factories.string(),
|
|
2561
|
-
product_id: factories.string(),
|
|
2562
|
-
request_id: factories.string(),
|
|
2563
|
-
hs6_code: factories.string(),
|
|
2564
|
-
restricted_regions: arrayOf(function () { return factories['io.flow.sellability.v0.models.sellablility_region_result'](); }),
|
|
2565
|
-
}); },
|
|
2566
|
-
'io.flow.sellability.v0.models.product_sellability_form': function () { return ({
|
|
2567
|
-
shop_id: factories.string(),
|
|
2568
|
-
product_id: factories.string(),
|
|
2569
|
-
name: factories.string(),
|
|
2570
|
-
price: factories['io.flow.sellability.v0.models.product_sellability_price'](),
|
|
2571
|
-
description: factories.string(),
|
|
2572
|
-
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
2573
|
-
status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
|
|
2574
|
-
dry_run: factories.boolean(),
|
|
2575
|
-
}); },
|
|
2576
|
-
'io.flow.sellability.v0.models.product_sellability_price': function () { return ({
|
|
2577
|
-
currency: factories.string(),
|
|
2578
|
-
amount: factories.decimal(),
|
|
2579
|
-
}); },
|
|
2580
|
-
'io.flow.sellability.v0.models.sellability_error': function () { return ({
|
|
2581
|
-
discriminator: 'sellability_error',
|
|
2582
|
-
code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
|
|
2583
|
-
messages: arrayOf(function () { return factories.string(); }),
|
|
2584
|
-
}); },
|
|
2585
|
-
'io.flow.sellability.v0.models.sellablility_region_result': function () { return ({
|
|
2586
|
-
type: factories['io.flow.sellability.v0.enums.rule_effect_type'](),
|
|
2587
|
-
regions: arrayOf(function () { return factories.string(); }),
|
|
2588
|
-
}); },
|
|
2589
|
-
'io.flow.sellability.v0.unions.sellability_response': function () {
|
|
2590
|
-
var f = faker.helpers.arrayElement([
|
|
2591
|
-
function () { return factories['io.flow.sellability.v0.models.product_sellability'](); },
|
|
2592
|
-
function () { return factories['io.flow.sellability.v0.models.sellability_error'](); },
|
|
2593
|
-
]);
|
|
2594
|
-
return f();
|
|
2595
|
-
},
|
|
2596
2551
|
'io.flow.shopify.external.v0.enums.cancel_reason': function () { return faker.helpers.arrayElement(['customer', 'fraud', 'inventory', 'declined', 'other']); },
|
|
2597
2552
|
'io.flow.shopify.external.v0.enums.discount_status': function () { return faker.helpers.arrayElement(['enabled', 'disabled', 'depleted']); },
|
|
2598
2553
|
'io.flow.shopify.external.v0.enums.discount_type': function () { return faker.helpers.arrayElement(['fixed_amount', 'percentage', 'shipping']); },
|
|
@@ -5304,9 +5259,11 @@ var factories = {
|
|
|
5304
5259
|
},
|
|
5305
5260
|
'io.flow.tech.onboarding.playground.v0.enums.aldo_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5306
5261
|
'io.flow.tech.onboarding.playground.v0.enums.ansh_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5262
|
+
'io.flow.tech.onboarding.playground.v0.enums.hosein_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5307
5263
|
'io.flow.tech.onboarding.playground.v0.enums.niall_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5308
5264
|
'io.flow.tech.onboarding.playground.v0.enums.prateek_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5309
5265
|
'io.flow.tech.onboarding.playground.v0.enums.rohan_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5266
|
+
'io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5310
5267
|
'io.flow.tech.onboarding.playground.v0.models.aldo_item': function () { return ({
|
|
5311
5268
|
id: factories.string(),
|
|
5312
5269
|
number: factories.string(),
|
|
@@ -5337,6 +5294,21 @@ var factories = {
|
|
|
5337
5294
|
type: factories['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'](),
|
|
5338
5295
|
added_on: factories.date_iso_8601(),
|
|
5339
5296
|
}); },
|
|
5297
|
+
'io.flow.tech.onboarding.playground.v0.models.hosein_item': function () { return ({
|
|
5298
|
+
id: factories.string(),
|
|
5299
|
+
number: factories.string(),
|
|
5300
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
5301
|
+
description: factories.string(),
|
|
5302
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'](),
|
|
5303
|
+
added_on: factories.date_time_iso_8601(),
|
|
5304
|
+
}); },
|
|
5305
|
+
'io.flow.tech.onboarding.playground.v0.models.hosein_item_form': function () { return ({
|
|
5306
|
+
number: factories.string(),
|
|
5307
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
5308
|
+
description: factories.string(),
|
|
5309
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'](),
|
|
5310
|
+
added_on: factories.date_time_iso_8601(),
|
|
5311
|
+
}); },
|
|
5340
5312
|
'io.flow.tech.onboarding.playground.v0.models.jean_demo_item': function () { return ({
|
|
5341
5313
|
id: factories.string(),
|
|
5342
5314
|
name: factories.string(),
|
|
@@ -5386,6 +5358,21 @@ var factories = {
|
|
|
5386
5358
|
type: factories['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'](),
|
|
5387
5359
|
added_on: factories.date_iso_8601(),
|
|
5388
5360
|
}); },
|
|
5361
|
+
'io.flow.tech.onboarding.playground.v0.models.sarvesh_item': function () { return ({
|
|
5362
|
+
id: factories.string(),
|
|
5363
|
+
number: factories.string(),
|
|
5364
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
5365
|
+
description: factories.string(),
|
|
5366
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'](),
|
|
5367
|
+
added_on: factories.date_time_iso_8601(),
|
|
5368
|
+
}); },
|
|
5369
|
+
'io.flow.tech.onboarding.playground.v0.models.sarvesh_item_form': function () { return ({
|
|
5370
|
+
number: factories.string(),
|
|
5371
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
5372
|
+
description: factories.string(),
|
|
5373
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'](),
|
|
5374
|
+
added_on: factories.date_time_iso_8601(),
|
|
5375
|
+
}); },
|
|
5389
5376
|
'io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description': function () { return ({
|
|
5390
5377
|
description: factories.string(),
|
|
5391
5378
|
}); },
|
|
@@ -5575,6 +5562,10 @@ var factories = {
|
|
|
5575
5562
|
'io.flow.v0.enums.event_type': function () { return faker.helpers.arrayElement([
|
|
5576
5563
|
'test_upserted',
|
|
5577
5564
|
'generate_load',
|
|
5565
|
+
'sarvesh_item_upserted',
|
|
5566
|
+
'sarvesh_item_deleted',
|
|
5567
|
+
'hosein_item_upserted',
|
|
5568
|
+
'hosein_item_deleted',
|
|
5578
5569
|
'niall_item_upserted',
|
|
5579
5570
|
'niall_item_deleted',
|
|
5580
5571
|
'rohan_item_upserted',
|
|
@@ -5637,44 +5628,12 @@ var factories = {
|
|
|
5637
5628
|
'rate_upserted',
|
|
5638
5629
|
'rate_deleted_v3',
|
|
5639
5630
|
'rate_upserted_v3',
|
|
5640
|
-
'available_promotions_upserted',
|
|
5641
|
-
'available_promotions_deleted',
|
|
5642
|
-
'available_promotions_upserted_v2',
|
|
5643
|
-
'available_promotions_deleted_v2',
|
|
5644
5631
|
'allocation_deleted_v2',
|
|
5645
5632
|
'allocation_upserted_v2',
|
|
5646
|
-
'currency_format_deleted',
|
|
5647
|
-
'currency_format_upserted',
|
|
5648
|
-
'experience_deleted',
|
|
5649
|
-
'experience_upserted',
|
|
5650
|
-
'experience_deleted_v2',
|
|
5651
|
-
'experience_upserted_v2',
|
|
5652
|
-
'country_status_upserted',
|
|
5653
|
-
'country_status_deleted',
|
|
5654
|
-
'experience_price_book_mapping_deleted',
|
|
5655
|
-
'experience_price_book_mapping_upserted',
|
|
5656
|
-
'experience_logistics_settings_upserted',
|
|
5657
|
-
'experience_logistics_settings_deleted',
|
|
5658
|
-
'item_margin_deleted_v2',
|
|
5659
|
-
'item_margin_upserted_v2',
|
|
5660
|
-
'item_sales_margin_deleted',
|
|
5661
|
-
'item_sales_margin_upserted',
|
|
5662
|
-
'label_format_deleted',
|
|
5663
|
-
'label_format_upserted',
|
|
5664
|
-
'order_deleted',
|
|
5665
|
-
'order_upserted',
|
|
5666
5633
|
'order_deleted_v2',
|
|
5667
5634
|
'order_upserted_v2',
|
|
5668
|
-
'order_identifier_deleted',
|
|
5669
|
-
'order_identifier_upserted',
|
|
5670
5635
|
'order_identifier_deleted_v2',
|
|
5671
|
-
'order_identifier_upserted_v2',
|
|
5672
5636
|
'order_identifier_upserted_v3',
|
|
5673
|
-
'order_replacement_upserted',
|
|
5674
|
-
'order_replacement_deleted',
|
|
5675
|
-
'pricing_deleted',
|
|
5676
|
-
'pricing_upserted',
|
|
5677
|
-
'order_service_change_request',
|
|
5678
5637
|
'fraud_status_changed',
|
|
5679
5638
|
'center_upserted',
|
|
5680
5639
|
'center_deleted',
|
|
@@ -5699,8 +5658,6 @@ var factories = {
|
|
|
5699
5658
|
'item_origin_deleted',
|
|
5700
5659
|
'harmonized_landed_cost_upserted',
|
|
5701
5660
|
'fully_harmonized_item_upserted',
|
|
5702
|
-
'import_completed_v2',
|
|
5703
|
-
'import_failed_v2',
|
|
5704
5661
|
'label_upserted',
|
|
5705
5662
|
'label_deleted_v2',
|
|
5706
5663
|
'label_upserted_v2',
|
|
@@ -5876,6 +5833,7 @@ var factories = {
|
|
|
5876
5833
|
'io.flow.v0.enums.lane_preselect_preference': function () { return faker.helpers.arrayElement(['lowest_cost', 'default_tier']); },
|
|
5877
5834
|
'io.flow.v0.enums.lane_strategy': function () { return faker.helpers.arrayElement(['oldest', 'fastest', 'lowest_cost', 'highest_priority']); },
|
|
5878
5835
|
'io.flow.v0.enums.levy_component': function () { return faker.helpers.arrayElement(['goods', 'duty', 'insurance', 'freight', 'vat']); },
|
|
5836
|
+
'io.flow.v0.enums.levy_inclusion': function () { return faker.helpers.arrayElement(['tax', 'duty']); },
|
|
5879
5837
|
'io.flow.v0.enums.levy_strategy': function () { return faker.helpers.arrayElement(['minimum', 'average', 'maximum']); },
|
|
5880
5838
|
'io.flow.v0.enums.location_error_code': function () { return faker.helpers.arrayElement(['address_required', 'ip_invalid', 'ip_required', 'timezone_unavailable']); },
|
|
5881
5839
|
'io.flow.v0.enums.logistics_format_preference': function () { return faker.helpers.arrayElement(['shopify_console', 'existing_3pl_integration', 'byo_integration']); },
|
|
@@ -6129,6 +6087,7 @@ var factories = {
|
|
|
6129
6087
|
'io.flow.v0.enums.permitted_http_method': function () { return faker.helpers.arrayElement(['GET', 'POST', 'PUT', 'DELETE', 'PATCH']); },
|
|
6130
6088
|
'io.flow.v0.enums.physical_delivery_special_serivce': function () { return faker.helpers.arrayElement(['cold_storage', 'hazardous', 'perishable']); },
|
|
6131
6089
|
'io.flow.v0.enums.postal_type': function () { return faker.helpers.arrayElement(['eircode', 'pin', 'postal', 'zip']); },
|
|
6090
|
+
'io.flow.v0.enums.preferential_rate_eligibility': function () { return faker.helpers.arrayElement(['baby_clothing', 'kids_clothing']); },
|
|
6132
6091
|
'io.flow.v0.enums.preferred_service_selection_strategy': function () { return faker.helpers.arrayElement(['calculated_rate', 'flat_rate', 'custom_rate']); },
|
|
6133
6092
|
'io.flow.v0.enums.price_accuracy': function () { return faker.helpers.arrayElement(['calculated', 'estimated_from_partial_destination']); },
|
|
6134
6093
|
'io.flow.v0.enums.price_book_status': function () { return faker.helpers.arrayElement(['draft', 'published', 'archived']); },
|
|
@@ -6185,9 +6144,11 @@ var factories = {
|
|
|
6185
6144
|
'Knives',
|
|
6186
6145
|
'Liquids',
|
|
6187
6146
|
'Oversized',
|
|
6147
|
+
'Pending Classification',
|
|
6188
6148
|
'Restrict by Default',
|
|
6189
6149
|
'Supplements',
|
|
6190
6150
|
'Tattoo Ink And PMU',
|
|
6151
|
+
'Unknown Bundles',
|
|
6191
6152
|
'Weapon',
|
|
6192
6153
|
'Wood',
|
|
6193
6154
|
]); },
|
|
@@ -6273,7 +6234,15 @@ var factories = {
|
|
|
6273
6234
|
'io.flow.v0.enums.role': function () { return faker.helpers.arrayElement(['admin', 'member']); },
|
|
6274
6235
|
'io.flow.v0.enums.rounding_method': function () { return faker.helpers.arrayElement(['up', 'down', 'nearest']); },
|
|
6275
6236
|
'io.flow.v0.enums.rounding_type': function () { return faker.helpers.arrayElement(['pattern', 'multiple']); },
|
|
6237
|
+
'io.flow.v0.enums.rule_effect_type': function () { return faker.helpers.arrayElement(['market', 'dhl', 'dhl_ecommerce', 'ups']); },
|
|
6276
6238
|
'io.flow.v0.enums.schedule_exception_status': function () { return faker.helpers.arrayElement(['Open', 'Closed']); },
|
|
6239
|
+
'io.flow.v0.enums.sellability_error_code': function () { return faker.helpers.arrayElement([
|
|
6240
|
+
'insufficient_details',
|
|
6241
|
+
'ineligible_category',
|
|
6242
|
+
'wait_for_high_fidelity',
|
|
6243
|
+
'external_service_unavailable',
|
|
6244
|
+
]); },
|
|
6245
|
+
'io.flow.v0.enums.sellability_request_status': function () { return faker.helpers.arrayElement(['commit']); },
|
|
6277
6246
|
'io.flow.v0.enums.shipment_integration_type': function () { return faker.helpers.arrayElement(['direct', 'information', 'preadvice']); },
|
|
6278
6247
|
'io.flow.v0.enums.shipment_recipient': function () { return faker.helpers.arrayElement(['customer', 'return', 'crossdock']); },
|
|
6279
6248
|
'io.flow.v0.enums.shipping_configuration_type': function () { return faker.helpers.arrayElement(['default', 'variant']); },
|
|
@@ -6344,6 +6313,29 @@ var factories = {
|
|
|
6344
6313
|
]); },
|
|
6345
6314
|
'io.flow.v0.enums.surcharge_responsible_party': function () { return faker.helpers.arrayElement(['organization', 'customer']); },
|
|
6346
6315
|
'io.flow.v0.enums.tax_applicability': function () { return faker.helpers.arrayElement(['none', 'all']); },
|
|
6316
|
+
'io.flow.v0.enums.tax_duty_calculator_validation_error_code': function () { return faker.helpers.arrayElement([
|
|
6317
|
+
'generic_error',
|
|
6318
|
+
'destination_country_not_defined',
|
|
6319
|
+
'destination_address_iso3166_unrecognized',
|
|
6320
|
+
'line_item_shipfrom_shipto_country_invalid',
|
|
6321
|
+
'line_item_ship_from_invalid',
|
|
6322
|
+
'line_item_currency_iso4217_unrecognized',
|
|
6323
|
+
'line_quantity_invalid',
|
|
6324
|
+
'line_item_quantity_invalid',
|
|
6325
|
+
'line_item_unit_price_precision_invalid',
|
|
6326
|
+
'line_item_unit_price_negative',
|
|
6327
|
+
'line_item_discount_amount_precision_invalid',
|
|
6328
|
+
'line_item_discount_amount_positive',
|
|
6329
|
+
'line_item_country_of_origin_iso3166_unrecognized',
|
|
6330
|
+
'line_item_hs_code_invalid',
|
|
6331
|
+
'line_item_duty_provider_invalid',
|
|
6332
|
+
'shipping_unit_price_precision_invalid',
|
|
6333
|
+
'shipping_unit_price_negative',
|
|
6334
|
+
'shipping_discount_amount_precision_invalid',
|
|
6335
|
+
'shipping_discount_amount_invalid',
|
|
6336
|
+
'merchant_of_record_invalid',
|
|
6337
|
+
'wrong_unit_specified',
|
|
6338
|
+
]); },
|
|
6347
6339
|
'io.flow.v0.enums.tax_duty_transaction_reason_code': function () { return faker.helpers.arrayElement([
|
|
6348
6340
|
'post_capture',
|
|
6349
6341
|
'post_fulfilment',
|
|
@@ -6413,6 +6405,8 @@ var factories = {
|
|
|
6413
6405
|
'tax_refund',
|
|
6414
6406
|
'duty_refund',
|
|
6415
6407
|
'non_l4l_tax_duty_fx',
|
|
6408
|
+
'merchant_payout',
|
|
6409
|
+
'merchant_refund',
|
|
6416
6410
|
'ge_revenue_share',
|
|
6417
6411
|
]); },
|
|
6418
6412
|
'io.flow.v0.enums.transfer_status': function () { return faker.helpers.arrayElement(['succeeded', 'canceled']); },
|
|
@@ -6478,6 +6472,18 @@ var factories = {
|
|
|
6478
6472
|
'io.flow.v0.enums.webhook_status': function () { return faker.helpers.arrayElement(['pending', 'success', 'failure', 'ignored']); },
|
|
6479
6473
|
'io.flow.v0.enums.withholding_deduction_type': function () { return faker.helpers.arrayElement(['tax', 'duty', 'freight', 'insurance']); },
|
|
6480
6474
|
'io.flow.v0.enums.zero_amount_indicator': function () { return faker.helpers.arrayElement(['zero', 'free']); },
|
|
6475
|
+
'io.flow.v0.enums.zero_levy_reason_code': function () { return faker.helpers.arrayElement([
|
|
6476
|
+
'zero_basis',
|
|
6477
|
+
'zero_rate_on_goods',
|
|
6478
|
+
'value_rounds_to_zero',
|
|
6479
|
+
'order_below_de_minimis_threshold',
|
|
6480
|
+
'amount_below_de_minimis_threshold',
|
|
6481
|
+
'delivered_unpaid',
|
|
6482
|
+
'duty_free_domestic',
|
|
6483
|
+
'duty_free_intra_community',
|
|
6484
|
+
'duty_free_reimport',
|
|
6485
|
+
'duty_free_by_trade_agreement',
|
|
6486
|
+
]); },
|
|
6481
6487
|
'io.flow.v0.models.abandoned_order_email_settings': function () { return ({
|
|
6482
6488
|
delay: factories['io.flow.v0.models.duration'](),
|
|
6483
6489
|
frequency: factories['io.flow.v0.models.duration'](),
|
|
@@ -7094,35 +7100,6 @@ var factories = {
|
|
|
7094
7100
|
region: factories['io.flow.v0.models.region_reference'](),
|
|
7095
7101
|
promotions: arrayOf(function () { return factories['io.flow.v0.unions.promotion'](); }),
|
|
7096
7102
|
}); },
|
|
7097
|
-
'io.flow.v0.models.available_promotions_deleted': function () { return ({
|
|
7098
|
-
discriminator: 'available_promotions_deleted',
|
|
7099
|
-
event_id: factories.string(),
|
|
7100
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7101
|
-
organization: factories.string(),
|
|
7102
|
-
experience_key: factories.string(),
|
|
7103
|
-
}); },
|
|
7104
|
-
'io.flow.v0.models.available_promotions_deleted_v2': function () { return ({
|
|
7105
|
-
discriminator: 'available_promotions_deleted_v2',
|
|
7106
|
-
event_id: factories.string(),
|
|
7107
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7108
|
-
organization: factories.string(),
|
|
7109
|
-
available_promotion: factories['io.flow.v0.models.available_promotion'](),
|
|
7110
|
-
}); },
|
|
7111
|
-
'io.flow.v0.models.available_promotions_upserted': function () { return ({
|
|
7112
|
-
discriminator: 'available_promotions_upserted',
|
|
7113
|
-
event_id: factories.string(),
|
|
7114
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7115
|
-
organization: factories.string(),
|
|
7116
|
-
experience_key: factories.string(),
|
|
7117
|
-
available_promotions: arrayOf(function () { return factories.object(); }),
|
|
7118
|
-
}); },
|
|
7119
|
-
'io.flow.v0.models.available_promotions_upserted_v2': function () { return ({
|
|
7120
|
-
discriminator: 'available_promotions_upserted_v2',
|
|
7121
|
-
event_id: factories.string(),
|
|
7122
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7123
|
-
organization: factories.string(),
|
|
7124
|
-
available_promotion: factories['io.flow.v0.models.available_promotion'](),
|
|
7125
|
-
}); },
|
|
7126
7103
|
'io.flow.v0.models.available_service': function () { return ({
|
|
7127
7104
|
service: factories.string(),
|
|
7128
7105
|
scheduled_pickups: arrayOf(function () { return factories['io.flow.v0.models.scheduled_pickup'](); }),
|
|
@@ -8240,23 +8217,9 @@ var factories = {
|
|
|
8240
8217
|
country: factories.string(),
|
|
8241
8218
|
status: factories['io.flow.v0.enums.experience_country_status'](),
|
|
8242
8219
|
}); },
|
|
8243
|
-
'io.flow.v0.models.country_status_deleted': function () { return ({
|
|
8244
|
-
discriminator: 'country_status_deleted',
|
|
8245
|
-
event_id: factories.string(),
|
|
8246
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8247
|
-
organization: factories.string(),
|
|
8248
|
-
country_status: factories['io.flow.v0.models.country_status'](),
|
|
8249
|
-
}); },
|
|
8250
8220
|
'io.flow.v0.models.country_status_form': function () { return ({
|
|
8251
8221
|
status: factories['io.flow.v0.enums.experience_country_status'](),
|
|
8252
8222
|
}); },
|
|
8253
|
-
'io.flow.v0.models.country_status_upserted': function () { return ({
|
|
8254
|
-
discriminator: 'country_status_upserted',
|
|
8255
|
-
event_id: factories.string(),
|
|
8256
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8257
|
-
organization: factories.string(),
|
|
8258
|
-
country_status: factories['io.flow.v0.models.country_status'](),
|
|
8259
|
-
}); },
|
|
8260
8223
|
'io.flow.v0.models.credit_memo': function () { return ({
|
|
8261
8224
|
id: factories.string(),
|
|
8262
8225
|
number: factories.string(),
|
|
@@ -8371,23 +8334,6 @@ var factories = {
|
|
|
8371
8334
|
symbol: factories['io.flow.v0.enums.currency_symbol_format'](),
|
|
8372
8335
|
label_formatters: arrayOf(function () { return factories['io.flow.v0.enums.currency_label_formatter'](); }),
|
|
8373
8336
|
}); },
|
|
8374
|
-
'io.flow.v0.models.currency_format_deleted': function () { return ({
|
|
8375
|
-
discriminator: 'currency_format_deleted',
|
|
8376
|
-
event_id: factories.string(),
|
|
8377
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8378
|
-
organization: factories.string(),
|
|
8379
|
-
id: factories.string(),
|
|
8380
|
-
}); },
|
|
8381
|
-
'io.flow.v0.models.currency_format_upserted': function () { return ({
|
|
8382
|
-
discriminator: 'currency_format_upserted',
|
|
8383
|
-
event_id: factories.string(),
|
|
8384
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8385
|
-
organization: factories.string(),
|
|
8386
|
-
id: factories.string(),
|
|
8387
|
-
experience_key: factories.string(),
|
|
8388
|
-
symbol: factories['io.flow.v0.enums.currency_symbol_format'](),
|
|
8389
|
-
label_formatters: arrayOf(function () { return factories['io.flow.v0.enums.currency_label_formatter'](); }),
|
|
8390
|
-
}); },
|
|
8391
8337
|
'io.flow.v0.models.currency_symbols': function () { return ({
|
|
8392
8338
|
primary: factories.string(),
|
|
8393
8339
|
narrow: factories.string(),
|
|
@@ -9065,21 +9011,6 @@ var factories = {
|
|
|
9065
9011
|
language: factories.string(),
|
|
9066
9012
|
measurement_system: factories['io.flow.v0.enums.measurement_system'](),
|
|
9067
9013
|
}); },
|
|
9068
|
-
'io.flow.v0.models.experience_deleted': function () { return ({
|
|
9069
|
-
discriminator: 'experience_deleted',
|
|
9070
|
-
event_id: factories.string(),
|
|
9071
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9072
|
-
organization: factories.string(),
|
|
9073
|
-
key: factories.string(),
|
|
9074
|
-
subcatalog_id: factories.string(),
|
|
9075
|
-
}); },
|
|
9076
|
-
'io.flow.v0.models.experience_deleted_v2': function () { return ({
|
|
9077
|
-
discriminator: 'experience_deleted_v2',
|
|
9078
|
-
event_id: factories.string(),
|
|
9079
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9080
|
-
organization: factories.string(),
|
|
9081
|
-
experience: factories['io.flow.v0.models.experience'](),
|
|
9082
|
-
}); },
|
|
9083
9014
|
'io.flow.v0.models.experience_export_type': function () { return ({
|
|
9084
9015
|
discriminator: 'experience_export_type',
|
|
9085
9016
|
organization_id: factories.string(),
|
|
@@ -9112,23 +9043,9 @@ var factories = {
|
|
|
9112
9043
|
experience: factories['io.flow.v0.models.experience_overview'](),
|
|
9113
9044
|
shipping_configuration: factories['io.flow.v0.models.shipping_configuration_reference'](),
|
|
9114
9045
|
}); },
|
|
9115
|
-
'io.flow.v0.models.experience_logistics_settings_deleted': function () { return ({
|
|
9116
|
-
discriminator: 'experience_logistics_settings_deleted',
|
|
9117
|
-
event_id: factories.string(),
|
|
9118
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9119
|
-
organization: factories.string(),
|
|
9120
|
-
logistics_settings: factories['io.flow.v0.models.experience_logistics_settings'](),
|
|
9121
|
-
}); },
|
|
9122
9046
|
'io.flow.v0.models.experience_logistics_settings_put_form': function () { return ({
|
|
9123
9047
|
shipping_configuration_key: factories.string(),
|
|
9124
9048
|
}); },
|
|
9125
|
-
'io.flow.v0.models.experience_logistics_settings_upserted': function () { return ({
|
|
9126
|
-
discriminator: 'experience_logistics_settings_upserted',
|
|
9127
|
-
event_id: factories.string(),
|
|
9128
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9129
|
-
organization: factories.string(),
|
|
9130
|
-
logistics_settings: factories['io.flow.v0.models.experience_logistics_settings'](),
|
|
9131
|
-
}); },
|
|
9132
9049
|
'io.flow.v0.models.experience_logistics_summary': function () { return ({
|
|
9133
9050
|
outbound: factories['io.flow.v0.models.experience_logistics_tier_summary'](),
|
|
9134
9051
|
'return': factories['io.flow.v0.models.experience_logistics_tier_summary'](),
|
|
@@ -9158,13 +9075,6 @@ var factories = {
|
|
|
9158
9075
|
price_book: factories['io.flow.v0.models.price_book_reference'](),
|
|
9159
9076
|
position: factories.long(),
|
|
9160
9077
|
}); },
|
|
9161
|
-
'io.flow.v0.models.experience_price_book_mapping_deleted': function () { return ({
|
|
9162
|
-
discriminator: 'experience_price_book_mapping_deleted',
|
|
9163
|
-
event_id: factories.string(),
|
|
9164
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9165
|
-
organization: factories.string(),
|
|
9166
|
-
id: factories.string(),
|
|
9167
|
-
}); },
|
|
9168
9078
|
'io.flow.v0.models.experience_price_book_mapping_form': function () { return ({
|
|
9169
9079
|
price_book_key: factories.string(),
|
|
9170
9080
|
position: factories.long(),
|
|
@@ -9172,13 +9082,6 @@ var factories = {
|
|
|
9172
9082
|
'io.flow.v0.models.experience_price_book_mapping_put_form': function () { return ({
|
|
9173
9083
|
price_books: arrayOf(function () { return factories['io.flow.v0.models.experience_price_book_mapping_form'](); }),
|
|
9174
9084
|
}); },
|
|
9175
|
-
'io.flow.v0.models.experience_price_book_mapping_upserted': function () { return ({
|
|
9176
|
-
discriminator: 'experience_price_book_mapping_upserted',
|
|
9177
|
-
event_id: factories.string(),
|
|
9178
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9179
|
-
organization: factories.string(),
|
|
9180
|
-
experience_price_book_mapping: factories['io.flow.v0.models.experience_price_book_mapping'](),
|
|
9181
|
-
}); },
|
|
9182
9085
|
'io.flow.v0.models.experience_price_conversion': function () { return ({
|
|
9183
9086
|
request: factories['io.flow.v0.models.experience_price_conversion_request'](),
|
|
9184
9087
|
price: factories['io.flow.v0.models.price_with_base'](),
|
|
@@ -9225,30 +9128,6 @@ var factories = {
|
|
|
9225
9128
|
currency: factories.string(),
|
|
9226
9129
|
language: factories.string(),
|
|
9227
9130
|
}); },
|
|
9228
|
-
'io.flow.v0.models.experience_upserted': function () { return ({
|
|
9229
|
-
discriminator: 'experience_upserted',
|
|
9230
|
-
event_id: factories.string(),
|
|
9231
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9232
|
-
organization: factories.string(),
|
|
9233
|
-
key: factories.string(),
|
|
9234
|
-
name: factories.string(),
|
|
9235
|
-
delivered_duty: factories.string(),
|
|
9236
|
-
subcatalog_id: factories.string(),
|
|
9237
|
-
region_id: factories.string(),
|
|
9238
|
-
country: factories.string(),
|
|
9239
|
-
currency: factories.string(),
|
|
9240
|
-
language: factories.string(),
|
|
9241
|
-
measurement_system: factories.string(),
|
|
9242
|
-
position: factories.long(),
|
|
9243
|
-
status: factories.string(),
|
|
9244
|
-
}); },
|
|
9245
|
-
'io.flow.v0.models.experience_upserted_v2': function () { return ({
|
|
9246
|
-
discriminator: 'experience_upserted_v2',
|
|
9247
|
-
event_id: factories.string(),
|
|
9248
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9249
|
-
organization: factories.string(),
|
|
9250
|
-
experience: factories['io.flow.v0.models.experience'](),
|
|
9251
|
-
}); },
|
|
9252
9131
|
'io.flow.v0.models.experience_version': function () { return ({
|
|
9253
9132
|
id: factories.string(),
|
|
9254
9133
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -9799,6 +9678,18 @@ var factories = {
|
|
|
9799
9678
|
hop_number: factories.integer(),
|
|
9800
9679
|
hop_estimate: factories['io.flow.v0.models.hop_estimate_v2'](),
|
|
9801
9680
|
}); },
|
|
9681
|
+
'io.flow.v0.models.hosein_item_deleted': function () { return ({
|
|
9682
|
+
discriminator: 'hosein_item_deleted',
|
|
9683
|
+
event_id: factories.string(),
|
|
9684
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9685
|
+
id: factories.string(),
|
|
9686
|
+
}); },
|
|
9687
|
+
'io.flow.v0.models.hosein_item_upserted': function () { return ({
|
|
9688
|
+
discriminator: 'hosein_item_upserted',
|
|
9689
|
+
event_id: factories.string(),
|
|
9690
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9691
|
+
item: factories['io.flow.tech.onboarding.playground.v0.models.hosein_item'](),
|
|
9692
|
+
}); },
|
|
9802
9693
|
'io.flow.v0.models.hs10': function () { return ({
|
|
9803
9694
|
id: factories.string(),
|
|
9804
9695
|
item: factories['io.flow.v0.models.harmonized_item_reference'](),
|
|
@@ -9877,20 +9768,6 @@ var factories = {
|
|
|
9877
9768
|
results: factories['io.flow.v0.models.import_results'](),
|
|
9878
9769
|
deliveries: arrayOf(function () { return factories['io.flow.v0.unions.export_delivery'](); }),
|
|
9879
9770
|
}); },
|
|
9880
|
-
'io.flow.v0.models.import_completed_v2': function () { return ({
|
|
9881
|
-
discriminator: 'import_completed_v2',
|
|
9882
|
-
event_id: factories.string(),
|
|
9883
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9884
|
-
organization: factories.string(),
|
|
9885
|
-
'import': factories['io.flow.v0.models.import'](),
|
|
9886
|
-
}); },
|
|
9887
|
-
'io.flow.v0.models.import_failed_v2': function () { return ({
|
|
9888
|
-
discriminator: 'import_failed_v2',
|
|
9889
|
-
event_id: factories.string(),
|
|
9890
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9891
|
-
organization: factories.string(),
|
|
9892
|
-
'import': factories['io.flow.v0.models.import'](),
|
|
9893
|
-
}); },
|
|
9894
9771
|
'io.flow.v0.models.import_form': function () { return ({
|
|
9895
9772
|
type: factories['io.flow.v0.enums.import_type'](),
|
|
9896
9773
|
source_url: factories.string(),
|
|
@@ -10116,13 +9993,6 @@ var factories = {
|
|
|
10116
9993
|
position: factories.long(),
|
|
10117
9994
|
experience: factories['io.flow.v0.models.experience_reference'](),
|
|
10118
9995
|
}); },
|
|
10119
|
-
'io.flow.v0.models.item_margin_deleted_v2': function () { return ({
|
|
10120
|
-
discriminator: 'item_margin_deleted_v2',
|
|
10121
|
-
event_id: factories.string(),
|
|
10122
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10123
|
-
organization: factories.string(),
|
|
10124
|
-
item_margin: factories['io.flow.v0.models.item_margin'](),
|
|
10125
|
-
}); },
|
|
10126
9996
|
'io.flow.v0.models.item_margin_post_form': function () { return ({
|
|
10127
9997
|
name: factories.string(),
|
|
10128
9998
|
q: factories.string(),
|
|
@@ -10138,13 +10008,6 @@ var factories = {
|
|
|
10138
10008
|
percent: factories.decimal(),
|
|
10139
10009
|
position: factories.long(),
|
|
10140
10010
|
}); },
|
|
10141
|
-
'io.flow.v0.models.item_margin_upserted_v2': function () { return ({
|
|
10142
|
-
discriminator: 'item_margin_upserted_v2',
|
|
10143
|
-
event_id: factories.string(),
|
|
10144
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10145
|
-
organization: factories.string(),
|
|
10146
|
-
item_margin: factories['io.flow.v0.models.item_margin'](),
|
|
10147
|
-
}); },
|
|
10148
10011
|
'io.flow.v0.models.item_margin_version': function () { return ({
|
|
10149
10012
|
id: factories.string(),
|
|
10150
10013
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -10185,27 +10048,6 @@ var factories = {
|
|
|
10185
10048
|
'io.flow.v0.models.item_reference': function () { return ({
|
|
10186
10049
|
number: factories.string(),
|
|
10187
10050
|
}); },
|
|
10188
|
-
'io.flow.v0.models.item_sales_margin_deleted': function () { return ({
|
|
10189
|
-
discriminator: 'item_sales_margin_deleted',
|
|
10190
|
-
event_id: factories.string(),
|
|
10191
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10192
|
-
item_sales_margin_id: factories.string(),
|
|
10193
|
-
organization_id: factories.string(),
|
|
10194
|
-
experience_key: factories.string(),
|
|
10195
|
-
}); },
|
|
10196
|
-
'io.flow.v0.models.item_sales_margin_upserted': function () { return ({
|
|
10197
|
-
discriminator: 'item_sales_margin_upserted',
|
|
10198
|
-
event_id: factories.string(),
|
|
10199
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10200
|
-
item_sales_margin_id: factories.string(),
|
|
10201
|
-
organization_id: factories.string(),
|
|
10202
|
-
experience_key: factories.string(),
|
|
10203
|
-
name: factories.string(),
|
|
10204
|
-
q: factories.string(),
|
|
10205
|
-
fixed: factories.decimal(),
|
|
10206
|
-
percent: factories.decimal(),
|
|
10207
|
-
position: factories.long(),
|
|
10208
|
-
}); },
|
|
10209
10051
|
'io.flow.v0.models.item_shipping_pricing': function () { return ({
|
|
10210
10052
|
min: factories['io.flow.v0.models.price'](),
|
|
10211
10053
|
max: factories['io.flow.v0.models.price'](),
|
|
@@ -10304,21 +10146,6 @@ var factories = {
|
|
|
10304
10146
|
organization: factories.string(),
|
|
10305
10147
|
label: factories['io.flow.v0.models.shipping_label'](),
|
|
10306
10148
|
}); },
|
|
10307
|
-
'io.flow.v0.models.label_format_deleted': function () { return ({
|
|
10308
|
-
discriminator: 'label_format_deleted',
|
|
10309
|
-
event_id: factories.string(),
|
|
10310
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10311
|
-
organization: factories.string(),
|
|
10312
|
-
experience_key: factories.string(),
|
|
10313
|
-
}); },
|
|
10314
|
-
'io.flow.v0.models.label_format_upserted': function () { return ({
|
|
10315
|
-
discriminator: 'label_format_upserted',
|
|
10316
|
-
event_id: factories.string(),
|
|
10317
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10318
|
-
organization: factories.string(),
|
|
10319
|
-
experience_key: factories.string(),
|
|
10320
|
-
format: factories.string(),
|
|
10321
|
-
}); },
|
|
10322
10149
|
'io.flow.v0.models.label_order_summary': function () { return ({
|
|
10323
10150
|
id: factories.string(),
|
|
10324
10151
|
number: factories.string(),
|
|
@@ -11057,13 +10884,6 @@ var factories = {
|
|
|
11057
10884
|
address: factories['io.flow.v0.models.billing_address'](),
|
|
11058
10885
|
invoice: factories['io.flow.v0.models.customer_invoice'](),
|
|
11059
10886
|
}); },
|
|
11060
|
-
'io.flow.v0.models.order_deleted': function () { return ({
|
|
11061
|
-
discriminator: 'order_deleted',
|
|
11062
|
-
event_id: factories.string(),
|
|
11063
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11064
|
-
organization: factories.string(),
|
|
11065
|
-
number: factories.string(),
|
|
11066
|
-
}); },
|
|
11067
10887
|
'io.flow.v0.models.order_deleted_v2': function () { return ({
|
|
11068
10888
|
discriminator: 'order_deleted_v2',
|
|
11069
10889
|
event_id: factories.string(),
|
|
@@ -11147,12 +10967,6 @@ var factories = {
|
|
|
11147
10967
|
primary: factories.boolean(),
|
|
11148
10968
|
number: factories.string(),
|
|
11149
10969
|
}); },
|
|
11150
|
-
'io.flow.v0.models.order_identifier_deleted': function () { return ({
|
|
11151
|
-
discriminator: 'order_identifier_deleted',
|
|
11152
|
-
event_id: factories.string(),
|
|
11153
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11154
|
-
id: factories.string(),
|
|
11155
|
-
}); },
|
|
11156
10970
|
'io.flow.v0.models.order_identifier_deleted_v2': function () { return ({
|
|
11157
10971
|
discriminator: 'order_identifier_deleted_v2',
|
|
11158
10972
|
event_id: factories.string(),
|
|
@@ -11172,25 +10986,6 @@ var factories = {
|
|
|
11172
10986
|
name: factories.string(),
|
|
11173
10987
|
primary: factories.boolean(),
|
|
11174
10988
|
}); },
|
|
11175
|
-
'io.flow.v0.models.order_identifier_upserted': function () { return ({
|
|
11176
|
-
discriminator: 'order_identifier_upserted',
|
|
11177
|
-
event_id: factories.string(),
|
|
11178
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11179
|
-
id: factories.string(),
|
|
11180
|
-
organization: factories.string(),
|
|
11181
|
-
number: factories.string(),
|
|
11182
|
-
order_number: factories.string(),
|
|
11183
|
-
}); },
|
|
11184
|
-
'io.flow.v0.models.order_identifier_upserted_v2': function () { return ({
|
|
11185
|
-
discriminator: 'order_identifier_upserted_v2',
|
|
11186
|
-
event_id: factories.string(),
|
|
11187
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11188
|
-
organization: factories.string(),
|
|
11189
|
-
id: factories.string(),
|
|
11190
|
-
order_number: factories.string(),
|
|
11191
|
-
identifier: factories.string(),
|
|
11192
|
-
primary: factories.boolean(),
|
|
11193
|
-
}); },
|
|
11194
10989
|
'io.flow.v0.models.order_identifier_upserted_v3': function () { return ({
|
|
11195
10990
|
discriminator: 'order_identifier_upserted_v3',
|
|
11196
10991
|
event_id: factories.string(),
|
|
@@ -11360,23 +11155,9 @@ var factories = {
|
|
|
11360
11155
|
parent_order: factories['io.flow.v0.models.order'](),
|
|
11361
11156
|
replacement_order: factories['io.flow.v0.models.order'](),
|
|
11362
11157
|
}); },
|
|
11363
|
-
'io.flow.v0.models.order_replacement_deleted': function () { return ({
|
|
11364
|
-
discriminator: 'order_replacement_deleted',
|
|
11365
|
-
event_id: factories.string(),
|
|
11366
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11367
|
-
organization: factories.string(),
|
|
11368
|
-
order_replacement: factories['io.flow.v0.models.order_replacement'](),
|
|
11369
|
-
}); },
|
|
11370
11158
|
'io.flow.v0.models.order_replacement_form': function () { return ({
|
|
11371
11159
|
items: arrayOf(function () { return factories['io.flow.v0.models.line_item_form'](); }),
|
|
11372
11160
|
}); },
|
|
11373
|
-
'io.flow.v0.models.order_replacement_upserted': function () { return ({
|
|
11374
|
-
discriminator: 'order_replacement_upserted',
|
|
11375
|
-
event_id: factories.string(),
|
|
11376
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11377
|
-
organization: factories.string(),
|
|
11378
|
-
order_replacement: factories['io.flow.v0.models.order_replacement'](),
|
|
11379
|
-
}); },
|
|
11380
11161
|
'io.flow.v0.models.order_rule_reference': function () { return ({
|
|
11381
11162
|
id: factories.string(),
|
|
11382
11163
|
key: factories.string(),
|
|
@@ -11393,13 +11174,6 @@ var factories = {
|
|
|
11393
11174
|
from_service_id: factories.string(),
|
|
11394
11175
|
to_service_id: factories.string(),
|
|
11395
11176
|
}); },
|
|
11396
|
-
'io.flow.v0.models.order_service_change_request': function () { return ({
|
|
11397
|
-
discriminator: 'order_service_change_request',
|
|
11398
|
-
event_id: factories.string(),
|
|
11399
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11400
|
-
organization: factories.string(),
|
|
11401
|
-
request: factories['io.flow.v0.models.order_service_change_request_data'](),
|
|
11402
|
-
}); },
|
|
11403
11177
|
'io.flow.v0.models.order_service_change_request_data': function () { return ({
|
|
11404
11178
|
id: factories.string(),
|
|
11405
11179
|
source_url: factories.string(),
|
|
@@ -11465,35 +11239,6 @@ var factories = {
|
|
|
11465
11239
|
rate: factories.decimal(),
|
|
11466
11240
|
rate_label: factories.string(),
|
|
11467
11241
|
}); },
|
|
11468
|
-
'io.flow.v0.models.order_upserted': function () { return ({
|
|
11469
|
-
discriminator: 'order_upserted',
|
|
11470
|
-
event_id: factories.string(),
|
|
11471
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11472
|
-
organization: factories.string(),
|
|
11473
|
-
number: factories.string(),
|
|
11474
|
-
environment: factories.string(),
|
|
11475
|
-
experience_id: factories.string(),
|
|
11476
|
-
expires_at: factories.date_time_iso_8601(),
|
|
11477
|
-
customer: factories['io.flow.v0.models.order_customer'](),
|
|
11478
|
-
selections: arrayOf(function () { return factories.string(); }),
|
|
11479
|
-
items: arrayOf(function () { return factories['io.flow.v0.models.localized_line_item'](); }),
|
|
11480
|
-
destination: factories['io.flow.v0.models.order_address'](),
|
|
11481
|
-
deliveries: arrayOf(function () { return factories['io.flow.v0.unions.delivery'](); }),
|
|
11482
|
-
prices: arrayOf(function () { return factories['io.flow.v0.models.order_price_detail'](); }),
|
|
11483
|
-
order_id: factories.string(),
|
|
11484
|
-
payments: arrayOf(function () { return factories['io.flow.v0.models.order_payment'](); }),
|
|
11485
|
-
discount: factories['io.flow.v0.models.money'](),
|
|
11486
|
-
delivered_duty: factories.string(),
|
|
11487
|
-
total: factories['io.flow.v0.models.localized_total'](),
|
|
11488
|
-
created_at: factories.date_time_iso_8601(),
|
|
11489
|
-
updated_at: factories.date_time_iso_8601(),
|
|
11490
|
-
submitted_at: factories.date_time_iso_8601(),
|
|
11491
|
-
lines: arrayOf(function () { return factories['io.flow.v0.models.line'](); }),
|
|
11492
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
11493
|
-
geo: factories['io.flow.v0.models.order_geo'](),
|
|
11494
|
-
merchant_of_record: factories['io.flow.v0.enums.order_merchant_of_record'](),
|
|
11495
|
-
tax_registration: factories['io.flow.v0.models.tax_registration'](),
|
|
11496
|
-
}); },
|
|
11497
11242
|
'io.flow.v0.models.order_upserted_v2': function () { return ({
|
|
11498
11243
|
discriminator: 'order_upserted_v2',
|
|
11499
11244
|
event_id: factories.string(),
|
|
@@ -12764,30 +12509,11 @@ var factories = {
|
|
|
12764
12509
|
duty: factories['io.flow.v0.enums.pricing_levy_setting'](),
|
|
12765
12510
|
rounding: factories['io.flow.v0.models.rounding'](),
|
|
12766
12511
|
}); },
|
|
12767
|
-
'io.flow.v0.models.pricing_deleted': function () { return ({
|
|
12768
|
-
discriminator: 'pricing_deleted',
|
|
12769
|
-
event_id: factories.string(),
|
|
12770
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12771
|
-
organization: factories.string(),
|
|
12772
|
-
experience_key: factories.string(),
|
|
12773
|
-
}); },
|
|
12774
12512
|
'io.flow.v0.models.pricing_settings': function () { return ({
|
|
12775
12513
|
editable: factories.boolean(),
|
|
12776
12514
|
default_tax_display: factories['io.flow.v0.enums.pricing_levy_setting'](),
|
|
12777
12515
|
default_duty_display: factories['io.flow.v0.enums.pricing_levy_setting'](),
|
|
12778
12516
|
}); },
|
|
12779
|
-
'io.flow.v0.models.pricing_upserted': function () { return ({
|
|
12780
|
-
discriminator: 'pricing_upserted',
|
|
12781
|
-
event_id: factories.string(),
|
|
12782
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12783
|
-
organization: factories.string(),
|
|
12784
|
-
experience_key: factories.string(),
|
|
12785
|
-
vat: factories.string(),
|
|
12786
|
-
duty: factories.string(),
|
|
12787
|
-
rounding_type: factories.string(),
|
|
12788
|
-
rounding_method: factories.string(),
|
|
12789
|
-
rounding_value: factories.decimal(),
|
|
12790
|
-
}); },
|
|
12791
12517
|
'io.flow.v0.models.pricing_version': function () { return ({
|
|
12792
12518
|
id: factories.string(),
|
|
12793
12519
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -12806,6 +12532,7 @@ var factories = {
|
|
|
12806
12532
|
taxonomy_category: factories['io.flow.v0.models.product_taxonomy_category'](),
|
|
12807
12533
|
taxonomy_data: arrayOf(function () { return factories['io.flow.v0.models.product_taxonomy_data'](); }),
|
|
12808
12534
|
item_numbers: arrayOf(function () { return factories.string(); }),
|
|
12535
|
+
highest_value_item_number: factories.string(),
|
|
12809
12536
|
updated_at: factories.date_time_iso_8601(),
|
|
12810
12537
|
deleted_at: factories.date_time_iso_8601(),
|
|
12811
12538
|
}); },
|
|
@@ -12835,7 +12562,7 @@ var factories = {
|
|
|
12835
12562
|
updated_by: factories.string(),
|
|
12836
12563
|
product_restriction_id: factories.string(),
|
|
12837
12564
|
hs_code: factories.string(),
|
|
12838
|
-
restricted_regions_by_type: arrayOf(function () { return factories['io.flow.
|
|
12565
|
+
restricted_regions_by_type: arrayOf(function () { return factories['io.flow.v0.models.sellablility_region_result'](); }),
|
|
12839
12566
|
}); },
|
|
12840
12567
|
'io.flow.v0.models.product_restriction_result_deleted': function () { return ({
|
|
12841
12568
|
discriminator: 'product_restriction_result_deleted',
|
|
@@ -12851,6 +12578,24 @@ var factories = {
|
|
|
12851
12578
|
organization: factories.string(),
|
|
12852
12579
|
product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
12853
12580
|
}); },
|
|
12581
|
+
'io.flow.v0.models.product_sellability': function () { return ({
|
|
12582
|
+
discriminator: 'product_sellability',
|
|
12583
|
+
shop_id: factories.string(),
|
|
12584
|
+
product_id: factories.string(),
|
|
12585
|
+
request_id: factories.string(),
|
|
12586
|
+
hs6_code: factories.string(),
|
|
12587
|
+
restricted_regions: arrayOf(function () { return factories['io.flow.v0.models.sellablility_region_result'](); }),
|
|
12588
|
+
}); },
|
|
12589
|
+
'io.flow.v0.models.product_sellability_form': function () { return ({
|
|
12590
|
+
shop_id: factories.string(),
|
|
12591
|
+
product_id: factories.string(),
|
|
12592
|
+
name: factories.string(),
|
|
12593
|
+
price: factories['io.flow.v0.models.money'](),
|
|
12594
|
+
description: factories.string(),
|
|
12595
|
+
taxonomy_category: factories['io.flow.v0.models.product_taxonomy_category'](),
|
|
12596
|
+
status: factories['io.flow.v0.enums.sellability_request_status'](),
|
|
12597
|
+
dry_run: factories.boolean(),
|
|
12598
|
+
}); },
|
|
12854
12599
|
'io.flow.v0.models.product_taxonomy_category': function () { return ({
|
|
12855
12600
|
name: factories.string(),
|
|
12856
12601
|
full_name: factories.string(),
|
|
@@ -13630,6 +13375,18 @@ var factories = {
|
|
|
13630
13375
|
authentication_techniques: arrayOf(function () { return factories['io.flow.v0.enums.authentication_technique'](); }),
|
|
13631
13376
|
roles: arrayOf(function () { return factories['io.flow.v0.enums.flow_role'](); }),
|
|
13632
13377
|
}); },
|
|
13378
|
+
'io.flow.v0.models.sarvesh_item_deleted': function () { return ({
|
|
13379
|
+
discriminator: 'sarvesh_item_deleted',
|
|
13380
|
+
event_id: factories.string(),
|
|
13381
|
+
timestamp: factories.date_time_iso_8601(),
|
|
13382
|
+
id: factories.string(),
|
|
13383
|
+
}); },
|
|
13384
|
+
'io.flow.v0.models.sarvesh_item_upserted': function () { return ({
|
|
13385
|
+
discriminator: 'sarvesh_item_upserted',
|
|
13386
|
+
event_id: factories.string(),
|
|
13387
|
+
timestamp: factories.date_time_iso_8601(),
|
|
13388
|
+
item: factories['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'](),
|
|
13389
|
+
}); },
|
|
13633
13390
|
'io.flow.v0.models.schedule': function () { return ({
|
|
13634
13391
|
calendar: factories['io.flow.v0.enums.calendar'](),
|
|
13635
13392
|
holiday: factories['io.flow.v0.enums.holiday_calendar'](),
|
|
@@ -13674,6 +13431,15 @@ var factories = {
|
|
|
13674
13431
|
discriminator: 'select_issuer_option_action_details',
|
|
13675
13432
|
issuer_options: arrayOf(function () { return factories['io.flow.v0.models.issuer_reference'](); }),
|
|
13676
13433
|
}); },
|
|
13434
|
+
'io.flow.v0.models.sellability_error': function () { return ({
|
|
13435
|
+
discriminator: 'sellability_error',
|
|
13436
|
+
code: factories['io.flow.v0.enums.sellability_error_code'](),
|
|
13437
|
+
messages: arrayOf(function () { return factories.string(); }),
|
|
13438
|
+
}); },
|
|
13439
|
+
'io.flow.v0.models.sellablility_region_result': function () { return ({
|
|
13440
|
+
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
13441
|
+
regions: arrayOf(function () { return factories.string(); }),
|
|
13442
|
+
}); },
|
|
13677
13443
|
'io.flow.v0.models.service_reference': function () { return ({
|
|
13678
13444
|
id: factories.string(),
|
|
13679
13445
|
}); },
|
|
@@ -14371,6 +14137,13 @@ var factories = {
|
|
|
14371
14137
|
organization: factories.string(),
|
|
14372
14138
|
statement: factories['io.flow.v0.models.statement'](),
|
|
14373
14139
|
}); },
|
|
14140
|
+
'io.flow.v0.models.street_address': function () { return ({
|
|
14141
|
+
streets: arrayOf(function () { return factories.string(); }),
|
|
14142
|
+
city: factories.string(),
|
|
14143
|
+
province: factories.string(),
|
|
14144
|
+
postal: factories.string(),
|
|
14145
|
+
country: factories.string(),
|
|
14146
|
+
}); },
|
|
14374
14147
|
'io.flow.v0.models.stripe_authentication_data': function () { return ({
|
|
14375
14148
|
discriminator: 'stripe_authentication_data',
|
|
14376
14149
|
secret_key_reference: factories.string(),
|
|
@@ -14502,6 +14275,83 @@ var factories = {
|
|
|
14502
14275
|
components: arrayOf(function () { return factories['io.flow.v0.enums.levy_component'](); }),
|
|
14503
14276
|
deminimis: factories['io.flow.v0.unions.deminimis'](),
|
|
14504
14277
|
}); },
|
|
14278
|
+
'io.flow.v0.models.tax_duty_calculator_validation_error': function () { return ({
|
|
14279
|
+
code: factories['io.flow.v0.enums.tax_duty_calculator_validation_error_code'](),
|
|
14280
|
+
messages: arrayOf(function () { return factories.string(); }),
|
|
14281
|
+
}); },
|
|
14282
|
+
'io.flow.v0.models.tax_duty_quote': function () { return ({
|
|
14283
|
+
id: factories.string(),
|
|
14284
|
+
primary_identifier: factories.string(),
|
|
14285
|
+
attributes: objectOf(function () { return factories.string(); }),
|
|
14286
|
+
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
14287
|
+
delivered_duty: factories['io.flow.v0.enums.delivered_duty'](),
|
|
14288
|
+
destination: factories['io.flow.v0.models.street_address'](),
|
|
14289
|
+
quote_date: factories.date_time_iso_8601(),
|
|
14290
|
+
currency: factories.string(),
|
|
14291
|
+
lines: arrayOf(function () { return factories['io.flow.v0.models.tax_duty_quote_line_item'](); }),
|
|
14292
|
+
shipping: arrayOf(function () { return factories['io.flow.v0.models.tax_duty_quote_simple_shipping'](); }),
|
|
14293
|
+
total_values: factories['io.flow.v0.models.tax_duty_quote_values'](),
|
|
14294
|
+
}); },
|
|
14295
|
+
'io.flow.v0.models.tax_duty_quote_fee_value': function () { return ({
|
|
14296
|
+
amount: factories.decimal(),
|
|
14297
|
+
description: factories.string(),
|
|
14298
|
+
amount_refundable_on_return: factories.decimal(),
|
|
14299
|
+
}); },
|
|
14300
|
+
'io.flow.v0.models.tax_duty_quote_form': function () { return ({
|
|
14301
|
+
primary_identifier: factories.string(),
|
|
14302
|
+
attributes: objectOf(function () { return factories.string(); }),
|
|
14303
|
+
delivered_duty: factories['io.flow.v0.enums.delivered_duty'](),
|
|
14304
|
+
destination: factories['io.flow.v0.models.street_address'](),
|
|
14305
|
+
currency: factories.string(),
|
|
14306
|
+
lines: arrayOf(function () { return factories['io.flow.v0.models.tax_duty_quote_line_item_form'](); }),
|
|
14307
|
+
shipping: arrayOf(function () { return factories['io.flow.v0.models.tax_duty_quote_simple_shipping_form'](); }),
|
|
14308
|
+
includes: arrayOf(function () { return factories['io.flow.v0.enums.levy_inclusion'](); }),
|
|
14309
|
+
}); },
|
|
14310
|
+
'io.flow.v0.models.tax_duty_quote_line_item': function () { return ({
|
|
14311
|
+
primary_identifier: factories.string(),
|
|
14312
|
+
attributes: objectOf(function () { return factories.string(); }),
|
|
14313
|
+
ship_from: factories['io.flow.v0.models.street_address'](),
|
|
14314
|
+
quantity: factories.long(),
|
|
14315
|
+
unit_values: factories['io.flow.v0.models.tax_duty_quote_values'](),
|
|
14316
|
+
country_of_origin: factories.string(),
|
|
14317
|
+
hs_code: factories.string(),
|
|
14318
|
+
}); },
|
|
14319
|
+
'io.flow.v0.models.tax_duty_quote_line_item_form': function () { return ({
|
|
14320
|
+
primary_identifier: factories.string(),
|
|
14321
|
+
attributes: objectOf(function () { return factories.string(); }),
|
|
14322
|
+
ship_from: factories['io.flow.v0.models.street_address'](),
|
|
14323
|
+
quantity: factories.long(),
|
|
14324
|
+
unit_price: factories.decimal(),
|
|
14325
|
+
unit_weight: factories['io.flow.v0.models.measurement'](),
|
|
14326
|
+
country_of_origin: factories.string(),
|
|
14327
|
+
hs_code: factories.string(),
|
|
14328
|
+
includes: arrayOf(function () { return factories['io.flow.v0.enums.levy_inclusion'](); }),
|
|
14329
|
+
preferential_rate_eligibilities: arrayOf(function () { return factories['io.flow.v0.enums.preferential_rate_eligibility'](); }),
|
|
14330
|
+
}); },
|
|
14331
|
+
'io.flow.v0.models.tax_duty_quote_simple_levy_value': function () { return ({
|
|
14332
|
+
discriminator: 'tax_duty_quote_simple_levy_value',
|
|
14333
|
+
amount: factories.decimal(),
|
|
14334
|
+
rate: factories.decimal(),
|
|
14335
|
+
description: factories.string(),
|
|
14336
|
+
zero_levy_reason: arrayOf(function () { return factories['io.flow.v0.enums.zero_levy_reason_code'](); }),
|
|
14337
|
+
amount_refundable_on_return: factories.decimal(),
|
|
14338
|
+
}); },
|
|
14339
|
+
'io.flow.v0.models.tax_duty_quote_simple_shipping': function () { return ({
|
|
14340
|
+
values: factories['io.flow.v0.models.tax_duty_quote_values'](),
|
|
14341
|
+
ship_from: factories['io.flow.v0.models.street_address'](),
|
|
14342
|
+
}); },
|
|
14343
|
+
'io.flow.v0.models.tax_duty_quote_simple_shipping_form': function () { return ({
|
|
14344
|
+
price: factories.decimal(),
|
|
14345
|
+
includes: arrayOf(function () { return factories['io.flow.v0.enums.levy_inclusion'](); }),
|
|
14346
|
+
ship_from: factories['io.flow.v0.models.street_address'](),
|
|
14347
|
+
}); },
|
|
14348
|
+
'io.flow.v0.models.tax_duty_quote_values': function () { return ({
|
|
14349
|
+
price: factories.decimal(),
|
|
14350
|
+
duty: factories['io.flow.v0.models.tax_duty_quote_simple_levy_value'](),
|
|
14351
|
+
tax: factories['io.flow.v0.models.tax_duty_quote_simple_levy_value'](),
|
|
14352
|
+
fees: factories['io.flow.v0.models.tax_duty_quote_fee_value'](),
|
|
14353
|
+
total: factories.decimal(),
|
|
14354
|
+
}); },
|
|
14505
14355
|
'io.flow.v0.models.tax_registration': function () { return ({
|
|
14506
14356
|
id: factories.string(),
|
|
14507
14357
|
key: factories.string(),
|
|
@@ -15436,6 +15286,10 @@ var factories = {
|
|
|
15436
15286
|
var f = faker.helpers.arrayElement([
|
|
15437
15287
|
function () { return factories['io.flow.v0.models.test_upserted'](); },
|
|
15438
15288
|
function () { return factories['io.flow.v0.models.generate_load'](); },
|
|
15289
|
+
function () { return factories['io.flow.v0.models.sarvesh_item_upserted'](); },
|
|
15290
|
+
function () { return factories['io.flow.v0.models.sarvesh_item_deleted'](); },
|
|
15291
|
+
function () { return factories['io.flow.v0.models.hosein_item_upserted'](); },
|
|
15292
|
+
function () { return factories['io.flow.v0.models.hosein_item_deleted'](); },
|
|
15439
15293
|
function () { return factories['io.flow.v0.models.niall_item_upserted'](); },
|
|
15440
15294
|
function () { return factories['io.flow.v0.models.niall_item_deleted'](); },
|
|
15441
15295
|
function () { return factories['io.flow.v0.models.rohan_item_upserted'](); },
|
|
@@ -15498,44 +15352,12 @@ var factories = {
|
|
|
15498
15352
|
function () { return factories['io.flow.v0.models.rate_upserted'](); },
|
|
15499
15353
|
function () { return factories['io.flow.v0.models.rate_deleted_v3'](); },
|
|
15500
15354
|
function () { return factories['io.flow.v0.models.rate_upserted_v3'](); },
|
|
15501
|
-
function () { return factories['io.flow.v0.models.available_promotions_upserted'](); },
|
|
15502
|
-
function () { return factories['io.flow.v0.models.available_promotions_deleted'](); },
|
|
15503
|
-
function () { return factories['io.flow.v0.models.available_promotions_upserted_v2'](); },
|
|
15504
|
-
function () { return factories['io.flow.v0.models.available_promotions_deleted_v2'](); },
|
|
15505
15355
|
function () { return factories['io.flow.v0.models.allocation_deleted_v2'](); },
|
|
15506
15356
|
function () { return factories['io.flow.v0.models.allocation_upserted_v2'](); },
|
|
15507
|
-
function () { return factories['io.flow.v0.models.currency_format_deleted'](); },
|
|
15508
|
-
function () { return factories['io.flow.v0.models.currency_format_upserted'](); },
|
|
15509
|
-
function () { return factories['io.flow.v0.models.experience_deleted'](); },
|
|
15510
|
-
function () { return factories['io.flow.v0.models.experience_upserted'](); },
|
|
15511
|
-
function () { return factories['io.flow.v0.models.experience_deleted_v2'](); },
|
|
15512
|
-
function () { return factories['io.flow.v0.models.experience_upserted_v2'](); },
|
|
15513
|
-
function () { return factories['io.flow.v0.models.country_status_upserted'](); },
|
|
15514
|
-
function () { return factories['io.flow.v0.models.country_status_deleted'](); },
|
|
15515
|
-
function () { return factories['io.flow.v0.models.experience_price_book_mapping_deleted'](); },
|
|
15516
|
-
function () { return factories['io.flow.v0.models.experience_price_book_mapping_upserted'](); },
|
|
15517
|
-
function () { return factories['io.flow.v0.models.experience_logistics_settings_upserted'](); },
|
|
15518
|
-
function () { return factories['io.flow.v0.models.experience_logistics_settings_deleted'](); },
|
|
15519
|
-
function () { return factories['io.flow.v0.models.item_margin_deleted_v2'](); },
|
|
15520
|
-
function () { return factories['io.flow.v0.models.item_margin_upserted_v2'](); },
|
|
15521
|
-
function () { return factories['io.flow.v0.models.item_sales_margin_deleted'](); },
|
|
15522
|
-
function () { return factories['io.flow.v0.models.item_sales_margin_upserted'](); },
|
|
15523
|
-
function () { return factories['io.flow.v0.models.label_format_deleted'](); },
|
|
15524
|
-
function () { return factories['io.flow.v0.models.label_format_upserted'](); },
|
|
15525
|
-
function () { return factories['io.flow.v0.models.order_deleted'](); },
|
|
15526
|
-
function () { return factories['io.flow.v0.models.order_upserted'](); },
|
|
15527
15357
|
function () { return factories['io.flow.v0.models.order_deleted_v2'](); },
|
|
15528
15358
|
function () { return factories['io.flow.v0.models.order_upserted_v2'](); },
|
|
15529
|
-
function () { return factories['io.flow.v0.models.order_identifier_deleted'](); },
|
|
15530
|
-
function () { return factories['io.flow.v0.models.order_identifier_upserted'](); },
|
|
15531
15359
|
function () { return factories['io.flow.v0.models.order_identifier_deleted_v2'](); },
|
|
15532
|
-
function () { return factories['io.flow.v0.models.order_identifier_upserted_v2'](); },
|
|
15533
15360
|
function () { return factories['io.flow.v0.models.order_identifier_upserted_v3'](); },
|
|
15534
|
-
function () { return factories['io.flow.v0.models.order_replacement_upserted'](); },
|
|
15535
|
-
function () { return factories['io.flow.v0.models.order_replacement_deleted'](); },
|
|
15536
|
-
function () { return factories['io.flow.v0.models.pricing_deleted'](); },
|
|
15537
|
-
function () { return factories['io.flow.v0.models.pricing_upserted'](); },
|
|
15538
|
-
function () { return factories['io.flow.v0.models.order_service_change_request'](); },
|
|
15539
15361
|
function () { return factories['io.flow.v0.models.fraud_status_changed'](); },
|
|
15540
15362
|
function () { return factories['io.flow.v0.models.center_upserted'](); },
|
|
15541
15363
|
function () { return factories['io.flow.v0.models.center_deleted'](); },
|
|
@@ -15560,8 +15382,6 @@ var factories = {
|
|
|
15560
15382
|
function () { return factories['io.flow.v0.models.item_origin_deleted'](); },
|
|
15561
15383
|
function () { return factories['io.flow.v0.models.harmonized_landed_cost_upserted'](); },
|
|
15562
15384
|
function () { return factories['io.flow.v0.models.fully_harmonized_item_upserted'](); },
|
|
15563
|
-
function () { return factories['io.flow.v0.models.import_completed_v2'](); },
|
|
15564
|
-
function () { return factories['io.flow.v0.models.import_failed_v2'](); },
|
|
15565
15385
|
function () { return factories['io.flow.v0.models.label_upserted'](); },
|
|
15566
15386
|
function () { return factories['io.flow.v0.models.label_deleted_v2'](); },
|
|
15567
15387
|
function () { return factories['io.flow.v0.models.label_upserted_v2'](); },
|
|
@@ -16111,6 +15931,13 @@ var factories = {
|
|
|
16111
15931
|
]);
|
|
16112
15932
|
return f();
|
|
16113
15933
|
},
|
|
15934
|
+
'io.flow.v0.unions.sellability_response': function () {
|
|
15935
|
+
var f = faker.helpers.arrayElement([
|
|
15936
|
+
function () { return factories['io.flow.v0.models.product_sellability'](); },
|
|
15937
|
+
function () { return factories['io.flow.v0.models.sellability_error'](); },
|
|
15938
|
+
]);
|
|
15939
|
+
return f();
|
|
15940
|
+
},
|
|
16114
15941
|
'io.flow.v0.unions.service_description': function () {
|
|
16115
15942
|
var f = faker.helpers.arrayElement([
|
|
16116
15943
|
function () { return factories['io.flow.v0.models.service_summary'](); },
|
|
@@ -16181,6 +16008,10 @@ var factories = {
|
|
|
16181
16008
|
var f = faker.helpers.arrayElement([function () { return factories['io.flow.v0.models.shopify_item_event_bucket'](); }]);
|
|
16182
16009
|
return f();
|
|
16183
16010
|
},
|
|
16011
|
+
'io.flow.v0.unions.tax_duty_quote_levy_value': function () {
|
|
16012
|
+
var f = faker.helpers.arrayElement([function () { return factories['io.flow.v0.models.tax_duty_quote_simple_levy_value'](); }]);
|
|
16013
|
+
return f();
|
|
16014
|
+
},
|
|
16184
16015
|
'io.flow.v0.unions.tax_setting': function () {
|
|
16185
16016
|
var f = faker.helpers.arrayElement([
|
|
16186
16017
|
function () { return factories['io.flow.v0.models.avalara_tax_setting'](); },
|
|
@@ -16383,10 +16214,6 @@ export var makeAvailableFilterFormat = function () { return factories['io.flow.v
|
|
|
16383
16214
|
export var makeAvailableFilterStructured = function () { return factories['io.flow.v0.models.available_filter_structured'](); };
|
|
16384
16215
|
export var makeAvailableFilterUnstructured = function () { return factories['io.flow.v0.models.available_filter_unstructured'](); };
|
|
16385
16216
|
export var makeAvailablePromotion = function () { return factories['io.flow.v0.models.available_promotion'](); };
|
|
16386
|
-
export var makeAvailablePromotionsDeleted = function () { return factories['io.flow.v0.models.available_promotions_deleted'](); };
|
|
16387
|
-
export var makeAvailablePromotionsDeletedV2 = function () { return factories['io.flow.v0.models.available_promotions_deleted_v2'](); };
|
|
16388
|
-
export var makeAvailablePromotionsUpserted = function () { return factories['io.flow.v0.models.available_promotions_upserted'](); };
|
|
16389
|
-
export var makeAvailablePromotionsUpsertedV2 = function () { return factories['io.flow.v0.models.available_promotions_upserted_v2'](); };
|
|
16390
16217
|
export var makeAvailableService = function () { return factories['io.flow.v0.models.available_service'](); };
|
|
16391
16218
|
export var makeAvalaraTaxCsvSetting = function () { return factories['io.flow.v0.models.avalara_tax_csv_setting'](); };
|
|
16392
16219
|
export var makeAvalaraTaxSetting = function () { return factories['io.flow.v0.models.avalara_tax_setting'](); };
|
|
@@ -16591,9 +16418,7 @@ export var makeCountryPickerForm = function () { return factories['io.flow.v0.mo
|
|
|
16591
16418
|
export var makeCountryPickerSource = function () { return factories['io.flow.v0.enums.country_picker_source'](); };
|
|
16592
16419
|
export var makeCountryShippingPricing = function () { return factories['io.flow.v0.models.country_shipping_pricing'](); };
|
|
16593
16420
|
export var makeCountryStatus = function () { return factories['io.flow.v0.models.country_status'](); };
|
|
16594
|
-
export var makeCountryStatusDeleted = function () { return factories['io.flow.v0.models.country_status_deleted'](); };
|
|
16595
16421
|
export var makeCountryStatusForm = function () { return factories['io.flow.v0.models.country_status_form'](); };
|
|
16596
|
-
export var makeCountryStatusUpserted = function () { return factories['io.flow.v0.models.country_status_upserted'](); };
|
|
16597
16422
|
export var makeCreditMemo = function () { return factories['io.flow.v0.models.credit_memo'](); };
|
|
16598
16423
|
export var makeCreditMemoDeleted = function () { return factories['io.flow.v0.models.credit_memo_deleted'](); };
|
|
16599
16424
|
export var makeCreditMemoForm = function () { return factories['io.flow.v0.models.credit_memo_form'](); };
|
|
@@ -16611,8 +16436,6 @@ export var makeCsvPriceBookItemExportRowByItemNumber = function () { return fact
|
|
|
16611
16436
|
export var makeCsvPriceBookItemExportRowBySku = function () { return factories['io.flow.v0.models.csv_price_book_item_export_row_by_sku'](); };
|
|
16612
16437
|
export var makeCurrency = function () { return factories['io.flow.v0.models.currency'](); };
|
|
16613
16438
|
export var makeCurrencyFormat = function () { return factories['io.flow.v0.models.currency_format'](); };
|
|
16614
|
-
export var makeCurrencyFormatDeleted = function () { return factories['io.flow.v0.models.currency_format_deleted'](); };
|
|
16615
|
-
export var makeCurrencyFormatUpserted = function () { return factories['io.flow.v0.models.currency_format_upserted'](); };
|
|
16616
16439
|
export var makeCurrencyLabelFormatter = function () { return factories['io.flow.v0.enums.currency_label_formatter'](); };
|
|
16617
16440
|
export var makeCurrencySymbolFormat = function () { return factories['io.flow.v0.enums.currency_symbol_format'](); };
|
|
16618
16441
|
export var makeCurrencySymbols = function () { return factories['io.flow.v0.models.currency_symbols'](); };
|
|
@@ -16774,15 +16597,11 @@ export var makeExperienceCountryStatus = function () { return factories['io.flow
|
|
|
16774
16597
|
export var makeExperienceCurrencyFormat = function () { return factories['io.flow.v0.models.experience_currency_format'](); };
|
|
16775
16598
|
export var makeExperienceCurrencyFormatForm = function () { return factories['io.flow.v0.models.experience_currency_format_form'](); };
|
|
16776
16599
|
export var makeExperienceDefaults = function () { return factories['io.flow.v0.models.experience_defaults'](); };
|
|
16777
|
-
export var makeExperienceDeleted = function () { return factories['io.flow.v0.models.experience_deleted'](); };
|
|
16778
|
-
export var makeExperienceDeletedV2 = function () { return factories['io.flow.v0.models.experience_deleted_v2'](); };
|
|
16779
16600
|
export var makeExperienceExportType = function () { return factories['io.flow.v0.models.experience_export_type'](); };
|
|
16780
16601
|
export var makeExperienceForm = function () { return factories['io.flow.v0.models.experience_form'](); };
|
|
16781
16602
|
export var makeExperienceGeo = function () { return factories['io.flow.v0.models.experience_geo'](); };
|
|
16782
16603
|
export var makeExperienceLogisticsSettings = function () { return factories['io.flow.v0.models.experience_logistics_settings'](); };
|
|
16783
|
-
export var makeExperienceLogisticsSettingsDeleted = function () { return factories['io.flow.v0.models.experience_logistics_settings_deleted'](); };
|
|
16784
16604
|
export var makeExperienceLogisticsSettingsPutForm = function () { return factories['io.flow.v0.models.experience_logistics_settings_put_form'](); };
|
|
16785
|
-
export var makeExperienceLogisticsSettingsUpserted = function () { return factories['io.flow.v0.models.experience_logistics_settings_upserted'](); };
|
|
16786
16605
|
export var makeExperienceLogisticsSummary = function () { return factories['io.flow.v0.models.experience_logistics_summary'](); };
|
|
16787
16606
|
export var makeExperienceLogisticsTierSummary = function () { return factories['io.flow.v0.models.experience_logistics_tier_summary'](); };
|
|
16788
16607
|
export var makeExperienceLogisticsTierSummaryPrices = function () { return factories['io.flow.v0.models.experience_logistics_tier_summary_prices'](); };
|
|
@@ -16791,10 +16610,8 @@ export var makeExperiencePaymentMethodRule = function () { return factories['io.
|
|
|
16791
16610
|
export var makeExperiencePaymentMethodRuleForm = function () { return factories['io.flow.v0.models.experience_payment_method_rule_form'](); };
|
|
16792
16611
|
export var makeExperiencePaymentMethodTag = function () { return factories['io.flow.v0.enums.experience_payment_method_tag'](); };
|
|
16793
16612
|
export var makeExperiencePriceBookMapping = function () { return factories['io.flow.v0.models.experience_price_book_mapping'](); };
|
|
16794
|
-
export var makeExperiencePriceBookMappingDeleted = function () { return factories['io.flow.v0.models.experience_price_book_mapping_deleted'](); };
|
|
16795
16613
|
export var makeExperiencePriceBookMappingForm = function () { return factories['io.flow.v0.models.experience_price_book_mapping_form'](); };
|
|
16796
16614
|
export var makeExperiencePriceBookMappingPutForm = function () { return factories['io.flow.v0.models.experience_price_book_mapping_put_form'](); };
|
|
16797
|
-
export var makeExperiencePriceBookMappingUpserted = function () { return factories['io.flow.v0.models.experience_price_book_mapping_upserted'](); };
|
|
16798
16615
|
export var makeExperiencePriceConversion = function () { return factories['io.flow.v0.models.experience_price_conversion'](); };
|
|
16799
16616
|
export var makeExperiencePriceConversionRequest = function () { return factories['io.flow.v0.models.experience_price_conversion_request'](); };
|
|
16800
16617
|
export var makeExperiencePriceConversionResponse = function () { return factories['io.flow.v0.models.experience_price_conversion_response'](); };
|
|
@@ -16806,8 +16623,6 @@ export var makeExperienceSettings = function () { return factories['io.flow.v0.m
|
|
|
16806
16623
|
export var makeExperienceStatus = function () { return factories['io.flow.v0.enums.experience_status'](); };
|
|
16807
16624
|
export var makeExperienceStatusForm = function () { return factories['io.flow.v0.models.experience_status_form'](); };
|
|
16808
16625
|
export var makeExperienceSummary = function () { return factories['io.flow.v0.models.experience_summary'](); };
|
|
16809
|
-
export var makeExperienceUpserted = function () { return factories['io.flow.v0.models.experience_upserted'](); };
|
|
16810
|
-
export var makeExperienceUpsertedV2 = function () { return factories['io.flow.v0.models.experience_upserted_v2'](); };
|
|
16811
16626
|
export var makeExperienceVersion = function () { return factories['io.flow.v0.models.experience_version'](); };
|
|
16812
16627
|
export var makeExpiration = function () { return factories['io.flow.v0.models.expiration'](); };
|
|
16813
16628
|
export var makeExport = function () { return factories['io.flow.v0.models.export'](); };
|
|
@@ -16927,6 +16742,8 @@ export var makeHop = function () { return factories['io.flow.v0.models.hop']();
|
|
|
16927
16742
|
export var makeHopEstimate = function () { return factories['io.flow.v0.models.hop_estimate'](); };
|
|
16928
16743
|
export var makeHopEstimateV2 = function () { return factories['io.flow.v0.models.hop_estimate_v2'](); };
|
|
16929
16744
|
export var makeHopV2 = function () { return factories['io.flow.v0.models.hop_v2'](); };
|
|
16745
|
+
export var makeHoseinItemDeleted = function () { return factories['io.flow.v0.models.hosein_item_deleted'](); };
|
|
16746
|
+
export var makeHoseinItemUpserted = function () { return factories['io.flow.v0.models.hosein_item_upserted'](); };
|
|
16930
16747
|
export var makeHs10 = function () { return factories['io.flow.v0.models.hs10'](); };
|
|
16931
16748
|
export var makeHs10CodeDeleted = function () { return factories['io.flow.v0.models.hs10_code_deleted'](); };
|
|
16932
16749
|
export var makeHs10CodeUpserted = function () { return factories['io.flow.v0.models.hs10_code_upserted'](); };
|
|
@@ -16939,8 +16756,6 @@ export var makeImage = function () { return factories['io.flow.v0.models.image']
|
|
|
16939
16756
|
export var makeImageForm = function () { return factories['io.flow.v0.models.image_form'](); };
|
|
16940
16757
|
export var makeImageTag = function () { return factories['io.flow.v0.enums.image_tag'](); };
|
|
16941
16758
|
export var makeImport = function () { return factories['io.flow.v0.models.import'](); };
|
|
16942
|
-
export var makeImportCompletedV2 = function () { return factories['io.flow.v0.models.import_completed_v2'](); };
|
|
16943
|
-
export var makeImportFailedV2 = function () { return factories['io.flow.v0.models.import_failed_v2'](); };
|
|
16944
16759
|
export var makeImportForm = function () { return factories['io.flow.v0.models.import_form'](); };
|
|
16945
16760
|
export var makeImportResults = function () { return factories['io.flow.v0.models.import_results'](); };
|
|
16946
16761
|
export var makeImportTemplate = function () { return factories['io.flow.v0.models.import_template'](); };
|
|
@@ -16989,10 +16804,8 @@ export var makeItemFormOverlayForm = function () { return factories['io.flow.v0.
|
|
|
16989
16804
|
export var makeItemIdentifier = function () { return factories['io.flow.v0.enums.item_identifier'](); };
|
|
16990
16805
|
export var makeItemInserted = function () { return factories['io.flow.v0.models.item_inserted'](); };
|
|
16991
16806
|
export var makeItemMargin = function () { return factories['io.flow.v0.models.item_margin'](); };
|
|
16992
|
-
export var makeItemMarginDeletedV2 = function () { return factories['io.flow.v0.models.item_margin_deleted_v2'](); };
|
|
16993
16807
|
export var makeItemMarginPostForm = function () { return factories['io.flow.v0.models.item_margin_post_form'](); };
|
|
16994
16808
|
export var makeItemMarginPutForm = function () { return factories['io.flow.v0.models.item_margin_put_form'](); };
|
|
16995
|
-
export var makeItemMarginUpsertedV2 = function () { return factories['io.flow.v0.models.item_margin_upserted_v2'](); };
|
|
16996
16809
|
export var makeItemMarginVersion = function () { return factories['io.flow.v0.models.item_margin_version'](); };
|
|
16997
16810
|
export var makeItemOriginDeleted = function () { return factories['io.flow.v0.models.item_origin_deleted'](); };
|
|
16998
16811
|
export var makeItemOriginUpserted = function () { return factories['io.flow.v0.models.item_origin_upserted'](); };
|
|
@@ -17000,8 +16813,6 @@ export var makeItemPriceUpdateForm = function () { return factories['io.flow.v0.
|
|
|
17000
16813
|
export var makeItemPriceUpdatePutForm = function () { return factories['io.flow.v0.models.item_price_update_put_form'](); };
|
|
17001
16814
|
export var makeItemQuerySuggestion = function () { return factories['io.flow.v0.models.item_query_suggestion'](); };
|
|
17002
16815
|
export var makeItemReference = function () { return factories['io.flow.v0.models.item_reference'](); };
|
|
17003
|
-
export var makeItemSalesMarginDeleted = function () { return factories['io.flow.v0.models.item_sales_margin_deleted'](); };
|
|
17004
|
-
export var makeItemSalesMarginUpserted = function () { return factories['io.flow.v0.models.item_sales_margin_upserted'](); };
|
|
17005
16816
|
export var makeItemShippingPricing = function () { return factories['io.flow.v0.models.item_shipping_pricing'](); };
|
|
17006
16817
|
export var makeItemStatistics = function () { return factories['io.flow.v0.models.item_statistics'](); };
|
|
17007
16818
|
export var makeItemUpdated = function () { return factories['io.flow.v0.models.item_updated'](); };
|
|
@@ -17020,8 +16831,6 @@ export var makeKnowYourBusinessUsaForm = function () { return factories['io.flow
|
|
|
17020
16831
|
export var makeKubeHealthcheck = function () { return factories['io.flow.v0.models.kube-healthcheck'](); };
|
|
17021
16832
|
export var makeLabelBase = function () { return factories['io.flow.v0.models.label_base'](); };
|
|
17022
16833
|
export var makeLabelDeletedV2 = function () { return factories['io.flow.v0.models.label_deleted_v2'](); };
|
|
17023
|
-
export var makeLabelFormatDeleted = function () { return factories['io.flow.v0.models.label_format_deleted'](); };
|
|
17024
|
-
export var makeLabelFormatUpserted = function () { return factories['io.flow.v0.models.label_format_upserted'](); };
|
|
17025
16834
|
export var makeLabelOrderSummary = function () { return factories['io.flow.v0.models.label_order_summary'](); };
|
|
17026
16835
|
export var makeLabelProcessingModification = function () { return factories['io.flow.v0.models.label_processing_modification'](); };
|
|
17027
16836
|
export var makeLabelProcessingModificationDeleted = function () { return factories['io.flow.v0.models.label_processing_modification_deleted'](); };
|
|
@@ -17049,6 +16858,7 @@ export var makeLaneSummary = function () { return factories['io.flow.v0.models.l
|
|
|
17049
16858
|
export var makeLanguage = function () { return factories['io.flow.v0.models.language'](); };
|
|
17050
16859
|
export var makeLargePackageServiceFee = function () { return factories['io.flow.v0.models.large_package_service_fee'](); };
|
|
17051
16860
|
export var makeLevyComponent = function () { return factories['io.flow.v0.enums.levy_component'](); };
|
|
16861
|
+
export var makeLevyInclusion = function () { return factories['io.flow.v0.enums.levy_inclusion'](); };
|
|
17052
16862
|
export var makeLevyStrategy = function () { return factories['io.flow.v0.enums.levy_strategy'](); };
|
|
17053
16863
|
export var makeLine = function () { return factories['io.flow.v0.models.line'](); };
|
|
17054
16864
|
export var makeLineItem = function () { return factories['io.flow.v0.models.line_item'](); };
|
|
@@ -17168,7 +16978,6 @@ export var makeOrderBuilderSelectionsForm = function () { return factories['io.f
|
|
|
17168
16978
|
export var makeOrderChangeSource = function () { return factories['io.flow.v0.enums.order_change_source'](); };
|
|
17169
16979
|
export var makeOrderCustomer = function () { return factories['io.flow.v0.models.order_customer'](); };
|
|
17170
16980
|
export var makeOrderCustomerForm = function () { return factories['io.flow.v0.models.order_customer_form'](); };
|
|
17171
|
-
export var makeOrderDeleted = function () { return factories['io.flow.v0.models.order_deleted'](); };
|
|
17172
16981
|
export var makeOrderDeletedV2 = function () { return factories['io.flow.v0.models.order_deleted_v2'](); };
|
|
17173
16982
|
export var makeOrderDestinationPutForm = function () { return factories['io.flow.v0.models.order_destination_put_form'](); };
|
|
17174
16983
|
export var makeOrderDetails = function () { return factories['io.flow.v0.models.order_details'](); };
|
|
@@ -17181,12 +16990,9 @@ export var makeOrderForm = function () { return factories['io.flow.v0.models.ord
|
|
|
17181
16990
|
export var makeOrderFraudStatus = function () { return factories['io.flow.v0.models.order_fraud_status'](); };
|
|
17182
16991
|
export var makeOrderGeo = function () { return factories['io.flow.v0.models.order_geo'](); };
|
|
17183
16992
|
export var makeOrderIdentifier = function () { return factories['io.flow.v0.models.order_identifier'](); };
|
|
17184
|
-
export var makeOrderIdentifierDeleted = function () { return factories['io.flow.v0.models.order_identifier_deleted'](); };
|
|
17185
16993
|
export var makeOrderIdentifierDeletedV2 = function () { return factories['io.flow.v0.models.order_identifier_deleted_v2'](); };
|
|
17186
16994
|
export var makeOrderIdentifierForm = function () { return factories['io.flow.v0.models.order_identifier_form'](); };
|
|
17187
16995
|
export var makeOrderIdentifierPutForm = function () { return factories['io.flow.v0.models.order_identifier_put_form'](); };
|
|
17188
|
-
export var makeOrderIdentifierUpserted = function () { return factories['io.flow.v0.models.order_identifier_upserted'](); };
|
|
17189
|
-
export var makeOrderIdentifierUpsertedV2 = function () { return factories['io.flow.v0.models.order_identifier_upserted_v2'](); };
|
|
17190
16996
|
export var makeOrderIdentifierUpsertedV3 = function () { return factories['io.flow.v0.models.order_identifier_upserted_v3'](); };
|
|
17191
16997
|
export var makeOrderIdentifierVersion = function () { return factories['io.flow.v0.models.order_identifier_version'](); };
|
|
17192
16998
|
export var makeOrderInformation = function () { return factories['io.flow.v0.unions.order_information'](); };
|
|
@@ -17227,14 +17033,11 @@ export var makeOrderRefundSummaryPartialCharged = function () { return factories
|
|
|
17227
17033
|
export var makeOrderRefundSummaryPartialForm = function () { return factories['io.flow.v0.models.order_refund_summary_partial_form'](); };
|
|
17228
17034
|
export var makeOrderRefundSummaryPartialIncludes = function () { return factories['io.flow.v0.models.order_refund_summary_partial_includes'](); };
|
|
17229
17035
|
export var makeOrderReplacement = function () { return factories['io.flow.v0.models.order_replacement'](); };
|
|
17230
|
-
export var makeOrderReplacementDeleted = function () { return factories['io.flow.v0.models.order_replacement_deleted'](); };
|
|
17231
17036
|
export var makeOrderReplacementForm = function () { return factories['io.flow.v0.models.order_replacement_form'](); };
|
|
17232
|
-
export var makeOrderReplacementUpserted = function () { return factories['io.flow.v0.models.order_replacement_upserted'](); };
|
|
17233
17037
|
export var makeOrderRuleReference = function () { return factories['io.flow.v0.models.order_rule_reference'](); };
|
|
17234
17038
|
export var makeOrderRulesSummary = function () { return factories['io.flow.v0.models.order_rules_summary'](); };
|
|
17235
17039
|
export var makeOrderServiceChange = function () { return factories['io.flow.v0.models.order_service_change'](); };
|
|
17236
17040
|
export var makeOrderServiceChangeForm = function () { return factories['io.flow.v0.models.order_service_change_form'](); };
|
|
17237
|
-
export var makeOrderServiceChangeRequest = function () { return factories['io.flow.v0.models.order_service_change_request'](); };
|
|
17238
17041
|
export var makeOrderServiceChangeRequestData = function () { return factories['io.flow.v0.models.order_service_change_request_data'](); };
|
|
17239
17042
|
export var makeOrderStatus = function () { return factories['io.flow.v0.enums.order_status'](); };
|
|
17240
17043
|
export var makeOrderStorage = function () { return factories['io.flow.v0.enums.order_storage'](); };
|
|
@@ -17247,7 +17050,6 @@ export var makeOrderSummaryLevy = function () { return factories['io.flow.v0.mod
|
|
|
17247
17050
|
export var makeOrderSummaryLineItem = function () { return factories['io.flow.v0.models.order_summary_line_item'](); };
|
|
17248
17051
|
export var makeOrderSummaryPriceDetail = function () { return factories['io.flow.v0.models.order_summary_price_detail'](); };
|
|
17249
17052
|
export var makeOrderType = function () { return factories['io.flow.v0.enums.order_type'](); };
|
|
17250
|
-
export var makeOrderUpserted = function () { return factories['io.flow.v0.models.order_upserted'](); };
|
|
17251
17053
|
export var makeOrderUpsertedV2 = function () { return factories['io.flow.v0.models.order_upserted_v2'](); };
|
|
17252
17054
|
export var makeOrderVersion = function () { return factories['io.flow.v0.models.order_version'](); };
|
|
17253
17055
|
export var makeOrderWithDiscountsForm = function () { return factories['io.flow.v0.models.order_with_discounts_form'](); };
|
|
@@ -17480,6 +17282,7 @@ export var makePhysicalDeliveryPreferredService = function () { return factories
|
|
|
17480
17282
|
export var makePhysicalDeliverySpecialSerivce = function () { return factories['io.flow.v0.enums.physical_delivery_special_serivce'](); };
|
|
17481
17283
|
export var makePostPaymentRedirectUrls = function () { return factories['io.flow.v0.models.post_payment_redirect_urls'](); };
|
|
17482
17284
|
export var makePostalType = function () { return factories['io.flow.v0.enums.postal_type'](); };
|
|
17285
|
+
export var makePreferentialRateEligibility = function () { return factories['io.flow.v0.enums.preferential_rate_eligibility'](); };
|
|
17483
17286
|
export var makePreferredServiceSelectionStrategy = function () { return factories['io.flow.v0.enums.preferred_service_selection_strategy'](); };
|
|
17484
17287
|
export var makePrice = function () { return factories['io.flow.v0.models.price'](); };
|
|
17485
17288
|
export var makePriceAccuracy = function () { return factories['io.flow.v0.enums.price_accuracy'](); };
|
|
@@ -17513,10 +17316,8 @@ export var makePriceSourceProvided = function () { return factories['io.flow.v0.
|
|
|
17513
17316
|
export var makePriceWithBase = function () { return factories['io.flow.v0.models.price_with_base'](); };
|
|
17514
17317
|
export var makePriceWithBaseAndDetails = function () { return factories['io.flow.v0.models.price_with_base_and_details'](); };
|
|
17515
17318
|
export var makePricing = function () { return factories['io.flow.v0.models.pricing'](); };
|
|
17516
|
-
export var makePricingDeleted = function () { return factories['io.flow.v0.models.pricing_deleted'](); };
|
|
17517
17319
|
export var makePricingLevySetting = function () { return factories['io.flow.v0.enums.pricing_levy_setting'](); };
|
|
17518
17320
|
export var makePricingSettings = function () { return factories['io.flow.v0.models.pricing_settings'](); };
|
|
17519
|
-
export var makePricingUpserted = function () { return factories['io.flow.v0.models.pricing_upserted'](); };
|
|
17520
17321
|
export var makePricingVersion = function () { return factories['io.flow.v0.models.pricing_version'](); };
|
|
17521
17322
|
export var makeProcessingEstimate = function () { return factories['io.flow.v0.models.processing_estimate'](); };
|
|
17522
17323
|
export var makeProduct = function () { return factories['io.flow.v0.models.product'](); };
|
|
@@ -17526,6 +17327,8 @@ export var makeProductRestrictionResult = function () { return factories['io.flo
|
|
|
17526
17327
|
export var makeProductRestrictionResultDeleted = function () { return factories['io.flow.v0.models.product_restriction_result_deleted'](); };
|
|
17527
17328
|
export var makeProductRestrictionResultUpserted = function () { return factories['io.flow.v0.models.product_restriction_result_upserted'](); };
|
|
17528
17329
|
export var makeProductRestrictionRule = function () { return factories['io.flow.v0.enums.product_restriction_rule'](); };
|
|
17330
|
+
export var makeProductSellability = function () { return factories['io.flow.v0.models.product_sellability'](); };
|
|
17331
|
+
export var makeProductSellabilityForm = function () { return factories['io.flow.v0.models.product_sellability_form'](); };
|
|
17529
17332
|
export var makeProductTaxonomyCategory = function () { return factories['io.flow.v0.models.product_taxonomy_category'](); };
|
|
17530
17333
|
export var makeProductTaxonomyData = function () { return factories['io.flow.v0.models.product_taxonomy_data'](); };
|
|
17531
17334
|
export var makeProductUpdated = function () { return factories['io.flow.v0.models.product_updated'](); };
|
|
@@ -17672,6 +17475,9 @@ export var makeRounding = function () { return factories['io.flow.v0.models.roun
|
|
|
17672
17475
|
export var makeRoundingMethod = function () { return factories['io.flow.v0.enums.rounding_method'](); };
|
|
17673
17476
|
export var makeRoundingType = function () { return factories['io.flow.v0.enums.rounding_type'](); };
|
|
17674
17477
|
export var makeRouteAudit = function () { return factories['io.flow.v0.models.route_audit'](); };
|
|
17478
|
+
export var makeRuleEffectType = function () { return factories['io.flow.v0.enums.rule_effect_type'](); };
|
|
17479
|
+
export var makeSarveshItemDeleted = function () { return factories['io.flow.v0.models.sarvesh_item_deleted'](); };
|
|
17480
|
+
export var makeSarveshItemUpserted = function () { return factories['io.flow.v0.models.sarvesh_item_upserted'](); };
|
|
17675
17481
|
export var makeSchedule = function () { return factories['io.flow.v0.models.schedule'](); };
|
|
17676
17482
|
export var makeScheduleExceptionStatus = function () { return factories['io.flow.v0.enums.schedule_exception_status'](); };
|
|
17677
17483
|
export var makeScheduledExport = function () { return factories['io.flow.v0.models.scheduled_export'](); };
|
|
@@ -17681,6 +17487,11 @@ export var makeSdkAdyenV3AuthenticationToken = function () { return factories['i
|
|
|
17681
17487
|
export var makeSecurityRatecardFee = function () { return factories['io.flow.v0.models.security_ratecard_fee'](); };
|
|
17682
17488
|
export var makeSecurityServiceFee = function () { return factories['io.flow.v0.models.security_service_fee'](); };
|
|
17683
17489
|
export var makeSelectIssuerOptionActionDetails = function () { return factories['io.flow.v0.models.select_issuer_option_action_details'](); };
|
|
17490
|
+
export var makeSellabilityError = function () { return factories['io.flow.v0.models.sellability_error'](); };
|
|
17491
|
+
export var makeSellabilityErrorCode = function () { return factories['io.flow.v0.enums.sellability_error_code'](); };
|
|
17492
|
+
export var makeSellabilityRequestStatus = function () { return factories['io.flow.v0.enums.sellability_request_status'](); };
|
|
17493
|
+
export var makeSellabilityResponse = function () { return factories['io.flow.v0.unions.sellability_response'](); };
|
|
17494
|
+
export var makeSellablilityRegionResult = function () { return factories['io.flow.v0.models.sellablility_region_result'](); };
|
|
17684
17495
|
export var makeServiceDescription = function () { return factories['io.flow.v0.unions.service_description'](); };
|
|
17685
17496
|
export var makeServiceFee = function () { return factories['io.flow.v0.unions.service_fee'](); };
|
|
17686
17497
|
export var makeServiceReference = function () { return factories['io.flow.v0.models.service_reference'](); };
|
|
@@ -17805,6 +17616,7 @@ export var makeStatementDeleted = function () { return factories['io.flow.v0.mod
|
|
|
17805
17616
|
export var makeStatementUpserted = function () { return factories['io.flow.v0.models.statement_upserted'](); };
|
|
17806
17617
|
export var makeStoredMethodUsageStep = function () { return factories['io.flow.v0.enums.stored_method_usage_step'](); };
|
|
17807
17618
|
export var makeStrategy = function () { return factories['io.flow.v0.enums.strategy'](); };
|
|
17619
|
+
export var makeStreetAddress = function () { return factories['io.flow.v0.models.street_address'](); };
|
|
17808
17620
|
export var makeStripeAuthenticationData = function () { return factories['io.flow.v0.models.stripe_authentication_data'](); };
|
|
17809
17621
|
export var makeStripeAuthenticationDataForm = function () { return factories['io.flow.v0.models.stripe_authentication_data_form'](); };
|
|
17810
17622
|
export var makeStripeAuthorizationResultActionDetails = function () { return factories['io.flow.v0.models.stripe_authorization_result_action_details'](); };
|
|
@@ -17832,6 +17644,18 @@ export var makeSurchargeSetting = function () { return factories['io.flow.v0.mod
|
|
|
17832
17644
|
export var makeSurchargeSettingDisplay = function () { return factories['io.flow.v0.models.surcharge_setting_display'](); };
|
|
17833
17645
|
export var makeTax = function () { return factories['io.flow.v0.models.tax'](); };
|
|
17834
17646
|
export var makeTaxApplicability = function () { return factories['io.flow.v0.enums.tax_applicability'](); };
|
|
17647
|
+
export var makeTaxDutyCalculatorValidationError = function () { return factories['io.flow.v0.models.tax_duty_calculator_validation_error'](); };
|
|
17648
|
+
export var makeTaxDutyCalculatorValidationErrorCode = function () { return factories['io.flow.v0.enums.tax_duty_calculator_validation_error_code'](); };
|
|
17649
|
+
export var makeTaxDutyQuote = function () { return factories['io.flow.v0.models.tax_duty_quote'](); };
|
|
17650
|
+
export var makeTaxDutyQuoteFeeValue = function () { return factories['io.flow.v0.models.tax_duty_quote_fee_value'](); };
|
|
17651
|
+
export var makeTaxDutyQuoteForm = function () { return factories['io.flow.v0.models.tax_duty_quote_form'](); };
|
|
17652
|
+
export var makeTaxDutyQuoteLevyValue = function () { return factories['io.flow.v0.unions.tax_duty_quote_levy_value'](); };
|
|
17653
|
+
export var makeTaxDutyQuoteLineItem = function () { return factories['io.flow.v0.models.tax_duty_quote_line_item'](); };
|
|
17654
|
+
export var makeTaxDutyQuoteLineItemForm = function () { return factories['io.flow.v0.models.tax_duty_quote_line_item_form'](); };
|
|
17655
|
+
export var makeTaxDutyQuoteSimpleLevyValue = function () { return factories['io.flow.v0.models.tax_duty_quote_simple_levy_value'](); };
|
|
17656
|
+
export var makeTaxDutyQuoteSimpleShipping = function () { return factories['io.flow.v0.models.tax_duty_quote_simple_shipping'](); };
|
|
17657
|
+
export var makeTaxDutyQuoteSimpleShippingForm = function () { return factories['io.flow.v0.models.tax_duty_quote_simple_shipping_form'](); };
|
|
17658
|
+
export var makeTaxDutyQuoteValues = function () { return factories['io.flow.v0.models.tax_duty_quote_values'](); };
|
|
17835
17659
|
export var makeTaxDutyTransactionReasonCode = function () { return factories['io.flow.v0.enums.tax_duty_transaction_reason_code'](); };
|
|
17836
17660
|
export var makeTaxRegistration = function () { return factories['io.flow.v0.models.tax_registration'](); };
|
|
17837
17661
|
export var makeTaxRegistrationForm = function () { return factories['io.flow.v0.models.tax_registration_form'](); };
|
|
@@ -17986,4 +17810,5 @@ export var makeWebhookStatus = function () { return factories['io.flow.v0.enums.
|
|
|
17986
17810
|
export var makeWithholdingDeduction = function () { return factories['io.flow.v0.models.withholding_deduction'](); };
|
|
17987
17811
|
export var makeWithholdingDeductionType = function () { return factories['io.flow.v0.enums.withholding_deduction_type'](); };
|
|
17988
17812
|
export var makeZeroAmountIndicator = function () { return factories['io.flow.v0.enums.zero_amount_indicator'](); };
|
|
17813
|
+
export var makeZeroLevyReasonCode = function () { return factories['io.flow.v0.enums.zero_levy_reason_code'](); };
|
|
17989
17814
|
export var makeZone = function () { return factories['io.flow.v0.models.zone'](); };
|