@flowio/api-factories 0.0.80 → 0.0.82
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 +206 -40
- package/dist/esm/api.js +156 -4
- package/dist/types/api.d.ts +14 -0
- package/package.json +2 -2
- package/src/api.ts +180 -4
package/src/api.ts
CHANGED
|
@@ -1599,7 +1599,7 @@ const factories = {
|
|
|
1599
1599
|
]),
|
|
1600
1600
|
|
|
1601
1601
|
'io.flow.stripe.v0.enums.payment_method_category_klarna': (): io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna => faker.helpers.arrayElement(['pay_later', 'pay_now', 'pay_with_financing', 'pay_in_installments']),
|
|
1602
|
-
'io.flow.stripe.v0.enums.payment_method_type': (): io.flow.stripe.v0.enums.PaymentMethodType => faker.helpers.arrayElement(['card', 'card_present']),
|
|
1602
|
+
'io.flow.stripe.v0.enums.payment_method_type': (): io.flow.stripe.v0.enums.PaymentMethodType => faker.helpers.arrayElement(['card', 'card_present', 'klarna']),
|
|
1603
1603
|
'io.flow.stripe.v0.enums.payment_outcome_type': (): io.flow.stripe.v0.enums.PaymentOutcomeType => faker.helpers.arrayElement(['authorized', 'manual_review', 'issuer_declined', 'blocked', 'invalid']),
|
|
1604
1604
|
'io.flow.stripe.v0.enums.payment_status': (): io.flow.stripe.v0.enums.PaymentStatus => faker.helpers.arrayElement(['succeeded', 'pending', 'failed']),
|
|
1605
1605
|
|
|
@@ -1949,6 +1949,12 @@ const factories = {
|
|
|
1949
1949
|
),
|
|
1950
1950
|
}),
|
|
1951
1951
|
|
|
1952
|
+
'io.flow.stripe.v0.models.klarna_dob_form': (): io.flow.stripe.v0.models.KlarnaDobForm => ({
|
|
1953
|
+
day: factories.integer(),
|
|
1954
|
+
month: factories.integer(),
|
|
1955
|
+
year: factories.integer(),
|
|
1956
|
+
}),
|
|
1957
|
+
|
|
1952
1958
|
'io.flow.stripe.v0.models.klarna_marketplace_seller_info': (): io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo => ({
|
|
1953
1959
|
sub_merchant_id: factories.string(),
|
|
1954
1960
|
product_category: factories.string(),
|
|
@@ -1958,6 +1964,12 @@ const factories = {
|
|
|
1958
1964
|
additional_owners: arrayOf(() => factories['io.flow.stripe.v0.models.owner']()),
|
|
1959
1965
|
}),
|
|
1960
1966
|
|
|
1967
|
+
'io.flow.stripe.v0.models.marketplace_seller_info': (): io.flow.stripe.v0.models.MarketplaceSellerInfo => ({
|
|
1968
|
+
name: factories.string(),
|
|
1969
|
+
id: factories.string(),
|
|
1970
|
+
product_category: factories.string(),
|
|
1971
|
+
}),
|
|
1972
|
+
|
|
1961
1973
|
'io.flow.stripe.v0.models.masterpass': (): io.flow.stripe.v0.models.Masterpass => ({
|
|
1962
1974
|
type: 'masterpass',
|
|
1963
1975
|
masterpass: factories['io.flow.stripe.v0.models.masterpass_information'](),
|
|
@@ -2046,6 +2058,10 @@ const factories = {
|
|
|
2046
2058
|
verified_phone: factories.string(),
|
|
2047
2059
|
}),
|
|
2048
2060
|
|
|
2061
|
+
'io.flow.stripe.v0.models.payment_details': (): io.flow.stripe.v0.models.PaymentDetails => ({
|
|
2062
|
+
marketplace_seller_info: factories['io.flow.stripe.v0.models.marketplace_seller_info'](),
|
|
2063
|
+
}),
|
|
2064
|
+
|
|
2049
2065
|
'io.flow.stripe.v0.models.payment_intent': (): io.flow.stripe.v0.models.PaymentIntent => ({
|
|
2050
2066
|
id: factories.string(),
|
|
2051
2067
|
object: factories.string(),
|
|
@@ -2170,6 +2186,7 @@ const factories = {
|
|
|
2170
2186
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2171
2187
|
card: factories['io.flow.stripe.v0.models.payment_method_card_details'](),
|
|
2172
2188
|
card_present: factories.object(),
|
|
2189
|
+
klarna: factories.object(),
|
|
2173
2190
|
created: factories.long(),
|
|
2174
2191
|
customer: factories.string(),
|
|
2175
2192
|
livemode: factories.boolean(),
|
|
@@ -2210,6 +2227,13 @@ const factories = {
|
|
|
2210
2227
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
2211
2228
|
}),
|
|
2212
2229
|
|
|
2230
|
+
'io.flow.stripe.v0.models.payment_method_data_klarna': (): io.flow.stripe.v0.models.PaymentMethodDataKlarna => ({
|
|
2231
|
+
type: 'klarna',
|
|
2232
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2233
|
+
metadata: factories.object(),
|
|
2234
|
+
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
2235
|
+
}),
|
|
2236
|
+
|
|
2213
2237
|
'io.flow.stripe.v0.models.payment_method_details_card': (): io.flow.stripe.v0.models.PaymentMethodDetailsCard => ({
|
|
2214
2238
|
type: 'card',
|
|
2215
2239
|
card: factories['io.flow.stripe.v0.models.payment_method_details_card_information'](),
|
|
@@ -2258,8 +2282,20 @@ const factories = {
|
|
|
2258
2282
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
2259
2283
|
}),
|
|
2260
2284
|
|
|
2285
|
+
'io.flow.stripe.v0.models.payment_method_form_klarna': (): io.flow.stripe.v0.models.PaymentMethodFormKlarna => ({
|
|
2286
|
+
type: 'klarna',
|
|
2287
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2288
|
+
metadata: factories.object(),
|
|
2289
|
+
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
2290
|
+
}),
|
|
2291
|
+
|
|
2292
|
+
'io.flow.stripe.v0.models.payment_method_klarna_form': (): io.flow.stripe.v0.models.PaymentMethodKlarnaForm => ({
|
|
2293
|
+
dob: factories['io.flow.stripe.v0.models.klarna_dob_form'](),
|
|
2294
|
+
}),
|
|
2295
|
+
|
|
2261
2296
|
'io.flow.stripe.v0.models.payment_method_options': (): io.flow.stripe.v0.models.PaymentMethodOptions => ({
|
|
2262
2297
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card'](),
|
|
2298
|
+
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna'](),
|
|
2263
2299
|
}),
|
|
2264
2300
|
|
|
2265
2301
|
'io.flow.stripe.v0.models.payment_method_options_card': (): io.flow.stripe.v0.models.PaymentMethodOptionsCard => ({
|
|
@@ -2279,6 +2315,21 @@ const factories = {
|
|
|
2279
2315
|
|
|
2280
2316
|
'io.flow.stripe.v0.models.payment_method_options_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsForm => ({
|
|
2281
2317
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card_form'](),
|
|
2318
|
+
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna_form'](),
|
|
2319
|
+
}),
|
|
2320
|
+
|
|
2321
|
+
'io.flow.stripe.v0.models.payment_method_options_klarna': (): io.flow.stripe.v0.models.PaymentMethodOptionsKlarna => ({
|
|
2322
|
+
capture_method: factories['io.flow.stripe.v0.enums.capture_method'](),
|
|
2323
|
+
preferred_locale: factories['io.flow.stripe.v0.enums.preferred_locale_klarna'](),
|
|
2324
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
2325
|
+
payment_details: factories['io.flow.stripe.v0.models.payment_details'](),
|
|
2326
|
+
}),
|
|
2327
|
+
|
|
2328
|
+
'io.flow.stripe.v0.models.payment_method_options_klarna_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm => ({
|
|
2329
|
+
capture_method: factories['io.flow.stripe.v0.enums.capture_method'](),
|
|
2330
|
+
preferred_locale: factories['io.flow.stripe.v0.enums.preferred_locale_klarna'](),
|
|
2331
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
2332
|
+
payment_details: factories['io.flow.stripe.v0.models.payment_details'](),
|
|
2282
2333
|
}),
|
|
2283
2334
|
|
|
2284
2335
|
'io.flow.stripe.v0.models.payment_outcome': (): io.flow.stripe.v0.models.PaymentOutcome => ({
|
|
@@ -2584,7 +2635,11 @@ const factories = {
|
|
|
2584
2635
|
},
|
|
2585
2636
|
|
|
2586
2637
|
'io.flow.stripe.v0.unions.payment_method_data': (): io.flow.stripe.v0.unions.PaymentMethodData => {
|
|
2587
|
-
const f = faker.helpers.arrayElement([
|
|
2638
|
+
const f = faker.helpers.arrayElement([
|
|
2639
|
+
() => factories['io.flow.stripe.v0.models.payment_method_data_card'](),
|
|
2640
|
+
() => factories['io.flow.stripe.v0.models.payment_method_data_klarna'](),
|
|
2641
|
+
]);
|
|
2642
|
+
|
|
2588
2643
|
return f();
|
|
2589
2644
|
},
|
|
2590
2645
|
|
|
@@ -2598,7 +2653,11 @@ const factories = {
|
|
|
2598
2653
|
},
|
|
2599
2654
|
|
|
2600
2655
|
'io.flow.stripe.v0.unions.payment_method_form': (): io.flow.stripe.v0.unions.PaymentMethodForm => {
|
|
2601
|
-
const f = faker.helpers.arrayElement([
|
|
2656
|
+
const f = faker.helpers.arrayElement([
|
|
2657
|
+
() => factories['io.flow.stripe.v0.models.payment_method_form_card'](),
|
|
2658
|
+
() => factories['io.flow.stripe.v0.models.payment_method_form_klarna'](),
|
|
2659
|
+
]);
|
|
2660
|
+
|
|
2602
2661
|
return f();
|
|
2603
2662
|
},
|
|
2604
2663
|
|
|
@@ -3042,6 +3101,7 @@ const factories = {
|
|
|
3042
3101
|
'organization_fulfillment',
|
|
3043
3102
|
'organization_marketing',
|
|
3044
3103
|
'organization_finance',
|
|
3104
|
+
'organization_classification',
|
|
3045
3105
|
'flow_operations',
|
|
3046
3106
|
'channel_admin',
|
|
3047
3107
|
'channel_organization_admin',
|
|
@@ -3125,6 +3185,7 @@ const factories = {
|
|
|
3125
3185
|
'io.flow.v0.enums.logistics_format_preference': (): io.flow.v0.enums.LogisticsFormatPreference => faker.helpers.arrayElement(['shopify_console', 'existing_3pl_integration', 'byo_integration']),
|
|
3126
3186
|
'io.flow.v0.enums.margin_type': (): io.flow.v0.enums.MarginType => faker.helpers.arrayElement(['fixed', 'percent']),
|
|
3127
3187
|
'io.flow.v0.enums.measurement_system': (): io.flow.v0.enums.MeasurementSystem => faker.helpers.arrayElement(['imperial', 'metric']),
|
|
3188
|
+
'io.flow.v0.enums.merchant_disabled_reason': (): io.flow.v0.enums.MerchantDisabledReason => faker.helpers.arrayElement(['merchant_deactivated', 'merchant_rejected']),
|
|
3128
3189
|
|
|
3129
3190
|
'io.flow.v0.enums.merchant_gift_card_error_code': (): io.flow.v0.enums.MerchantGiftCardErrorCode => faker.helpers.arrayElement([
|
|
3130
3191
|
'invalid',
|
|
@@ -3151,6 +3212,7 @@ const factories = {
|
|
|
3151
3212
|
'business_street_address_is_blank',
|
|
3152
3213
|
'business_street_address_is_po_box',
|
|
3153
3214
|
'exception_merchant',
|
|
3215
|
+
'application_missing',
|
|
3154
3216
|
]),
|
|
3155
3217
|
|
|
3156
3218
|
'io.flow.v0.enums.onboarding_trade_sector': (): io.flow.v0.enums.OnboardingTradeSector => faker.helpers.arrayElement([
|
|
@@ -3304,7 +3366,13 @@ const factories = {
|
|
|
3304
3366
|
'io.flow.v0.enums.organization_payment_method_tag': (): io.flow.v0.enums.OrganizationPaymentMethodTag => faker.helpers.arrayElement(['deny']),
|
|
3305
3367
|
'io.flow.v0.enums.organization_status': (): io.flow.v0.enums.OrganizationStatus => faker.helpers.arrayElement(['active', 'inactive', 'deactivated', 'provisioned']),
|
|
3306
3368
|
'io.flow.v0.enums.organization_type': (): io.flow.v0.enums.OrganizationType => faker.helpers.arrayElement(['standalone', 'channel']),
|
|
3307
|
-
|
|
3369
|
+
|
|
3370
|
+
'io.flow.v0.enums.package_dimensions_source': (): io.flow.v0.enums.PackageDimensionsSource => faker.helpers.arrayElement([
|
|
3371
|
+
'provided',
|
|
3372
|
+
'item_dimensions_estimated',
|
|
3373
|
+
'dimensions_estimated',
|
|
3374
|
+
'default_item_dimensions_estimated',
|
|
3375
|
+
]),
|
|
3308
3376
|
|
|
3309
3377
|
'io.flow.v0.enums.payment_action_type': (): io.flow.v0.enums.PaymentActionType => faker.helpers.arrayElement([
|
|
3310
3378
|
'redirect',
|
|
@@ -3650,6 +3718,10 @@ const factories = {
|
|
|
3650
3718
|
'emergency',
|
|
3651
3719
|
'peak',
|
|
3652
3720
|
'address_correction',
|
|
3721
|
+
'security',
|
|
3722
|
+
'eei_filing',
|
|
3723
|
+
'fixed_ddp',
|
|
3724
|
+
'fixed_currency_conversion',
|
|
3653
3725
|
]),
|
|
3654
3726
|
|
|
3655
3727
|
'io.flow.v0.enums.unit_of_length': (): io.flow.v0.enums.UnitOfLength => faker.helpers.arrayElement(['millimeter', 'centimeter', 'inch', 'foot', 'meter']),
|
|
@@ -3877,6 +3949,17 @@ const factories = {
|
|
|
3877
3949
|
placeholder: factories.boolean(),
|
|
3878
3950
|
}),
|
|
3879
3951
|
|
|
3952
|
+
'io.flow.v0.models.additional_handling_service_fee': (): io.flow.v0.models.AdditionalHandlingServiceFee => ({
|
|
3953
|
+
discriminator: 'additional_handling_service_fee',
|
|
3954
|
+
length_girth_threshold: factories.decimal(),
|
|
3955
|
+
length_threshold: factories.decimal(),
|
|
3956
|
+
width_threshold: factories.decimal(),
|
|
3957
|
+
dimensional_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
3958
|
+
weight_threshold: factories.decimal(),
|
|
3959
|
+
weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
3960
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
3961
|
+
}),
|
|
3962
|
+
|
|
3880
3963
|
'io.flow.v0.models.additional_services_requested': (): io.flow.v0.models.AdditionalServicesRequested => ({
|
|
3881
3964
|
name: factories.string(),
|
|
3882
3965
|
description: factories.string(),
|
|
@@ -6501,6 +6584,17 @@ const factories = {
|
|
|
6501
6584
|
ecommerce_platform: factories['io.flow.v0.models.ecommerce_platform'](),
|
|
6502
6585
|
}),
|
|
6503
6586
|
|
|
6587
|
+
'io.flow.v0.models.eei_filing_ratecard_fee': (): io.flow.v0.models.EeiFilingRatecardFee => ({
|
|
6588
|
+
discriminator: 'eei_filing_ratecard_fee',
|
|
6589
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
6590
|
+
}),
|
|
6591
|
+
|
|
6592
|
+
'io.flow.v0.models.eei_filing_service_fee': (): io.flow.v0.models.EeiFilingServiceFee => ({
|
|
6593
|
+
discriminator: 'eei_filing_service_fee',
|
|
6594
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
6595
|
+
value_threshold: factories['io.flow.v0.models.money'](),
|
|
6596
|
+
}),
|
|
6597
|
+
|
|
6504
6598
|
'io.flow.v0.models.email_abandoned_order_promotion': (): io.flow.v0.models.EmailAbandonedOrderPromotion => ({
|
|
6505
6599
|
discount_form: factories['io.flow.v0.models.discount_form'](),
|
|
6506
6600
|
attributes: objectOf(() => factories.string()),
|
|
@@ -7023,6 +7117,31 @@ const factories = {
|
|
|
7023
7117
|
placeholder: factories.string(),
|
|
7024
7118
|
}),
|
|
7025
7119
|
|
|
7120
|
+
'io.flow.v0.models.fixed_currency_conversion_ratecard_fee': (): io.flow.v0.models.FixedCurrencyConversionRatecardFee => ({
|
|
7121
|
+
discriminator: 'fixed_currency_conversion_ratecard_fee',
|
|
7122
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
7123
|
+
}),
|
|
7124
|
+
|
|
7125
|
+
'io.flow.v0.models.fixed_currency_conversion_service_fee': (): io.flow.v0.models.FixedCurrencyConversionServiceFee => ({
|
|
7126
|
+
discriminator: 'fixed_currency_conversion_service_fee',
|
|
7127
|
+
conditions: arrayOf(() => factories['io.flow.v0.models.fixed_fee_condition']()),
|
|
7128
|
+
}),
|
|
7129
|
+
|
|
7130
|
+
'io.flow.v0.models.fixed_ddp_ratecard_fee': (): io.flow.v0.models.FixedDdpRatecardFee => ({
|
|
7131
|
+
discriminator: 'fixed_ddp_ratecard_fee',
|
|
7132
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
7133
|
+
}),
|
|
7134
|
+
|
|
7135
|
+
'io.flow.v0.models.fixed_ddp_service_fee': (): io.flow.v0.models.FixedDdpServiceFee => ({
|
|
7136
|
+
discriminator: 'fixed_ddp_service_fee',
|
|
7137
|
+
conditions: arrayOf(() => factories['io.flow.v0.models.fixed_fee_condition']()),
|
|
7138
|
+
}),
|
|
7139
|
+
|
|
7140
|
+
'io.flow.v0.models.fixed_fee_condition': (): io.flow.v0.models.FixedFeeCondition => ({
|
|
7141
|
+
countries: arrayOf(() => factories.string()),
|
|
7142
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
7143
|
+
}),
|
|
7144
|
+
|
|
7026
7145
|
'io.flow.v0.models.flat_rate': (): io.flow.v0.models.FlatRate => ({
|
|
7027
7146
|
discriminator: 'flat_rate',
|
|
7028
7147
|
price: factories['io.flow.v0.models.price'](),
|
|
@@ -8246,6 +8365,15 @@ const factories = {
|
|
|
8246
8365
|
iso_639_2: factories.string(),
|
|
8247
8366
|
}),
|
|
8248
8367
|
|
|
8368
|
+
'io.flow.v0.models.large_package_service_fee': (): io.flow.v0.models.LargePackageServiceFee => ({
|
|
8369
|
+
discriminator: 'large_package_service_fee',
|
|
8370
|
+
length_girth_threshold: factories.decimal(),
|
|
8371
|
+
dimensional_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
8372
|
+
weight_threshold: factories.decimal(),
|
|
8373
|
+
weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
8374
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
8375
|
+
}),
|
|
8376
|
+
|
|
8249
8377
|
'io.flow.v0.models.line': (): io.flow.v0.models.Line => ({
|
|
8250
8378
|
id: factories.string(),
|
|
8251
8379
|
item_number: factories.string(),
|
|
@@ -8597,6 +8725,11 @@ const factories = {
|
|
|
8597
8725
|
reason: factories.string(),
|
|
8598
8726
|
}),
|
|
8599
8727
|
|
|
8728
|
+
'io.flow.v0.models.merchant_disabled': (): io.flow.v0.models.MerchantDisabled => ({
|
|
8729
|
+
discriminator: 'merchant_disabled',
|
|
8730
|
+
reason: factories['io.flow.v0.enums.merchant_disabled_reason'](),
|
|
8731
|
+
}),
|
|
8732
|
+
|
|
8600
8733
|
'io.flow.v0.models.merchant_gift_card_balance': (): io.flow.v0.models.MerchantGiftCardBalance => ({
|
|
8601
8734
|
amount: factories.decimal(),
|
|
8602
8735
|
currency: factories.string(),
|
|
@@ -11719,6 +11852,12 @@ const factories = {
|
|
|
11719
11852
|
status: factories['io.flow.v0.enums.availability_status'](),
|
|
11720
11853
|
}),
|
|
11721
11854
|
|
|
11855
|
+
'io.flow.v0.models.remote_area_by_weight_service_fee': (): io.flow.v0.models.RemoteAreaByWeightServiceFee => ({
|
|
11856
|
+
discriminator: 'remote_area_by_weight_service_fee',
|
|
11857
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
11858
|
+
weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
11859
|
+
}),
|
|
11860
|
+
|
|
11722
11861
|
'io.flow.v0.models.remote_area_ratecard_fee': (): io.flow.v0.models.RemoteAreaRatecardFee => ({
|
|
11723
11862
|
discriminator: 'remote_area_ratecard_fee',
|
|
11724
11863
|
amount: factories['io.flow.v0.models.money'](),
|
|
@@ -12065,6 +12204,17 @@ const factories = {
|
|
|
12065
12204
|
minute_of_hour: factories.string(),
|
|
12066
12205
|
}),
|
|
12067
12206
|
|
|
12207
|
+
'io.flow.v0.models.security_ratecard_fee': (): io.flow.v0.models.SecurityRatecardFee => ({
|
|
12208
|
+
discriminator: 'security_ratecard_fee',
|
|
12209
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
12210
|
+
}),
|
|
12211
|
+
|
|
12212
|
+
'io.flow.v0.models.security_service_fee': (): io.flow.v0.models.SecurityServiceFee => ({
|
|
12213
|
+
discriminator: 'security_service_fee',
|
|
12214
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
12215
|
+
countries: arrayOf(() => factories.string()),
|
|
12216
|
+
}),
|
|
12217
|
+
|
|
12068
12218
|
'io.flow.v0.models.select_issuer_option_action_details': (): io.flow.v0.models.SelectIssuerOptionActionDetails => ({
|
|
12069
12219
|
discriminator: 'select_issuer_option_action_details',
|
|
12070
12220
|
issuer_options: arrayOf(() => factories['io.flow.v0.models.issuer_reference']()),
|
|
@@ -14685,6 +14835,7 @@ const factories = {
|
|
|
14685
14835
|
() => factories['io.flow.v0.models.setup_completed'](),
|
|
14686
14836
|
() => factories['io.flow.v0.models.merchant_activated'](),
|
|
14687
14837
|
() => factories['io.flow.v0.models.merchant_deactivated'](),
|
|
14838
|
+
() => factories['io.flow.v0.models.merchant_disabled'](),
|
|
14688
14839
|
]);
|
|
14689
14840
|
|
|
14690
14841
|
return f();
|
|
@@ -14987,6 +15138,10 @@ const factories = {
|
|
|
14987
15138
|
() => factories['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'](),
|
|
14988
15139
|
() => factories['io.flow.v0.models.peak_surcharge_ratecard_fee'](),
|
|
14989
15140
|
() => factories['io.flow.v0.models.duties_taxes_paid_surcharge_ratecard_fee'](),
|
|
15141
|
+
() => factories['io.flow.v0.models.security_ratecard_fee'](),
|
|
15142
|
+
() => factories['io.flow.v0.models.eei_filing_ratecard_fee'](),
|
|
15143
|
+
() => factories['io.flow.v0.models.fixed_ddp_ratecard_fee'](),
|
|
15144
|
+
() => factories['io.flow.v0.models.fixed_currency_conversion_ratecard_fee'](),
|
|
14990
15145
|
]);
|
|
14991
15146
|
|
|
14992
15147
|
return f();
|
|
@@ -15050,6 +15205,13 @@ const factories = {
|
|
|
15050
15205
|
() => factories['io.flow.v0.models.peak_surcharge_by_weight_service_fee'](),
|
|
15051
15206
|
() => factories['io.flow.v0.models.duties_taxes_paid_surcharge_service_fee'](),
|
|
15052
15207
|
() => factories['io.flow.v0.models.oversize_piece_surcharge_service_fee'](),
|
|
15208
|
+
() => factories['io.flow.v0.models.remote_area_by_weight_service_fee'](),
|
|
15209
|
+
() => factories['io.flow.v0.models.additional_handling_service_fee'](),
|
|
15210
|
+
() => factories['io.flow.v0.models.large_package_service_fee'](),
|
|
15211
|
+
() => factories['io.flow.v0.models.security_service_fee'](),
|
|
15212
|
+
() => factories['io.flow.v0.models.fixed_ddp_service_fee'](),
|
|
15213
|
+
() => factories['io.flow.v0.models.fixed_currency_conversion_service_fee'](),
|
|
15214
|
+
() => factories['io.flow.v0.models.eei_filing_service_fee'](),
|
|
15053
15215
|
]);
|
|
15054
15216
|
|
|
15055
15217
|
return f();
|
|
@@ -15225,6 +15387,7 @@ export const makeActionUseSdkPaypal = () => factories['io.flow.v0.models.action_
|
|
|
15225
15387
|
export const makeActionUseSdkStripeV3 = () => factories['io.flow.v0.models.action_use_sdk_stripe_v3']();
|
|
15226
15388
|
export const makeActionWait = () => factories['io.flow.v0.models.action_wait']();
|
|
15227
15389
|
export const makeActivationPutForm = () => factories['io.flow.v0.models.activation_put_form']();
|
|
15390
|
+
export const makeAdditionalHandlingServiceFee = () => factories['io.flow.v0.models.additional_handling_service_fee']();
|
|
15228
15391
|
export const makeAdditionalServicesRequested = () => factories['io.flow.v0.models.additional_services_requested']();
|
|
15229
15392
|
export const makeAddress = () => factories['io.flow.v0.models.address']();
|
|
15230
15393
|
export const makeAddressConfiguration = () => factories['io.flow.v0.models.address_configuration']();
|
|
@@ -15661,6 +15824,8 @@ export const makeEcommercePlatformForm = () => factories['io.flow.v0.models.ecom
|
|
|
15661
15824
|
export const makeEcommercePlatformType = () => factories['io.flow.v0.enums.ecommerce_platform_type']();
|
|
15662
15825
|
export const makeEcommercePlatformUpserted = () => factories['io.flow.v0.models.ecommerce_platform_upserted']();
|
|
15663
15826
|
export const makeEconomicTitleLocation = () => factories['io.flow.v0.enums.economic_title_location']();
|
|
15827
|
+
export const makeEeiFilingRatecardFee = () => factories['io.flow.v0.models.eei_filing_ratecard_fee']();
|
|
15828
|
+
export const makeEeiFilingServiceFee = () => factories['io.flow.v0.models.eei_filing_service_fee']();
|
|
15664
15829
|
export const makeEmailAbandonedOrderPromotion = () => factories['io.flow.v0.models.email_abandoned_order_promotion']();
|
|
15665
15830
|
export const makeEmailAbandonedOrderUrls = () => factories['io.flow.v0.models.email_abandoned_order_urls']();
|
|
15666
15831
|
export const makeEmailNotification = () => factories['io.flow.v0.models.email_notification']();
|
|
@@ -15768,6 +15933,11 @@ export const makeFieldValidationPattern = () => factories['io.flow.v0.models.fie
|
|
|
15768
15933
|
export const makeFieldValidationRequired = () => factories['io.flow.v0.models.field_validation_required']();
|
|
15769
15934
|
export const makeFieldValidationRequiredIfPresent = () => factories['io.flow.v0.models.field_validation_required_if_present']();
|
|
15770
15935
|
export const makeFieldValidationRule = () => factories['io.flow.v0.unions.field_validation_rule']();
|
|
15936
|
+
export const makeFixedCurrencyConversionRatecardFee = () => factories['io.flow.v0.models.fixed_currency_conversion_ratecard_fee']();
|
|
15937
|
+
export const makeFixedCurrencyConversionServiceFee = () => factories['io.flow.v0.models.fixed_currency_conversion_service_fee']();
|
|
15938
|
+
export const makeFixedDdpRatecardFee = () => factories['io.flow.v0.models.fixed_ddp_ratecard_fee']();
|
|
15939
|
+
export const makeFixedDdpServiceFee = () => factories['io.flow.v0.models.fixed_ddp_service_fee']();
|
|
15940
|
+
export const makeFixedFeeCondition = () => factories['io.flow.v0.models.fixed_fee_condition']();
|
|
15771
15941
|
export const makeFlatRate = () => factories['io.flow.v0.models.flat_rate']();
|
|
15772
15942
|
export const makeFlatRateForm = () => factories['io.flow.v0.models.flat_rate_form']();
|
|
15773
15943
|
export const makeFlowBehavior = () => factories['io.flow.v0.enums.flow_behavior']();
|
|
@@ -15981,6 +16151,7 @@ export const makeLanePreselectPreference = () => factories['io.flow.v0.enums.lan
|
|
|
15981
16151
|
export const makeLaneStrategy = () => factories['io.flow.v0.enums.lane_strategy']();
|
|
15982
16152
|
export const makeLaneSummary = () => factories['io.flow.v0.models.lane_summary']();
|
|
15983
16153
|
export const makeLanguage = () => factories['io.flow.v0.models.language']();
|
|
16154
|
+
export const makeLargePackageServiceFee = () => factories['io.flow.v0.models.large_package_service_fee']();
|
|
15984
16155
|
export const makeLevyComponent = () => factories['io.flow.v0.enums.levy_component']();
|
|
15985
16156
|
export const makeLevyInclusion = () => factories['io.flow.v0.enums.levy_inclusion']();
|
|
15986
16157
|
export const makeLevyStrategy = () => factories['io.flow.v0.enums.levy_strategy']();
|
|
@@ -16042,6 +16213,8 @@ export const makeMerchantApplicationPutForm = () => factories['io.flow.v0.unions
|
|
|
16042
16213
|
export const makeMerchantApplicationUpserted = () => factories['io.flow.v0.models.merchant_application_upserted']();
|
|
16043
16214
|
export const makeMerchantApplicationsSummary = () => factories['io.flow.v0.unions.merchant_applications_summary']();
|
|
16044
16215
|
export const makeMerchantDeactivated = () => factories['io.flow.v0.models.merchant_deactivated']();
|
|
16216
|
+
export const makeMerchantDisabled = () => factories['io.flow.v0.models.merchant_disabled']();
|
|
16217
|
+
export const makeMerchantDisabledReason = () => factories['io.flow.v0.enums.merchant_disabled_reason']();
|
|
16045
16218
|
export const makeMerchantGiftCardBalance = () => factories['io.flow.v0.models.merchant_gift_card_balance']();
|
|
16046
16219
|
export const makeMerchantGiftCardBalanceForm = () => factories['io.flow.v0.models.merchant_gift_card_balance_form']();
|
|
16047
16220
|
export const makeMerchantGiftCardError = () => factories['io.flow.v0.models.merchant_gift_card_error']();
|
|
@@ -16565,6 +16738,7 @@ export const makeRegionReference = () => factories['io.flow.v0.models.region_ref
|
|
|
16565
16738
|
export const makeRegionSetting = () => factories['io.flow.v0.models.region_setting']();
|
|
16566
16739
|
export const makeRegionSettingForm = () => factories['io.flow.v0.models.region_setting_form']();
|
|
16567
16740
|
export const makeRegionType = () => factories['io.flow.v0.enums.region_type']();
|
|
16741
|
+
export const makeRemoteAreaByWeightServiceFee = () => factories['io.flow.v0.models.remote_area_by_weight_service_fee']();
|
|
16568
16742
|
export const makeRemoteAreaRatecardFee = () => factories['io.flow.v0.models.remote_area_ratecard_fee']();
|
|
16569
16743
|
export const makeRemoteAreaServiceFee = () => factories['io.flow.v0.models.remote_area_service_fee']();
|
|
16570
16744
|
export const makeRepeatDaily = () => factories['io.flow.v0.models.repeat_daily']();
|
|
@@ -16630,6 +16804,8 @@ export const makeScheduledExport = () => factories['io.flow.v0.models.scheduled_
|
|
|
16630
16804
|
export const makeScheduledExportForm = () => factories['io.flow.v0.models.scheduled_export_form']();
|
|
16631
16805
|
export const makeScheduledPickup = () => factories['io.flow.v0.models.scheduled_pickup']();
|
|
16632
16806
|
export const makeSdkAdyenV3AuthenticationToken = () => factories['io.flow.v0.unions.sdk_adyen_v3_authentication_token']();
|
|
16807
|
+
export const makeSecurityRatecardFee = () => factories['io.flow.v0.models.security_ratecard_fee']();
|
|
16808
|
+
export const makeSecurityServiceFee = () => factories['io.flow.v0.models.security_service_fee']();
|
|
16633
16809
|
export const makeSelectIssuerOptionActionDetails = () => factories['io.flow.v0.models.select_issuer_option_action_details']();
|
|
16634
16810
|
export const makeServiceDescription = () => factories['io.flow.v0.unions.service_description']();
|
|
16635
16811
|
export const makeServiceFee = () => factories['io.flow.v0.unions.service_fee']();
|