@flowio/api-factories 0.0.118 → 0.0.121
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 +302 -42
- package/dist/esm/api.js +246 -7
- package/dist/types/api.d.ts +21 -0
- package/package.json +2 -3
- package/src/api.ts +280 -7
package/dist/esm/api.js
CHANGED
|
@@ -96,6 +96,11 @@ var factories = {
|
|
|
96
96
|
organization_ids: arrayOf(function () { return factories.string(); }),
|
|
97
97
|
num_events: factories.long(),
|
|
98
98
|
}); },
|
|
99
|
+
'io.flow.ben.test.internal.v0.models.generate_load_rate': function () { return ({
|
|
100
|
+
organization_ids: arrayOf(function () { return factories.string(); }),
|
|
101
|
+
events_per_second: factories.long(),
|
|
102
|
+
duration_seconds: factories.long(),
|
|
103
|
+
}); },
|
|
99
104
|
'io.flow.ben.test.internal.v0.models.generate_load_single_org': function () { return ({
|
|
100
105
|
discriminator: 'generate_load_single_org',
|
|
101
106
|
organization_id: factories.string(),
|
|
@@ -522,6 +527,7 @@ var factories = {
|
|
|
522
527
|
'io.flow.common.v0.models.line_item_form': function () { return ({
|
|
523
528
|
number: factories.string(),
|
|
524
529
|
quantity: factories.long(),
|
|
530
|
+
line_item_identifier: factories.string(),
|
|
525
531
|
shipment_estimate: factories['io.flow.common.v0.models.datetime_range'](),
|
|
526
532
|
price: factories['io.flow.common.v0.models.money'](),
|
|
527
533
|
attributes: objectOf(function () { return factories.string(); }),
|
|
@@ -3638,6 +3644,57 @@ var factories = {
|
|
|
3638
3644
|
]);
|
|
3639
3645
|
return f();
|
|
3640
3646
|
},
|
|
3647
|
+
'io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
3648
|
+
'io.flow.tech.onboarding.playground.v0.enums.chenglin_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
3649
|
+
'io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
3650
|
+
'io.flow.tech.onboarding.playground.v0.models.amrutha_item': function () { return ({
|
|
3651
|
+
id: factories.string(),
|
|
3652
|
+
number: factories.string(),
|
|
3653
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
3654
|
+
description: factories.string(),
|
|
3655
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'](),
|
|
3656
|
+
added_on: factories.date_time_iso_8601(),
|
|
3657
|
+
}); },
|
|
3658
|
+
'io.flow.tech.onboarding.playground.v0.models.amrutha_item_form': function () { return ({
|
|
3659
|
+
number: factories.string(),
|
|
3660
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
3661
|
+
description: factories.string(),
|
|
3662
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'](),
|
|
3663
|
+
added_on: factories.date_time_iso_8601(),
|
|
3664
|
+
}); },
|
|
3665
|
+
'io.flow.tech.onboarding.playground.v0.models.chenglin_item': function () { return ({
|
|
3666
|
+
id: factories.string(),
|
|
3667
|
+
number: factories.string(),
|
|
3668
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
3669
|
+
description: factories.string(),
|
|
3670
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'](),
|
|
3671
|
+
added_on: factories.date_iso_8601(),
|
|
3672
|
+
}); },
|
|
3673
|
+
'io.flow.tech.onboarding.playground.v0.models.chenglin_item_form': function () { return ({
|
|
3674
|
+
number: factories.string(),
|
|
3675
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
3676
|
+
description: factories.string(),
|
|
3677
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'](),
|
|
3678
|
+
added_on: factories.date_iso_8601(),
|
|
3679
|
+
}); },
|
|
3680
|
+
'io.flow.tech.onboarding.playground.v0.models.gabriel_item': function () { return ({
|
|
3681
|
+
id: factories.string(),
|
|
3682
|
+
number: factories.string(),
|
|
3683
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
3684
|
+
description: factories.string(),
|
|
3685
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'](),
|
|
3686
|
+
added_on: factories.date_iso_8601(),
|
|
3687
|
+
}); },
|
|
3688
|
+
'io.flow.tech.onboarding.playground.v0.models.gabriel_item_form': function () { return ({
|
|
3689
|
+
number: factories.string(),
|
|
3690
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
3691
|
+
description: factories.string(),
|
|
3692
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'](),
|
|
3693
|
+
added_on: factories.date_iso_8601(),
|
|
3694
|
+
}); },
|
|
3695
|
+
'io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description': function () { return ({
|
|
3696
|
+
description: factories.string(),
|
|
3697
|
+
}); },
|
|
3641
3698
|
'io.flow.v0.enums.abandoned_order_promotion_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
|
|
3642
3699
|
'io.flow.v0.enums.abandoned_order_setting_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
|
|
3643
3700
|
'io.flow.v0.enums.address_field_name': function () { return faker.helpers.arrayElement([
|
|
@@ -3825,6 +3882,8 @@ var factories = {
|
|
|
3825
3882
|
'io.flow.v0.enums.event_type': function () { return faker.helpers.arrayElement([
|
|
3826
3883
|
'test_upserted',
|
|
3827
3884
|
'generate_load',
|
|
3885
|
+
'amrutha_item_upserted',
|
|
3886
|
+
'amrutha_item_deleted',
|
|
3828
3887
|
'transaction_upserted',
|
|
3829
3888
|
'organization_transaction_upserted',
|
|
3830
3889
|
'organization_transaction_deleted',
|
|
@@ -3885,6 +3944,8 @@ var factories = {
|
|
|
3885
3944
|
'order_upserted_v2',
|
|
3886
3945
|
'order_identifier_deleted_v2',
|
|
3887
3946
|
'order_identifier_upserted_v3',
|
|
3947
|
+
'order_state_upserted',
|
|
3948
|
+
'order_state_deleted',
|
|
3888
3949
|
'fraud_status_changed',
|
|
3889
3950
|
'center_upserted',
|
|
3890
3951
|
'center_deleted',
|
|
@@ -3909,6 +3970,8 @@ var factories = {
|
|
|
3909
3970
|
'item_origin_deleted',
|
|
3910
3971
|
'harmonized_landed_cost_upserted',
|
|
3911
3972
|
'fully_harmonized_item_upserted',
|
|
3973
|
+
'tariff_codes_upserted',
|
|
3974
|
+
'tariff_codes_deleted',
|
|
3912
3975
|
'label_deleted_v2',
|
|
3913
3976
|
'label_upserted_v2',
|
|
3914
3977
|
'notification_upserted_v2',
|
|
@@ -4010,6 +4073,7 @@ var factories = {
|
|
|
4010
4073
|
'transfer',
|
|
4011
4074
|
'negative_balance_guarantee',
|
|
4012
4075
|
'sp',
|
|
4076
|
+
'rev_share',
|
|
4013
4077
|
]); },
|
|
4014
4078
|
'io.flow.v0.enums.flow_behavior': function () { return faker.helpers.arrayElement(['view_consumer_data']); },
|
|
4015
4079
|
'io.flow.v0.enums.flow_entity': function () { return faker.helpers.arrayElement(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa', 'ge-can', 'ge-gbr', 'ge-irl']); },
|
|
@@ -4087,6 +4151,7 @@ var factories = {
|
|
|
4087
4151
|
'notification_requiring_crossdock',
|
|
4088
4152
|
'flow_simulation_sync',
|
|
4089
4153
|
'autogenerated',
|
|
4154
|
+
'legacy_shopify_graphql_server',
|
|
4090
4155
|
]); },
|
|
4091
4156
|
'io.flow.v0.enums.label_trigger_method': function () { return faker.helpers.arrayElement(['autogenerated', 'on_demand']); },
|
|
4092
4157
|
'io.flow.v0.enums.lane_direction': function () { return faker.helpers.arrayElement(['outbound', 'return']); },
|
|
@@ -4229,6 +4294,7 @@ var factories = {
|
|
|
4229
4294
|
'io.flow.v0.enums.order_price_fee_type': function () { return faker.helpers.arrayElement(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product']); },
|
|
4230
4295
|
'io.flow.v0.enums.order_refund_summary_includes': function () { return faker.helpers.arrayElement(['duties', 'vat', 'shipping']); },
|
|
4231
4296
|
'io.flow.v0.enums.order_refund_summary_partial_charged': function () { return faker.helpers.arrayElement(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']); },
|
|
4297
|
+
'io.flow.v0.enums.order_state_status': function () { return faker.helpers.arrayElement(['pending', 'accepted', 'rejected']); },
|
|
4232
4298
|
'io.flow.v0.enums.order_status': function () { return faker.helpers.arrayElement(['open', 'submitted']); },
|
|
4233
4299
|
'io.flow.v0.enums.order_storage': function () { return faker.helpers.arrayElement(['do_not_persist', 'persist']); },
|
|
4234
4300
|
'io.flow.v0.enums.order_type': function () { return faker.helpers.arrayElement(['standard', 'replacement', 'edit']); },
|
|
@@ -4282,7 +4348,7 @@ var factories = {
|
|
|
4282
4348
|
'error',
|
|
4283
4349
|
'payment_checks_declined',
|
|
4284
4350
|
]); },
|
|
4285
|
-
'io.flow.v0.enums.payment_fee_type': function () { return faker.helpers.arrayElement(['fx', 'mor', 'sp']); },
|
|
4351
|
+
'io.flow.v0.enums.payment_fee_type': function () { return faker.helpers.arrayElement(['fx', 'mor', 'sp', 'mor_tax']); },
|
|
4286
4352
|
'io.flow.v0.enums.payment_method_capability': function () { return faker.helpers.arrayElement(['credit', 'debit']); },
|
|
4287
4353
|
'io.flow.v0.enums.payment_method_data_option_type': function () { return faker.helpers.arrayElement(['ideal_issuer_option']); },
|
|
4288
4354
|
'io.flow.v0.enums.payment_method_rule_content_key': function () { return faker.helpers.arrayElement(['description']); },
|
|
@@ -4379,6 +4445,7 @@ var factories = {
|
|
|
4379
4445
|
'io.flow.v0.enums.price_detail_key': function () { return faker.helpers.arrayElement(['item_price', 'margins', 'vat', 'duty', 'rounding', 'adjustment']); },
|
|
4380
4446
|
'io.flow.v0.enums.price_facet_boundary': function () { return faker.helpers.arrayElement(['min', 'max']); },
|
|
4381
4447
|
'io.flow.v0.enums.pricing_levy_setting': function () { return faker.helpers.arrayElement(['included', 'displayed', 'ignored']); },
|
|
4448
|
+
'io.flow.v0.enums.pricing_type': function () { return faker.helpers.arrayElement(['inclusive_pricing']); },
|
|
4382
4449
|
'io.flow.v0.enums.promotion_trigger_type': function () { return faker.helpers.arrayElement(['automatic', 'order_subtotal']); },
|
|
4383
4450
|
'io.flow.v0.enums.province_type': function () { return faker.helpers.arrayElement([
|
|
4384
4451
|
'area',
|
|
@@ -4471,7 +4538,14 @@ var factories = {
|
|
|
4471
4538
|
'external_service_unavailable',
|
|
4472
4539
|
]); },
|
|
4473
4540
|
'io.flow.v0.enums.sellability_request_status': function () { return faker.helpers.arrayElement(['commit']); },
|
|
4474
|
-
'io.flow.v0.enums.sellability_result_error_code': function () { return faker.helpers.arrayElement([
|
|
4541
|
+
'io.flow.v0.enums.sellability_result_error_code': function () { return faker.helpers.arrayElement([
|
|
4542
|
+
'insufficient_details',
|
|
4543
|
+
'ineligible_category',
|
|
4544
|
+
'wait_for_high_fidelity',
|
|
4545
|
+
'external_service_unavailable',
|
|
4546
|
+
'generic_error',
|
|
4547
|
+
'catalog_processing_threshold',
|
|
4548
|
+
]); },
|
|
4475
4549
|
'io.flow.v0.enums.sellability_result_status': function () { return faker.helpers.arrayElement(['in_review', 'succeeded', 'failed']); },
|
|
4476
4550
|
'io.flow.v0.enums.sellability_screening_mode': function () { return faker.helpers.arrayElement(['pre_onboarding', 'default_on', 'active']); },
|
|
4477
4551
|
'io.flow.v0.enums.shipment_integration_type': function () { return faker.helpers.arrayElement(['direct', 'information', 'preadvice']); },
|
|
@@ -4580,6 +4654,7 @@ var factories = {
|
|
|
4580
4654
|
'wyol_shipment_above_de_min',
|
|
4581
4655
|
'full_refund_without_shipment',
|
|
4582
4656
|
'unfulfilled_order_above_de_min',
|
|
4657
|
+
'order_cancellation_without_capture',
|
|
4583
4658
|
]); },
|
|
4584
4659
|
'io.flow.v0.enums.tax_jurisdiction_type': function () { return faker.helpers.arrayElement(['country', 'province']); },
|
|
4585
4660
|
'io.flow.v0.enums.tax_report_type': function () { return faker.helpers.arrayElement(['consumer', 'b2b']); },
|
|
@@ -4646,6 +4721,7 @@ var factories = {
|
|
|
4646
4721
|
'merchant_fee',
|
|
4647
4722
|
'b2b_tax',
|
|
4648
4723
|
'b2b_tax_refund',
|
|
4724
|
+
'b2b_fee_mor_tax',
|
|
4649
4725
|
]); },
|
|
4650
4726
|
'io.flow.v0.enums.transfer_status': function () { return faker.helpers.arrayElement(['succeeded', 'canceled']); },
|
|
4651
4727
|
'io.flow.v0.enums.transfer_type': function () { return faker.helpers.arrayElement([
|
|
@@ -5093,6 +5169,18 @@ var factories = {
|
|
|
5093
5169
|
discriminator: 'amount_margin_form',
|
|
5094
5170
|
margin: factories['io.flow.v0.models.money'](),
|
|
5095
5171
|
}); },
|
|
5172
|
+
'io.flow.v0.models.amrutha_item_deleted': function () { return ({
|
|
5173
|
+
discriminator: 'amrutha_item_deleted',
|
|
5174
|
+
event_id: factories.string(),
|
|
5175
|
+
timestamp: factories.date_time_iso_8601(),
|
|
5176
|
+
id: factories.string(),
|
|
5177
|
+
}); },
|
|
5178
|
+
'io.flow.v0.models.amrutha_item_upserted': function () { return ({
|
|
5179
|
+
discriminator: 'amrutha_item_upserted',
|
|
5180
|
+
event_id: factories.string(),
|
|
5181
|
+
timestamp: factories.date_time_iso_8601(),
|
|
5182
|
+
item: factories['io.flow.tech.onboarding.playground.v0.models.amrutha_item'](),
|
|
5183
|
+
}); },
|
|
5096
5184
|
'io.flow.v0.models.analytics_export_type': function () { return ({
|
|
5097
5185
|
discriminator: 'analytics_export_type',
|
|
5098
5186
|
from: factories.date_time_iso_8601(),
|
|
@@ -5354,6 +5442,7 @@ var factories = {
|
|
|
5354
5442
|
b2b_invoice_type: factories['io.flow.v0.enums.b2b_invoice_type'](),
|
|
5355
5443
|
center: factories['io.flow.v0.models.consumer_invoice_center_reference'](),
|
|
5356
5444
|
order: factories['io.flow.v0.models.consumer_invoice_order_summary'](),
|
|
5445
|
+
voids_b2b_invoice: factories.boolean(),
|
|
5357
5446
|
}); },
|
|
5358
5447
|
'io.flow.v0.models.b2b_credit_memo_deleted': function () { return ({
|
|
5359
5448
|
discriminator: 'b2b_credit_memo_deleted',
|
|
@@ -5437,6 +5526,17 @@ var factories = {
|
|
|
5437
5526
|
swift_code: factories.string(),
|
|
5438
5527
|
iban: factories.string(),
|
|
5439
5528
|
}); },
|
|
5529
|
+
'io.flow.v0.models.bank_account_info_kor': function () { return ({
|
|
5530
|
+
discriminator: 'kor',
|
|
5531
|
+
name: factories.string(),
|
|
5532
|
+
address: factories['io.flow.v0.models.address'](),
|
|
5533
|
+
phone: factories.string(),
|
|
5534
|
+
email: factories.string(),
|
|
5535
|
+
bank_account_number: factories.string(),
|
|
5536
|
+
bank_routing_number: factories.string(),
|
|
5537
|
+
bank_name: factories.string(),
|
|
5538
|
+
bank_address: factories['io.flow.v0.models.address'](),
|
|
5539
|
+
}); },
|
|
5440
5540
|
'io.flow.v0.models.bank_account_info_usa': function () { return ({
|
|
5441
5541
|
discriminator: 'usa',
|
|
5442
5542
|
routing_number: factories.string(),
|
|
@@ -6284,7 +6384,6 @@ var factories = {
|
|
|
6284
6384
|
beneficiary_details: factories['io.flow.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
6285
6385
|
other_trade_sector: factories.string(),
|
|
6286
6386
|
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
6287
|
-
center_address: factories['io.flow.v0.models.address'](),
|
|
6288
6387
|
average_order_weight: factories.decimal(),
|
|
6289
6388
|
average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
6290
6389
|
package_dimensions: arrayOf(function () { return factories['io.flow.v0.models.dimension'](); }),
|
|
@@ -6292,6 +6391,7 @@ var factories = {
|
|
|
6292
6391
|
default_country_of_origin: factories.string(),
|
|
6293
6392
|
rate_card: factories.string(),
|
|
6294
6393
|
shop: factories['io.flow.v0.models.shop'](),
|
|
6394
|
+
settlement_currency: factories.string(),
|
|
6295
6395
|
created_at: factories.date_time_iso_8601(),
|
|
6296
6396
|
last_year_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
6297
6397
|
last_month_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
@@ -6311,7 +6411,6 @@ var factories = {
|
|
|
6311
6411
|
beneficiary_details: factories['io.flow.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
6312
6412
|
other_trade_sector: factories.string(),
|
|
6313
6413
|
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
6314
|
-
center_address: factories['io.flow.v0.models.address'](),
|
|
6315
6414
|
average_order_weight: factories.decimal(),
|
|
6316
6415
|
average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
6317
6416
|
package_dimensions: arrayOf(function () { return factories['io.flow.v0.models.dimension'](); }),
|
|
@@ -6320,6 +6419,7 @@ var factories = {
|
|
|
6320
6419
|
monthly_average_number_transactions: factories.long(),
|
|
6321
6420
|
default_country_of_origin: factories.string(),
|
|
6322
6421
|
shop: factories['io.flow.v0.models.shop'](),
|
|
6422
|
+
settlement_currency: factories.string(),
|
|
6323
6423
|
rate_card: factories.string(),
|
|
6324
6424
|
last_year_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
6325
6425
|
last_month_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
@@ -7887,6 +7987,10 @@ var factories = {
|
|
|
7887
7987
|
destination: factories.string(),
|
|
7888
7988
|
sort: factories.string(),
|
|
7889
7989
|
}); },
|
|
7990
|
+
'io.flow.v0.models.harmonization_tariff_code': function () { return ({
|
|
7991
|
+
tariff_code: factories.string(),
|
|
7992
|
+
destination: factories.string(),
|
|
7993
|
+
}); },
|
|
7890
7994
|
'io.flow.v0.models.harmonization_tariff_codes_export_type': function () { return ({
|
|
7891
7995
|
discriminator: 'harmonization_tariff_codes_export_type',
|
|
7892
7996
|
sort: factories.string(),
|
|
@@ -9082,6 +9186,7 @@ var factories = {
|
|
|
9082
9186
|
company: factories.string(),
|
|
9083
9187
|
email: factories.string(),
|
|
9084
9188
|
phone: factories.string(),
|
|
9189
|
+
address: factories['io.flow.v0.models.address'](),
|
|
9085
9190
|
}); },
|
|
9086
9191
|
'io.flow.v0.models.option_weight_estimates': function () { return ({
|
|
9087
9192
|
gravitational: factories['io.flow.v0.models.measurement'](),
|
|
@@ -9124,6 +9229,7 @@ var factories = {
|
|
|
9124
9229
|
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
9125
9230
|
edits: arrayOf(function () { return factories['io.flow.v0.models.edit_summary'](); }),
|
|
9126
9231
|
rates: arrayOf(function () { return factories['io.flow.v0.models.order_rate'](); }),
|
|
9232
|
+
pricing_type: factories['io.flow.v0.enums.pricing_type'](),
|
|
9127
9233
|
}); },
|
|
9128
9234
|
'io.flow.v0.models.order_address': function () { return ({
|
|
9129
9235
|
text: factories.string(),
|
|
@@ -9487,6 +9593,42 @@ var factories = {
|
|
|
9487
9593
|
source_url: factories.string(),
|
|
9488
9594
|
filename: factories.string(),
|
|
9489
9595
|
}); },
|
|
9596
|
+
'io.flow.v0.models.order_state': function () { return ({
|
|
9597
|
+
id: factories.string(),
|
|
9598
|
+
order_number: factories.string(),
|
|
9599
|
+
external_order_reference: factories.string(),
|
|
9600
|
+
payment_requests: arrayOf(function () { return factories['io.flow.v0.models.payment_request_reference'](); }),
|
|
9601
|
+
status: factories['io.flow.v0.enums.order_state_status'](),
|
|
9602
|
+
rejection_reasons: arrayOf(function () { return factories['io.flow.v0.unions.order_state_rejection_reason'](); }),
|
|
9603
|
+
}); },
|
|
9604
|
+
'io.flow.v0.models.order_state_deleted': function () { return ({
|
|
9605
|
+
discriminator: 'order_state_deleted',
|
|
9606
|
+
event_id: factories.string(),
|
|
9607
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9608
|
+
organization: factories.string(),
|
|
9609
|
+
channel_id: factories.string(),
|
|
9610
|
+
id: factories.string(),
|
|
9611
|
+
}); },
|
|
9612
|
+
'io.flow.v0.models.order_state_rejection_reason_domestic_order': function () { return ({
|
|
9613
|
+
discriminator: 'order_state_rejection_reason_domestic_order',
|
|
9614
|
+
destination_address: factories['io.flow.v0.models.address'](),
|
|
9615
|
+
}); },
|
|
9616
|
+
'io.flow.v0.models.order_state_rejection_reason_items_empty': function () { return ({
|
|
9617
|
+
discriminator: 'order_state_rejection_reason_items_empty',
|
|
9618
|
+
line_items: arrayOf(function () { return factories.string(); }),
|
|
9619
|
+
}); },
|
|
9620
|
+
'io.flow.v0.models.order_state_rejection_reason_restricted_item': function () { return ({
|
|
9621
|
+
discriminator: 'order_state_rejection_reason_restricted_item',
|
|
9622
|
+
item_numbers: arrayOf(function () { return factories.string(); }),
|
|
9623
|
+
}); },
|
|
9624
|
+
'io.flow.v0.models.order_state_upserted': function () { return ({
|
|
9625
|
+
discriminator: 'order_state_upserted',
|
|
9626
|
+
event_id: factories.string(),
|
|
9627
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9628
|
+
organization: factories.string(),
|
|
9629
|
+
channel_id: factories.string(),
|
|
9630
|
+
order_state: factories['io.flow.v0.models.order_state'](),
|
|
9631
|
+
}); },
|
|
9490
9632
|
'io.flow.v0.models.order_submission_form': function () { return ({
|
|
9491
9633
|
identifiers: arrayOf(function () { return factories['io.flow.v0.models.order_submission_identifier_form'](); }),
|
|
9492
9634
|
}); },
|
|
@@ -10887,6 +11029,10 @@ var factories = {
|
|
|
10887
11029
|
hs_code: factories.string(),
|
|
10888
11030
|
restricted_regions_by_type: arrayOf(function () { return factories['io.flow.v0.models.sellability_region_result'](); }),
|
|
10889
11031
|
needs_action_attributes: arrayOf(function () { return factories['io.flow.v0.models.needs_action_attributes'](); }),
|
|
11032
|
+
fingerprint: factories.string(),
|
|
11033
|
+
restriction_created_at: factories.date_time_iso_8601(),
|
|
11034
|
+
first_reviewed_at: factories.date_time_iso_8601(),
|
|
11035
|
+
seconds_to_first_review: factories.long(),
|
|
10890
11036
|
}); },
|
|
10891
11037
|
'io.flow.v0.models.product_restriction_result_deleted': function () { return ({
|
|
10892
11038
|
discriminator: 'product_restriction_result_deleted',
|
|
@@ -10922,9 +11068,11 @@ var factories = {
|
|
|
10922
11068
|
dry_run: factories.boolean(),
|
|
10923
11069
|
}); },
|
|
10924
11070
|
'io.flow.v0.models.product_sellability_result': function () { return ({
|
|
11071
|
+
id: factories.string(),
|
|
10925
11072
|
merchant_id: factories.string(),
|
|
10926
11073
|
product_id: factories.string(),
|
|
10927
11074
|
restricted_regions: arrayOf(function () { return factories['io.flow.v0.models.sellability_restricted_region'](); }),
|
|
11075
|
+
restricted_reasons: arrayOf(function () { return factories['io.flow.v0.models.sellability_restricted_reason'](); }),
|
|
10928
11076
|
needs_action_attributes: arrayOf(function () { return factories['io.flow.v0.models.sellability_needs_action_attributes'](); }),
|
|
10929
11077
|
request_id: factories.string(),
|
|
10930
11078
|
hs6_code: factories.string(),
|
|
@@ -10934,6 +11082,8 @@ var factories = {
|
|
|
10934
11082
|
event_id: factories.string(),
|
|
10935
11083
|
timestamp: factories.date_time_iso_8601(),
|
|
10936
11084
|
organization: factories.string(),
|
|
11085
|
+
merchant: factories.string(),
|
|
11086
|
+
channel_id: factories.string(),
|
|
10937
11087
|
id: factories.string(),
|
|
10938
11088
|
}); },
|
|
10939
11089
|
'io.flow.v0.models.product_sellability_result_upserted': function () { return ({
|
|
@@ -10941,6 +11091,8 @@ var factories = {
|
|
|
10941
11091
|
event_id: factories.string(),
|
|
10942
11092
|
timestamp: factories.date_time_iso_8601(),
|
|
10943
11093
|
organization: factories.string(),
|
|
11094
|
+
merchant: factories.string(),
|
|
11095
|
+
channel_id: factories.string(),
|
|
10944
11096
|
product_sellability_result: factories['io.flow.v0.models.product_sellability_result'](),
|
|
10945
11097
|
}); },
|
|
10946
11098
|
'io.flow.v0.models.product_taxonomy_category': function () { return ({
|
|
@@ -11136,6 +11288,11 @@ var factories = {
|
|
|
11136
11288
|
id: factories.string(),
|
|
11137
11289
|
name: factories.string(),
|
|
11138
11290
|
}); },
|
|
11291
|
+
'io.flow.v0.models.ratecard_data': function () { return ({
|
|
11292
|
+
dhlParcelDistributionCenter: factories.string(),
|
|
11293
|
+
glbeRatecardMetadataLaneIdentifier: factories.string(),
|
|
11294
|
+
pickupCenter: factories.string(),
|
|
11295
|
+
}); },
|
|
11139
11296
|
'io.flow.v0.models.ratecard_deleted': function () { return ({
|
|
11140
11297
|
discriminator: 'ratecard_deleted',
|
|
11141
11298
|
event_id: factories.string(),
|
|
@@ -11228,7 +11385,7 @@ var factories = {
|
|
|
11228
11385
|
glbe_shipping_method_id: factories.string(),
|
|
11229
11386
|
glbe_proposition_name: factories.string(),
|
|
11230
11387
|
channel_revenue_share_percentage: factories.decimal(),
|
|
11231
|
-
data:
|
|
11388
|
+
data: factories['io.flow.v0.models.ratecard_data'](),
|
|
11232
11389
|
}); },
|
|
11233
11390
|
'io.flow.v0.models.ratecard_lane': function () { return ({
|
|
11234
11391
|
id: factories.string(),
|
|
@@ -11777,8 +11934,14 @@ var factories = {
|
|
|
11777
11934
|
'io.flow.v0.models.sellability_needs_action_attributes': function () { return ({
|
|
11778
11935
|
reason_code: factories.string(),
|
|
11779
11936
|
category_metafield_handles: arrayOf(function () { return factories.string(); }),
|
|
11937
|
+
category_metafield_ids: arrayOf(function () { return factories.string(); }),
|
|
11780
11938
|
require_msds: factories.boolean(),
|
|
11781
11939
|
}); },
|
|
11940
|
+
'io.flow.v0.models.sellability_reason_with_regions': function () { return ({
|
|
11941
|
+
reason: factories.string(),
|
|
11942
|
+
regions: arrayOf(function () { return factories.string(); }),
|
|
11943
|
+
review_status: factories.string(),
|
|
11944
|
+
}); },
|
|
11782
11945
|
'io.flow.v0.models.sellability_region_result': function () { return ({
|
|
11783
11946
|
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
11784
11947
|
regions: arrayOf(function () { return factories.string(); }),
|
|
@@ -11787,13 +11950,17 @@ var factories = {
|
|
|
11787
11950
|
region: factories.string(),
|
|
11788
11951
|
reasons: arrayOf(function () { return factories.string(); }),
|
|
11789
11952
|
}); },
|
|
11953
|
+
'io.flow.v0.models.sellability_restricted_reason': function () { return ({
|
|
11954
|
+
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
11955
|
+
reasons_with_regions: arrayOf(function () { return factories['io.flow.v0.models.sellability_reason_with_regions'](); }),
|
|
11956
|
+
}); },
|
|
11790
11957
|
'io.flow.v0.models.sellability_restricted_region': function () { return ({
|
|
11791
11958
|
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
11792
|
-
|
|
11959
|
+
regions: arrayOf(function () { return factories.string(); }),
|
|
11793
11960
|
}); },
|
|
11794
11961
|
'io.flow.v0.models.sellability_screening': function () { return ({
|
|
11795
11962
|
discriminator: 'sellability_screening',
|
|
11796
|
-
|
|
11963
|
+
product_sellability_result: factories['io.flow.v0.models.product_sellability_result'](),
|
|
11797
11964
|
request_id: factories.string(),
|
|
11798
11965
|
status: factories['io.flow.v0.enums.sellability_result_status'](),
|
|
11799
11966
|
error_code: factories['io.flow.v0.enums.sellability_result_error_code'](),
|
|
@@ -12394,6 +12561,7 @@ var factories = {
|
|
|
12394
12561
|
activated_at: factories.date_time_iso_8601(),
|
|
12395
12562
|
status_updated_at: factories.date_time_iso_8601(),
|
|
12396
12563
|
shop: factories['io.flow.v0.models.shop'](),
|
|
12564
|
+
settlement_currency: factories.string(),
|
|
12397
12565
|
last_year_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
12398
12566
|
last_month_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
12399
12567
|
average_order_value: factories['io.flow.v0.models.money'](),
|
|
@@ -12426,6 +12594,7 @@ var factories = {
|
|
|
12426
12594
|
ratecard_id: factories.string(),
|
|
12427
12595
|
rate_card: factories.string(),
|
|
12428
12596
|
shop: factories['io.flow.v0.models.shop'](),
|
|
12597
|
+
settlement_currency: factories.string(),
|
|
12429
12598
|
last_year_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
12430
12599
|
last_month_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
12431
12600
|
average_order_value: factories['io.flow.v0.models.money'](),
|
|
@@ -12684,6 +12853,26 @@ var factories = {
|
|
|
12684
12853
|
key: factories['io.flow.v0.enums.delivery_option_cost_detail_component_key'](),
|
|
12685
12854
|
available: arrayOf(function () { return factories['io.flow.v0.models.surcharge_responsible_party_display'](); }),
|
|
12686
12855
|
}); },
|
|
12856
|
+
'io.flow.v0.models.tariff_codes': function () { return ({
|
|
12857
|
+
item_number: factories.string(),
|
|
12858
|
+
product_id: factories.string(),
|
|
12859
|
+
hs6_code: factories.string(),
|
|
12860
|
+
codes: arrayOf(function () { return factories['io.flow.v0.models.harmonization_tariff_code'](); }),
|
|
12861
|
+
}); },
|
|
12862
|
+
'io.flow.v0.models.tariff_codes_deleted': function () { return ({
|
|
12863
|
+
discriminator: 'tariff_codes_deleted',
|
|
12864
|
+
event_id: factories.string(),
|
|
12865
|
+
timestamp: factories.date_time_iso_8601(),
|
|
12866
|
+
organization: factories.string(),
|
|
12867
|
+
id: factories.string(),
|
|
12868
|
+
}); },
|
|
12869
|
+
'io.flow.v0.models.tariff_codes_upserted': function () { return ({
|
|
12870
|
+
discriminator: 'tariff_codes_upserted',
|
|
12871
|
+
event_id: factories.string(),
|
|
12872
|
+
timestamp: factories.date_time_iso_8601(),
|
|
12873
|
+
organization: factories.string(),
|
|
12874
|
+
tariff_codes: factories['io.flow.v0.models.tariff_codes'](),
|
|
12875
|
+
}); },
|
|
12687
12876
|
'io.flow.v0.models.tax': function () { return ({
|
|
12688
12877
|
name: factories.string(),
|
|
12689
12878
|
rate: factories.decimal(),
|
|
@@ -12819,6 +13008,8 @@ var factories = {
|
|
|
12819
13008
|
discriminator: 'test_upserted',
|
|
12820
13009
|
event_id: factories.string(),
|
|
12821
13010
|
timestamp: factories.date_time_iso_8601(),
|
|
13011
|
+
organization: factories.string(),
|
|
13012
|
+
channel_id: factories.string(),
|
|
12822
13013
|
test: factories['io.flow.ben.test.internal.v0.models.test'](),
|
|
12823
13014
|
}); },
|
|
12824
13015
|
'io.flow.v0.models.third_party_logistics_partner': function () { return ({
|
|
@@ -13193,6 +13384,17 @@ var factories = {
|
|
|
13193
13384
|
description: factories.string(),
|
|
13194
13385
|
original: factories['io.flow.v0.models.transaction_metadata_original_transaction'](),
|
|
13195
13386
|
url: factories.string(),
|
|
13387
|
+
recoup: factories.boolean(),
|
|
13388
|
+
}); },
|
|
13389
|
+
'io.flow.v0.models.transaction_metadata_merchant_fee': function () { return ({
|
|
13390
|
+
discriminator: 'merchant_fee',
|
|
13391
|
+
items: arrayOf(function () { return factories['io.flow.v0.models.transaction_metadata_merchant_fee_item'](); }),
|
|
13392
|
+
}); },
|
|
13393
|
+
'io.flow.v0.models.transaction_metadata_merchant_fee_item': function () { return ({
|
|
13394
|
+
type: factories.string(),
|
|
13395
|
+
amount: factories.decimal(),
|
|
13396
|
+
local_amount: factories.decimal(),
|
|
13397
|
+
description: factories.string(),
|
|
13196
13398
|
}); },
|
|
13197
13399
|
'io.flow.v0.models.transaction_metadata_original_transaction': function () { return ({
|
|
13198
13400
|
id: factories.string(),
|
|
@@ -13656,6 +13858,7 @@ var factories = {
|
|
|
13656
13858
|
function () { return factories['io.flow.v0.models.bank_account_info_gbr'](); },
|
|
13657
13859
|
function () { return factories['io.flow.v0.models.bank_account_info_fra'](); },
|
|
13658
13860
|
function () { return factories['io.flow.v0.models.bank_account_info_ita'](); },
|
|
13861
|
+
function () { return factories['io.flow.v0.models.bank_account_info_kor'](); },
|
|
13659
13862
|
]);
|
|
13660
13863
|
return f();
|
|
13661
13864
|
},
|
|
@@ -13767,6 +13970,8 @@ var factories = {
|
|
|
13767
13970
|
var f = faker.helpers.arrayElement([
|
|
13768
13971
|
function () { return factories['io.flow.v0.models.test_upserted'](); },
|
|
13769
13972
|
function () { return factories['io.flow.v0.models.generate_load'](); },
|
|
13973
|
+
function () { return factories['io.flow.v0.models.amrutha_item_upserted'](); },
|
|
13974
|
+
function () { return factories['io.flow.v0.models.amrutha_item_deleted'](); },
|
|
13770
13975
|
function () { return factories['io.flow.v0.models.transaction_upserted'](); },
|
|
13771
13976
|
function () { return factories['io.flow.v0.models.organization_transaction_upserted'](); },
|
|
13772
13977
|
function () { return factories['io.flow.v0.models.organization_transaction_deleted'](); },
|
|
@@ -13827,6 +14032,8 @@ var factories = {
|
|
|
13827
14032
|
function () { return factories['io.flow.v0.models.order_upserted_v2'](); },
|
|
13828
14033
|
function () { return factories['io.flow.v0.models.order_identifier_deleted_v2'](); },
|
|
13829
14034
|
function () { return factories['io.flow.v0.models.order_identifier_upserted_v3'](); },
|
|
14035
|
+
function () { return factories['io.flow.v0.models.order_state_upserted'](); },
|
|
14036
|
+
function () { return factories['io.flow.v0.models.order_state_deleted'](); },
|
|
13830
14037
|
function () { return factories['io.flow.v0.models.fraud_status_changed'](); },
|
|
13831
14038
|
function () { return factories['io.flow.v0.models.center_upserted'](); },
|
|
13832
14039
|
function () { return factories['io.flow.v0.models.center_deleted'](); },
|
|
@@ -13851,6 +14058,8 @@ var factories = {
|
|
|
13851
14058
|
function () { return factories['io.flow.v0.models.item_origin_deleted'](); },
|
|
13852
14059
|
function () { return factories['io.flow.v0.models.harmonized_landed_cost_upserted'](); },
|
|
13853
14060
|
function () { return factories['io.flow.v0.models.fully_harmonized_item_upserted'](); },
|
|
14061
|
+
function () { return factories['io.flow.v0.models.tariff_codes_upserted'](); },
|
|
14062
|
+
function () { return factories['io.flow.v0.models.tariff_codes_deleted'](); },
|
|
13854
14063
|
function () { return factories['io.flow.v0.models.label_deleted_v2'](); },
|
|
13855
14064
|
function () { return factories['io.flow.v0.models.label_upserted_v2'](); },
|
|
13856
14065
|
function () { return factories['io.flow.v0.models.notification_upserted_v2'](); },
|
|
@@ -14175,6 +14384,14 @@ var factories = {
|
|
|
14175
14384
|
]);
|
|
14176
14385
|
return f();
|
|
14177
14386
|
},
|
|
14387
|
+
'io.flow.v0.unions.order_state_rejection_reason': function () {
|
|
14388
|
+
var f = faker.helpers.arrayElement([
|
|
14389
|
+
function () { return factories['io.flow.v0.models.order_state_rejection_reason_restricted_item'](); },
|
|
14390
|
+
function () { return factories['io.flow.v0.models.order_state_rejection_reason_domestic_order'](); },
|
|
14391
|
+
function () { return factories['io.flow.v0.models.order_state_rejection_reason_items_empty'](); },
|
|
14392
|
+
]);
|
|
14393
|
+
return f();
|
|
14394
|
+
},
|
|
14178
14395
|
'io.flow.v0.unions.partner_center_fee': function () {
|
|
14179
14396
|
var f = faker.helpers.arrayElement([
|
|
14180
14397
|
function () { return factories['io.flow.v0.models.commercial_invoice_fee'](); },
|
|
@@ -14568,6 +14785,7 @@ var factories = {
|
|
|
14568
14785
|
function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout'](); },
|
|
14569
14786
|
function () { return factories['io.flow.v0.models.transaction_metadata_payment_transaction'](); },
|
|
14570
14787
|
function () { return factories['io.flow.v0.models.transaction_metadata_tax_duty'](); },
|
|
14788
|
+
function () { return factories['io.flow.v0.models.transaction_metadata_merchant_fee'](); },
|
|
14571
14789
|
]);
|
|
14572
14790
|
return f();
|
|
14573
14791
|
},
|
|
@@ -14647,6 +14865,8 @@ export var makeAllocationUpsertedV2 = function () { return factories['io.flow.v0
|
|
|
14647
14865
|
export var makeAllocationV2 = function () { return factories['io.flow.v0.models.allocation_v2'](); };
|
|
14648
14866
|
export var makeAmountMargin = function () { return factories['io.flow.v0.models.amount_margin'](); };
|
|
14649
14867
|
export var makeAmountMarginForm = function () { return factories['io.flow.v0.models.amount_margin_form'](); };
|
|
14868
|
+
export var makeAmruthaItemDeleted = function () { return factories['io.flow.v0.models.amrutha_item_deleted'](); };
|
|
14869
|
+
export var makeAmruthaItemUpserted = function () { return factories['io.flow.v0.models.amrutha_item_upserted'](); };
|
|
14650
14870
|
export var makeAnalyticsExportType = function () { return factories['io.flow.v0.models.analytics_export_type'](); };
|
|
14651
14871
|
export var makeApplePayMerchantValidationPayload = function () { return factories['io.flow.v0.models.apple_pay_merchant_validation_payload'](); };
|
|
14652
14872
|
export var makeApplepaySdkCreateResultActionDetails = function () { return factories['io.flow.v0.models.applepay_sdk_create_result_action_details'](); };
|
|
@@ -14720,6 +14940,7 @@ export var makeBankAccountInfoCan = function () { return factories['io.flow.v0.m
|
|
|
14720
14940
|
export var makeBankAccountInfoFra = function () { return factories['io.flow.v0.models.bank_account_info_fra'](); };
|
|
14721
14941
|
export var makeBankAccountInfoGbr = function () { return factories['io.flow.v0.models.bank_account_info_gbr'](); };
|
|
14722
14942
|
export var makeBankAccountInfoIta = function () { return factories['io.flow.v0.models.bank_account_info_ita'](); };
|
|
14943
|
+
export var makeBankAccountInfoKor = function () { return factories['io.flow.v0.models.bank_account_info_kor'](); };
|
|
14723
14944
|
export var makeBankAccountInfoUsa = function () { return factories['io.flow.v0.models.bank_account_info_usa'](); };
|
|
14724
14945
|
export var makeBankAccountReference = function () { return factories['io.flow.v0.models.bank_account_reference'](); };
|
|
14725
14946
|
export var makeBankAccountSummary = function () { return factories['io.flow.v0.models.bank_account_summary'](); };
|
|
@@ -15219,6 +15440,7 @@ export var makeHarmonizationDocument = function () { return factories['io.flow.v
|
|
|
15219
15440
|
export var makeHarmonizationHs10ExportType = function () { return factories['io.flow.v0.models.harmonization_hs10_export_type'](); };
|
|
15220
15441
|
export var makeHarmonizationHs6ExportType = function () { return factories['io.flow.v0.models.harmonization_hs6_export_type'](); };
|
|
15221
15442
|
export var makeHarmonizationOverviewExportType = function () { return factories['io.flow.v0.models.harmonization_overview_export_type'](); };
|
|
15443
|
+
export var makeHarmonizationTariffCode = function () { return factories['io.flow.v0.models.harmonization_tariff_code'](); };
|
|
15222
15444
|
export var makeHarmonizationTariffCodesExportType = function () { return factories['io.flow.v0.models.harmonization_tariff_codes_export_type'](); };
|
|
15223
15445
|
export var makeHarmonizedCategoryReference = function () { return factories['io.flow.v0.models.harmonized_category_reference'](); };
|
|
15224
15446
|
export var makeHarmonizedItem = function () { return factories['io.flow.v0.models.harmonized_item'](); };
|
|
@@ -15535,6 +15757,14 @@ export var makeOrderRulesSummary = function () { return factories['io.flow.v0.mo
|
|
|
15535
15757
|
export var makeOrderServiceChange = function () { return factories['io.flow.v0.models.order_service_change'](); };
|
|
15536
15758
|
export var makeOrderServiceChangeForm = function () { return factories['io.flow.v0.models.order_service_change_form'](); };
|
|
15537
15759
|
export var makeOrderServiceChangeRequestData = function () { return factories['io.flow.v0.models.order_service_change_request_data'](); };
|
|
15760
|
+
export var makeOrderState = function () { return factories['io.flow.v0.models.order_state'](); };
|
|
15761
|
+
export var makeOrderStateDeleted = function () { return factories['io.flow.v0.models.order_state_deleted'](); };
|
|
15762
|
+
export var makeOrderStateRejectionReason = function () { return factories['io.flow.v0.unions.order_state_rejection_reason'](); };
|
|
15763
|
+
export var makeOrderStateRejectionReasonDomesticOrder = function () { return factories['io.flow.v0.models.order_state_rejection_reason_domestic_order'](); };
|
|
15764
|
+
export var makeOrderStateRejectionReasonItemsEmpty = function () { return factories['io.flow.v0.models.order_state_rejection_reason_items_empty'](); };
|
|
15765
|
+
export var makeOrderStateRejectionReasonRestrictedItem = function () { return factories['io.flow.v0.models.order_state_rejection_reason_restricted_item'](); };
|
|
15766
|
+
export var makeOrderStateStatus = function () { return factories['io.flow.v0.enums.order_state_status'](); };
|
|
15767
|
+
export var makeOrderStateUpserted = function () { return factories['io.flow.v0.models.order_state_upserted'](); };
|
|
15538
15768
|
export var makeOrderStatus = function () { return factories['io.flow.v0.enums.order_status'](); };
|
|
15539
15769
|
export var makeOrderStorage = function () { return factories['io.flow.v0.enums.order_storage'](); };
|
|
15540
15770
|
export var makeOrderSubmissionForm = function () { return factories['io.flow.v0.models.order_submission_form'](); };
|
|
@@ -15816,6 +16046,7 @@ export var makePriceWithBaseAndDetails = function () { return factories['io.flow
|
|
|
15816
16046
|
export var makePricing = function () { return factories['io.flow.v0.models.pricing'](); };
|
|
15817
16047
|
export var makePricingLevySetting = function () { return factories['io.flow.v0.enums.pricing_levy_setting'](); };
|
|
15818
16048
|
export var makePricingSettings = function () { return factories['io.flow.v0.models.pricing_settings'](); };
|
|
16049
|
+
export var makePricingType = function () { return factories['io.flow.v0.enums.pricing_type'](); };
|
|
15819
16050
|
export var makePricingVersion = function () { return factories['io.flow.v0.models.pricing_version'](); };
|
|
15820
16051
|
export var makeProcessingEstimate = function () { return factories['io.flow.v0.models.processing_estimate'](); };
|
|
15821
16052
|
export var makeProduct = function () { return factories['io.flow.v0.models.product'](); };
|
|
@@ -15869,6 +16100,7 @@ export var makeRateUpsertedV3 = function () { return factories['io.flow.v0.model
|
|
|
15869
16100
|
export var makeRateVersion = function () { return factories['io.flow.v0.models.rate_version'](); };
|
|
15870
16101
|
export var makeRatecard = function () { return factories['io.flow.v0.models.ratecard'](); };
|
|
15871
16102
|
export var makeRatecardCarrierSummary = function () { return factories['io.flow.v0.models.ratecard_carrier_summary'](); };
|
|
16103
|
+
export var makeRatecardData = function () { return factories['io.flow.v0.models.ratecard_data'](); };
|
|
15872
16104
|
export var makeRatecardDeleted = function () { return factories['io.flow.v0.models.ratecard_deleted'](); };
|
|
15873
16105
|
export var makeRatecardEstimate = function () { return factories['io.flow.v0.unions.ratecard_estimate'](); };
|
|
15874
16106
|
export var makeRatecardEstimateForm = function () { return factories['io.flow.v0.models.ratecard_estimate_form'](); };
|
|
@@ -15990,11 +16222,13 @@ export var makeSelfBillingAgreement = function () { return factories['io.flow.v0
|
|
|
15990
16222
|
export var makeSellabilityError = function () { return factories['io.flow.v0.models.sellability_error'](); };
|
|
15991
16223
|
export var makeSellabilityErrorCode = function () { return factories['io.flow.v0.enums.sellability_error_code'](); };
|
|
15992
16224
|
export var makeSellabilityNeedsActionAttributes = function () { return factories['io.flow.v0.models.sellability_needs_action_attributes'](); };
|
|
16225
|
+
export var makeSellabilityReasonWithRegions = function () { return factories['io.flow.v0.models.sellability_reason_with_regions'](); };
|
|
15993
16226
|
export var makeSellabilityRegionResult = function () { return factories['io.flow.v0.models.sellability_region_result'](); };
|
|
15994
16227
|
export var makeSellabilityRegionWithReasons = function () { return factories['io.flow.v0.models.sellability_region_with_reasons'](); };
|
|
15995
16228
|
export var makeSellabilityRequest = function () { return factories['io.flow.v0.unions.sellability_request'](); };
|
|
15996
16229
|
export var makeSellabilityRequestStatus = function () { return factories['io.flow.v0.enums.sellability_request_status'](); };
|
|
15997
16230
|
export var makeSellabilityResponse = function () { return factories['io.flow.v0.unions.sellability_response'](); };
|
|
16231
|
+
export var makeSellabilityRestrictedReason = function () { return factories['io.flow.v0.models.sellability_restricted_reason'](); };
|
|
15998
16232
|
export var makeSellabilityRestrictedRegion = function () { return factories['io.flow.v0.models.sellability_restricted_region'](); };
|
|
15999
16233
|
export var makeSellabilityResultErrorCode = function () { return factories['io.flow.v0.enums.sellability_result_error_code'](); };
|
|
16000
16234
|
export var makeSellabilityResultStatus = function () { return factories['io.flow.v0.enums.sellability_result_status'](); };
|
|
@@ -16158,6 +16392,9 @@ export var makeSurchargeResponsibleParty = function () { return factories['io.fl
|
|
|
16158
16392
|
export var makeSurchargeResponsiblePartyDisplay = function () { return factories['io.flow.v0.models.surcharge_responsible_party_display'](); };
|
|
16159
16393
|
export var makeSurchargeSetting = function () { return factories['io.flow.v0.models.surcharge_setting'](); };
|
|
16160
16394
|
export var makeSurchargeSettingDisplay = function () { return factories['io.flow.v0.models.surcharge_setting_display'](); };
|
|
16395
|
+
export var makeTariffCodes = function () { return factories['io.flow.v0.models.tariff_codes'](); };
|
|
16396
|
+
export var makeTariffCodesDeleted = function () { return factories['io.flow.v0.models.tariff_codes_deleted'](); };
|
|
16397
|
+
export var makeTariffCodesUpserted = function () { return factories['io.flow.v0.models.tariff_codes_upserted'](); };
|
|
16161
16398
|
export var makeTax = function () { return factories['io.flow.v0.models.tax'](); };
|
|
16162
16399
|
export var makeTaxApplicability = function () { return factories['io.flow.v0.enums.tax_applicability'](); };
|
|
16163
16400
|
export var makeTaxBreakdown = function () { return factories['io.flow.v0.models.tax_breakdown'](); };
|
|
@@ -16260,6 +16497,8 @@ export var makeTransactionMetadataChannelOrganizationTransaction = function () {
|
|
|
16260
16497
|
export var makeTransactionMetadataFailedPayout = function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout'](); };
|
|
16261
16498
|
export var makeTransactionMetadataFailedPayoutReference = function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout_reference'](); };
|
|
16262
16499
|
export var makeTransactionMetadataManual = function () { return factories['io.flow.v0.models.transaction_metadata_manual'](); };
|
|
16500
|
+
export var makeTransactionMetadataMerchantFee = function () { return factories['io.flow.v0.models.transaction_metadata_merchant_fee'](); };
|
|
16501
|
+
export var makeTransactionMetadataMerchantFeeItem = function () { return factories['io.flow.v0.models.transaction_metadata_merchant_fee_item'](); };
|
|
16263
16502
|
export var makeTransactionMetadataOriginalTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_original_transaction'](); };
|
|
16264
16503
|
export var makeTransactionMetadataOutboundTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_outbound_transaction'](); };
|
|
16265
16504
|
export var makeTransactionMetadataPaymentTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_payment_transaction'](); };
|