@flowio/api-factories 0.0.102 → 0.0.104
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 +239 -121
- package/dist/esm/api.js +194 -79
- package/dist/types/api.d.ts +13 -10
- package/package.json +2 -2
- package/src/api.ts +224 -86
package/src/api.ts
CHANGED
|
@@ -707,6 +707,9 @@ const factories = {
|
|
|
707
707
|
'inch',
|
|
708
708
|
'foot',
|
|
709
709
|
'cubic_inch',
|
|
710
|
+
'cubic_foot',
|
|
711
|
+
'cubic_millimeter',
|
|
712
|
+
'cubic_centimeter',
|
|
710
713
|
'cubic_meter',
|
|
711
714
|
'gram',
|
|
712
715
|
'kilogram',
|
|
@@ -3032,6 +3035,45 @@ const factories = {
|
|
|
3032
3035
|
offset: factories.integer(),
|
|
3033
3036
|
}),
|
|
3034
3037
|
|
|
3038
|
+
'io.flow.sellability.v0.enums.rule_effect_type': (): io.flow.sellability.v0.enums.RuleEffectType => faker.helpers.arrayElement(['market', 'dhl', 'dhl_ecommerce', 'ups']),
|
|
3039
|
+
'io.flow.sellability.v0.enums.sellability_error_code': (): io.flow.sellability.v0.enums.SellabilityErrorCode => faker.helpers.arrayElement(['insufficient_details', 'ineligible_category']),
|
|
3040
|
+
|
|
3041
|
+
'io.flow.sellability.v0.models.product_sellability': (): io.flow.sellability.v0.models.ProductSellability => ({
|
|
3042
|
+
shop_id: factories.string(),
|
|
3043
|
+
product_id: factories.string(),
|
|
3044
|
+
request_id: factories.string(),
|
|
3045
|
+
hs6_code: factories.string(),
|
|
3046
|
+
|
|
3047
|
+
restricted_regions: arrayOf(
|
|
3048
|
+
() => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
|
|
3049
|
+
),
|
|
3050
|
+
}),
|
|
3051
|
+
|
|
3052
|
+
'io.flow.sellability.v0.models.product_sellability_form': (): io.flow.sellability.v0.models.ProductSellabilityForm => ({
|
|
3053
|
+
shop_id: factories.string(),
|
|
3054
|
+
product_id: factories.string(),
|
|
3055
|
+
request_id: factories.string(),
|
|
3056
|
+
name: factories.string(),
|
|
3057
|
+
price: factories['io.flow.sellability.v0.models.product_sellability_price'](),
|
|
3058
|
+
description: factories.string(),
|
|
3059
|
+
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
3060
|
+
}),
|
|
3061
|
+
|
|
3062
|
+
'io.flow.sellability.v0.models.product_sellability_price': (): io.flow.sellability.v0.models.ProductSellabilityPrice => ({
|
|
3063
|
+
currency: factories.string(),
|
|
3064
|
+
amount: factories.decimal(),
|
|
3065
|
+
}),
|
|
3066
|
+
|
|
3067
|
+
'io.flow.sellability.v0.models.sellability_error': (): io.flow.sellability.v0.models.SellabilityError => ({
|
|
3068
|
+
code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
|
|
3069
|
+
messages: arrayOf(() => factories.string()),
|
|
3070
|
+
}),
|
|
3071
|
+
|
|
3072
|
+
'io.flow.sellability.v0.models.sellablility_region_result': (): io.flow.sellability.v0.models.SellablilityRegionResult => ({
|
|
3073
|
+
type: factories['io.flow.sellability.v0.enums.rule_effect_type'](),
|
|
3074
|
+
regions: arrayOf(() => factories.string()),
|
|
3075
|
+
}),
|
|
3076
|
+
|
|
3035
3077
|
'io.flow.shopify.external.v0.enums.cancel_reason': (): io.flow.shopify.external.v0.enums.CancelReason => faker.helpers.arrayElement(['customer', 'fraud', 'inventory', 'declined', 'other']),
|
|
3036
3078
|
'io.flow.shopify.external.v0.enums.discount_status': (): io.flow.shopify.external.v0.enums.DiscountStatus => faker.helpers.arrayElement(['enabled', 'disabled', 'depleted']),
|
|
3037
3079
|
'io.flow.shopify.external.v0.enums.discount_type': (): io.flow.shopify.external.v0.enums.DiscountType => faker.helpers.arrayElement(['fixed_amount', 'percentage', 'shipping']),
|
|
@@ -3232,6 +3274,15 @@ const factories = {
|
|
|
3232
3274
|
'io.flow.shopify.external.v0.models.graphql_metaobject': (): io.flow.shopify.external.v0.models.GraphqlMetaobject => ({
|
|
3233
3275
|
id: factories.string(),
|
|
3234
3276
|
displayName: factories.string(),
|
|
3277
|
+
|
|
3278
|
+
fields: arrayOf(
|
|
3279
|
+
() => factories['io.flow.shopify.external.v0.models.graphql_metaobject_field'](),
|
|
3280
|
+
),
|
|
3281
|
+
}),
|
|
3282
|
+
|
|
3283
|
+
'io.flow.shopify.external.v0.models.graphql_metaobject_field': (): io.flow.shopify.external.v0.models.GraphqlMetaobjectField => ({
|
|
3284
|
+
key: factories.string(),
|
|
3285
|
+
value: factories.string(),
|
|
3235
3286
|
}),
|
|
3236
3287
|
|
|
3237
3288
|
'io.flow.shopify.external.v0.models.graphql_option': (): io.flow.shopify.external.v0.models.GraphqlOption => ({
|
|
@@ -4346,6 +4397,7 @@ const factories = {
|
|
|
4346
4397
|
'void_invoice',
|
|
4347
4398
|
]),
|
|
4348
4399
|
|
|
4400
|
+
'io.flow.stripe.v0.enums.capability_status': (): io.flow.stripe.v0.enums.CapabilityStatus => faker.helpers.arrayElement(['active', 'disabled', 'inactive', 'pending', 'unrequested']),
|
|
4349
4401
|
'io.flow.stripe.v0.enums.capture_method': (): io.flow.stripe.v0.enums.CaptureMethod => faker.helpers.arrayElement(['automatic', 'manual']),
|
|
4350
4402
|
|
|
4351
4403
|
'io.flow.stripe.v0.enums.card_brand': (): io.flow.stripe.v0.enums.CardBrand => faker.helpers.arrayElement([
|
|
@@ -4376,6 +4428,14 @@ const factories = {
|
|
|
4376
4428
|
'io.flow.stripe.v0.enums.check_outcome': (): io.flow.stripe.v0.enums.CheckOutcome => faker.helpers.arrayElement(['pass', 'fail', 'unavailable', 'unchecked']),
|
|
4377
4429
|
'io.flow.stripe.v0.enums.code_verification_status': (): io.flow.stripe.v0.enums.CodeVerificationStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed']),
|
|
4378
4430
|
'io.flow.stripe.v0.enums.confirmation_method': (): io.flow.stripe.v0.enums.ConfirmationMethod => faker.helpers.arrayElement(['automatic', 'manual']),
|
|
4431
|
+
'io.flow.stripe.v0.enums.connect_report_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportReportingCategory => faker.helpers.arrayElement(['charge', 'refund', 'payout_reversal', 'transfer', 'transfer_reversal']),
|
|
4432
|
+
'io.flow.stripe.v0.enums.connect_report_shop_plan': (): io.flow.stripe.v0.enums.ConnectReportShopPlan => faker.helpers.arrayElement(['shopify_plus', 'standard']),
|
|
4433
|
+
|
|
4434
|
+
'io.flow.stripe.v0.enums.connect_report_transfer_type': (): io.flow.stripe.v0.enums.ConnectReportTransferType => faker.helpers.arrayElement([
|
|
4435
|
+
'ManagedMarketsRefundDebit',
|
|
4436
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
4437
|
+
'ManagedMarketsDisputedAmountDebit',
|
|
4438
|
+
]),
|
|
4379
4439
|
|
|
4380
4440
|
'io.flow.stripe.v0.enums.decline_code': (): io.flow.stripe.v0.enums.DeclineCode => faker.helpers.arrayElement([
|
|
4381
4441
|
'approve_with_id',
|
|
@@ -4562,6 +4622,7 @@ const factories = {
|
|
|
4562
4622
|
]),
|
|
4563
4623
|
|
|
4564
4624
|
'io.flow.stripe.v0.enums.event_type': (): io.flow.stripe.v0.enums.EventType => faker.helpers.arrayElement([
|
|
4625
|
+
'capability.updated',
|
|
4565
4626
|
'charge.captured',
|
|
4566
4627
|
'charge.failed',
|
|
4567
4628
|
'charge.pending',
|
|
@@ -4851,6 +4912,17 @@ const factories = {
|
|
|
4851
4912
|
type: factories['io.flow.stripe.v0.enums.apple_pay_type'](),
|
|
4852
4913
|
}),
|
|
4853
4914
|
|
|
4915
|
+
'io.flow.stripe.v0.models.capability': (): io.flow.stripe.v0.models.Capability => ({
|
|
4916
|
+
id: factories.string(),
|
|
4917
|
+
account: factories.string(),
|
|
4918
|
+
requested: factories.boolean(),
|
|
4919
|
+
requirements: factories.object(),
|
|
4920
|
+
status: factories['io.flow.stripe.v0.enums.capability_status'](),
|
|
4921
|
+
object: factories.string(),
|
|
4922
|
+
future_requirements: factories.object(),
|
|
4923
|
+
requested_at: factories.long(),
|
|
4924
|
+
}),
|
|
4925
|
+
|
|
4854
4926
|
'io.flow.stripe.v0.models.card': (): io.flow.stripe.v0.models.Card => ({
|
|
4855
4927
|
id: factories.string(),
|
|
4856
4928
|
object: factories.string(),
|
|
@@ -4994,6 +5066,46 @@ const factories = {
|
|
|
4994
5066
|
status: factories['io.flow.stripe.v0.enums.code_verification_status'](),
|
|
4995
5067
|
}),
|
|
4996
5068
|
|
|
5069
|
+
'io.flow.stripe.v0.models.connect_report_record': (): io.flow.stripe.v0.models.ConnectReportRecord => ({
|
|
5070
|
+
created_utc: factories.date_time_iso_8601(),
|
|
5071
|
+
charge_id: factories.string(),
|
|
5072
|
+
payment_intent_id: factories.string(),
|
|
5073
|
+
gross: factories.decimal(),
|
|
5074
|
+
fee: factories.decimal(),
|
|
5075
|
+
net: factories.decimal(),
|
|
5076
|
+
currency: factories.string(),
|
|
5077
|
+
connected_account: factories.string(),
|
|
5078
|
+
reporting_category: factories['io.flow.stripe.v0.enums.connect_report_reporting_category'](),
|
|
5079
|
+
dispute_reason: factories['io.flow.stripe.v0.enums.dispute_reason'](),
|
|
5080
|
+
available_on_utc: factories.date_time_iso_8601(),
|
|
5081
|
+
automatic_payout_effective_at_utc: factories.date_time_iso_8601(),
|
|
5082
|
+
source_id: factories.string(),
|
|
5083
|
+
customer_facing_amount: factories.decimal(),
|
|
5084
|
+
customer_facing_currency: factories.string(),
|
|
5085
|
+
payment_method_type: factories.string(),
|
|
5086
|
+
card_brand: factories.string(),
|
|
5087
|
+
statement_descriptor: factories.string(),
|
|
5088
|
+
payment_metadata: factories['io.flow.stripe.v0.models.connect_report_record_payment_metadata'](),
|
|
5089
|
+
transfer_metadata: factories.object(),
|
|
5090
|
+
}),
|
|
5091
|
+
|
|
5092
|
+
'io.flow.stripe.v0.models.connect_report_record_payment_metadata': (): io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata => ({
|
|
5093
|
+
shop_id: factories.integer(),
|
|
5094
|
+
shop_plan: factories['io.flow.stripe.v0.enums.connect_report_shop_plan'](),
|
|
5095
|
+
checkout_id: factories.string(),
|
|
5096
|
+
order_id: factories.integer(),
|
|
5097
|
+
order_transaction_id: factories.integer(),
|
|
5098
|
+
transfer_type: factories['io.flow.stripe.v0.enums.connect_report_transfer_type'](),
|
|
5099
|
+
transfer_exchange_rate: factories.decimal(),
|
|
5100
|
+
charge_total: factories.integer(),
|
|
5101
|
+
charge_currency: factories.string(),
|
|
5102
|
+
charge_exchange_rate: factories.decimal(),
|
|
5103
|
+
duties: factories.integer(),
|
|
5104
|
+
import_taxes: factories.integer(),
|
|
5105
|
+
mor_fee: factories.integer(),
|
|
5106
|
+
fx_fee: factories.integer(),
|
|
5107
|
+
}),
|
|
5108
|
+
|
|
4997
5109
|
'io.flow.stripe.v0.models.customer': (): io.flow.stripe.v0.models.Customer => ({
|
|
4998
5110
|
id: factories.string(),
|
|
4999
5111
|
object: factories.string(),
|
|
@@ -6437,8 +6549,6 @@ const factories = {
|
|
|
6437
6549
|
'io.flow.v0.enums.environment': (): io.flow.v0.enums.Environment => faker.helpers.arrayElement(['sandbox', 'production']),
|
|
6438
6550
|
|
|
6439
6551
|
'io.flow.v0.enums.event_type': (): io.flow.v0.enums.EventType => faker.helpers.arrayElement([
|
|
6440
|
-
'authorization_retry_upserted',
|
|
6441
|
-
'authorization_retry_deleted',
|
|
6442
6552
|
'test_upserted',
|
|
6443
6553
|
'generate_load',
|
|
6444
6554
|
'aldo_item_upserted',
|
|
@@ -6557,8 +6667,6 @@ const factories = {
|
|
|
6557
6667
|
'ge_item_inserted',
|
|
6558
6668
|
'ge_item_updated',
|
|
6559
6669
|
'ge_item_deleted',
|
|
6560
|
-
'ge_product_restriction_result_upserted',
|
|
6561
|
-
'ge_product_restriction_result_deleted',
|
|
6562
6670
|
'hs6_code_upserted',
|
|
6563
6671
|
'hs6_code_deleted',
|
|
6564
6672
|
'hs10_code_upserted',
|
|
@@ -6580,10 +6688,6 @@ const factories = {
|
|
|
6580
6688
|
'label_processing_modification_deleted',
|
|
6581
6689
|
'merchant_application_upserted',
|
|
6582
6690
|
'merchant_application_deleted',
|
|
6583
|
-
'checkout_optin_responses_upserted',
|
|
6584
|
-
'checkout_optin_responses_deleted',
|
|
6585
|
-
'browse_optin_responses_upserted',
|
|
6586
|
-
'browse_optin_responses_deleted',
|
|
6587
6691
|
'order_placed',
|
|
6588
6692
|
'order_placed_v2',
|
|
6589
6693
|
'ready_to_fulfill',
|
|
@@ -6625,6 +6729,8 @@ const factories = {
|
|
|
6625
6729
|
'virtual_card_capture_deleted',
|
|
6626
6730
|
'virtual_card_refund_upserted',
|
|
6627
6731
|
'virtual_card_refund_deleted',
|
|
6732
|
+
'authorization_retry_upserted',
|
|
6733
|
+
'authorization_retry_deleted',
|
|
6628
6734
|
'payment_request_upserted',
|
|
6629
6735
|
'payment_request_deleted',
|
|
6630
6736
|
'price_book_upserted',
|
|
@@ -6694,6 +6800,9 @@ const factories = {
|
|
|
6694
6800
|
'io.flow.v0.enums.fulfillment_method_type': (): io.flow.v0.enums.FulfillmentMethodType => faker.helpers.arrayElement(['fulfillment_method']),
|
|
6695
6801
|
'io.flow.v0.enums.fulfillment_method_value': (): io.flow.v0.enums.FulfillmentMethodValue => faker.helpers.arrayElement(['digital', 'physical']),
|
|
6696
6802
|
'io.flow.v0.enums.fulfillment_routing': (): io.flow.v0.enums.FulfillmentRouting => faker.helpers.arrayElement(['fulfilled_from_center', 'fulfillment_service']),
|
|
6803
|
+
'io.flow.v0.enums.ge_catalog_item_ingestion_response': (): io.flow.v0.enums.GeCatalogItemIngestionResponse => faker.helpers.arrayElement(['ge_catalog_item_ingestion_success', 'ge_catalog_item_ingestion_failure']),
|
|
6804
|
+
'io.flow.v0.enums.ge_environment': (): io.flow.v0.enums.GeEnvironment => faker.helpers.arrayElement(['production', 'sandbox']),
|
|
6805
|
+
'io.flow.v0.enums.ge_event_type': (): io.flow.v0.enums.GeEventType => faker.helpers.arrayElement(['restriction_result', 'ingestion_result']),
|
|
6697
6806
|
'io.flow.v0.enums.generic_error_code': (): io.flow.v0.enums.GenericErrorCode => faker.helpers.arrayElement(['generic_error', 'client_error', 'server_error']),
|
|
6698
6807
|
'io.flow.v0.enums.goods_supply': (): io.flow.v0.enums.GoodsSupply => faker.helpers.arrayElement(['export', 'intra_community', 'local']),
|
|
6699
6808
|
'io.flow.v0.enums.holiday_calendar': (): io.flow.v0.enums.HolidayCalendar => faker.helpers.arrayElement(['us_bank_holidays', 'jewish_holidays']),
|
|
@@ -6826,7 +6935,6 @@ const factories = {
|
|
|
6826
6935
|
'other',
|
|
6827
6936
|
]),
|
|
6828
6937
|
|
|
6829
|
-
'io.flow.v0.enums.optin_response_type': (): io.flow.v0.enums.OptinResponseType => faker.helpers.arrayElement(['not_shown', 'opted_in', 'opted_out']),
|
|
6830
6938
|
'io.flow.v0.enums.order_change_source': (): io.flow.v0.enums.OrderChangeSource => faker.helpers.arrayElement(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']),
|
|
6831
6939
|
|
|
6832
6940
|
'io.flow.v0.enums.order_error_code': (): io.flow.v0.enums.OrderErrorCode => faker.helpers.arrayElement([
|
|
@@ -6908,7 +7016,7 @@ const factories = {
|
|
|
6908
7016
|
'io.flow.v0.enums.order_refund_summary_partial_charged': (): io.flow.v0.enums.OrderRefundSummaryPartialCharged => faker.helpers.arrayElement(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']),
|
|
6909
7017
|
'io.flow.v0.enums.order_status': (): io.flow.v0.enums.OrderStatus => faker.helpers.arrayElement(['open', 'submitted']),
|
|
6910
7018
|
'io.flow.v0.enums.order_storage': (): io.flow.v0.enums.OrderStorage => faker.helpers.arrayElement(['do_not_persist', 'persist']),
|
|
6911
|
-
'io.flow.v0.enums.order_type': (): io.flow.v0.enums.OrderType => faker.helpers.arrayElement(['standard', 'replacement']),
|
|
7019
|
+
'io.flow.v0.enums.order_type': (): io.flow.v0.enums.OrderType => faker.helpers.arrayElement(['standard', 'replacement', 'edit']),
|
|
6912
7020
|
'io.flow.v0.enums.organization_payment_method_tag': (): io.flow.v0.enums.OrganizationPaymentMethodTag => faker.helpers.arrayElement(['deny']),
|
|
6913
7021
|
'io.flow.v0.enums.organization_status': (): io.flow.v0.enums.OrganizationStatus => faker.helpers.arrayElement(['active', 'inactive', 'deactivated', 'provisioned']),
|
|
6914
7022
|
'io.flow.v0.enums.organization_type': (): io.flow.v0.enums.OrganizationType => faker.helpers.arrayElement(['standalone', 'channel']),
|
|
@@ -6965,6 +7073,7 @@ const factories = {
|
|
|
6965
7073
|
'payment_checks_declined',
|
|
6966
7074
|
]),
|
|
6967
7075
|
|
|
7076
|
+
'io.flow.v0.enums.payment_fee_type': (): io.flow.v0.enums.PaymentFeeType => faker.helpers.arrayElement(['fx', 'mor']),
|
|
6968
7077
|
'io.flow.v0.enums.payment_method_capability': (): io.flow.v0.enums.PaymentMethodCapability => faker.helpers.arrayElement(['credit', 'debit']),
|
|
6969
7078
|
'io.flow.v0.enums.payment_method_data_option_type': (): io.flow.v0.enums.PaymentMethodDataOptionType => faker.helpers.arrayElement(['ideal_issuer_option']),
|
|
6970
7079
|
'io.flow.v0.enums.payment_method_rule_content_key': (): io.flow.v0.enums.PaymentMethodRuleContentKey => faker.helpers.arrayElement(['description']),
|
|
@@ -7327,7 +7436,6 @@ const factories = {
|
|
|
7327
7436
|
'tax_refund',
|
|
7328
7437
|
'non_l4l_tax_duty_fx',
|
|
7329
7438
|
'ge_revenue_share',
|
|
7330
|
-
'tax_duty_delta',
|
|
7331
7439
|
]),
|
|
7332
7440
|
|
|
7333
7441
|
'io.flow.v0.enums.trueup_source': (): io.flow.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']),
|
|
@@ -7361,6 +7469,9 @@ const factories = {
|
|
|
7361
7469
|
'inch',
|
|
7362
7470
|
'foot',
|
|
7363
7471
|
'cubic_inch',
|
|
7472
|
+
'cubic_foot',
|
|
7473
|
+
'cubic_millimeter',
|
|
7474
|
+
'cubic_centimeter',
|
|
7364
7475
|
'cubic_meter',
|
|
7365
7476
|
'gram',
|
|
7366
7477
|
'kilogram',
|
|
@@ -7370,7 +7481,15 @@ const factories = {
|
|
|
7370
7481
|
]),
|
|
7371
7482
|
|
|
7372
7483
|
'io.flow.v0.enums.unit_of_time': (): io.flow.v0.enums.UnitOfTime => faker.helpers.arrayElement(['year', 'month', 'week', 'day', 'hour', 'minute']),
|
|
7373
|
-
|
|
7484
|
+
|
|
7485
|
+
'io.flow.v0.enums.unit_of_volume': (): io.flow.v0.enums.UnitOfVolume => faker.helpers.arrayElement([
|
|
7486
|
+
'cubic_inch',
|
|
7487
|
+
'cubic_foot',
|
|
7488
|
+
'cubic_millimeter',
|
|
7489
|
+
'cubic_centimeter',
|
|
7490
|
+
'cubic_meter',
|
|
7491
|
+
]),
|
|
7492
|
+
|
|
7374
7493
|
'io.flow.v0.enums.unit_of_weight': (): io.flow.v0.enums.UnitOfWeight => faker.helpers.arrayElement(['gram', 'kilogram', 'ounce', 'pound']),
|
|
7375
7494
|
'io.flow.v0.enums.update_policy': (): io.flow.v0.enums.UpdatePolicy => faker.helpers.arrayElement(['auto', 'queue', 'discard']),
|
|
7376
7495
|
'io.flow.v0.enums.user_status': (): io.flow.v0.enums.UserStatus => faker.helpers.arrayElement(['pending', 'active', 'inactive']),
|
|
@@ -8343,28 +8462,6 @@ const factories = {
|
|
|
8343
8462
|
hub_code: factories.string(),
|
|
8344
8463
|
}),
|
|
8345
8464
|
|
|
8346
|
-
'io.flow.v0.models.browse_optin_responses': (): io.flow.v0.models.BrowseOptinResponses => ({
|
|
8347
|
-
id: factories.string(),
|
|
8348
|
-
session_id: factories.string(),
|
|
8349
|
-
optin_responses: arrayOf(() => factories['io.flow.v0.models.optin_response']()),
|
|
8350
|
-
}),
|
|
8351
|
-
|
|
8352
|
-
'io.flow.v0.models.browse_optin_responses_deleted': (): io.flow.v0.models.BrowseOptinResponsesDeleted => ({
|
|
8353
|
-
discriminator: 'browse_optin_responses_deleted',
|
|
8354
|
-
event_id: factories.string(),
|
|
8355
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8356
|
-
organization: factories.string(),
|
|
8357
|
-
id: factories.string(),
|
|
8358
|
-
}),
|
|
8359
|
-
|
|
8360
|
-
'io.flow.v0.models.browse_optin_responses_upserted': (): io.flow.v0.models.BrowseOptinResponsesUpserted => ({
|
|
8361
|
-
discriminator: 'browse_optin_responses_upserted',
|
|
8362
|
-
event_id: factories.string(),
|
|
8363
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8364
|
-
organization: factories.string(),
|
|
8365
|
-
browse_optin_responses: factories['io.flow.v0.models.browse_optin_responses'](),
|
|
8366
|
-
}),
|
|
8367
|
-
|
|
8368
8465
|
'io.flow.v0.models.browser_info': (): io.flow.v0.models.BrowserInfo => ({
|
|
8369
8466
|
origin: factories.string(),
|
|
8370
8467
|
language: factories.string(),
|
|
@@ -8394,6 +8491,7 @@ const factories = {
|
|
|
8394
8491
|
attributes: objectOf(() => factories.string()),
|
|
8395
8492
|
status: factories['io.flow.v0.enums.capture_status'](),
|
|
8396
8493
|
base: factories['io.flow.v0.models.money'](),
|
|
8494
|
+
fees: arrayOf(() => factories['io.flow.v0.models.payment_fee']()),
|
|
8397
8495
|
}),
|
|
8398
8496
|
|
|
8399
8497
|
'io.flow.v0.models.capture_deleted': (): io.flow.v0.models.CaptureDeleted => ({
|
|
@@ -9191,29 +9289,6 @@ const factories = {
|
|
|
9191
9289
|
value: factories.string(),
|
|
9192
9290
|
}),
|
|
9193
9291
|
|
|
9194
|
-
'io.flow.v0.models.checkout_optin_responses': (): io.flow.v0.models.CheckoutOptinResponses => ({
|
|
9195
|
-
id: factories.string(),
|
|
9196
|
-
order_number: factories.string(),
|
|
9197
|
-
session_id: factories.string(),
|
|
9198
|
-
optin_responses: arrayOf(() => factories['io.flow.v0.models.optin_response']()),
|
|
9199
|
-
}),
|
|
9200
|
-
|
|
9201
|
-
'io.flow.v0.models.checkout_optin_responses_deleted': (): io.flow.v0.models.CheckoutOptinResponsesDeleted => ({
|
|
9202
|
-
discriminator: 'checkout_optin_responses_deleted',
|
|
9203
|
-
event_id: factories.string(),
|
|
9204
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9205
|
-
organization: factories.string(),
|
|
9206
|
-
id: factories.string(),
|
|
9207
|
-
}),
|
|
9208
|
-
|
|
9209
|
-
'io.flow.v0.models.checkout_optin_responses_upserted': (): io.flow.v0.models.CheckoutOptinResponsesUpserted => ({
|
|
9210
|
-
discriminator: 'checkout_optin_responses_upserted',
|
|
9211
|
-
event_id: factories.string(),
|
|
9212
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9213
|
-
organization: factories.string(),
|
|
9214
|
-
checkout_optin_responses: factories['io.flow.v0.models.checkout_optin_responses'](),
|
|
9215
|
-
}),
|
|
9216
|
-
|
|
9217
9292
|
'io.flow.v0.models.checkout_reference': (): io.flow.v0.models.CheckoutReference => ({
|
|
9218
9293
|
id: factories.string(),
|
|
9219
9294
|
}),
|
|
@@ -10174,6 +10249,7 @@ const factories = {
|
|
|
10174
10249
|
'io.flow.v0.models.duties_taxes_paid_surcharge_service_fee': (): io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee => ({
|
|
10175
10250
|
discriminator: 'duties_taxes_paid_surcharge_service_fee',
|
|
10176
10251
|
amount: factories['io.flow.v0.models.money'](),
|
|
10252
|
+
destination_countries: arrayOf(() => factories.string()),
|
|
10177
10253
|
starts_at: factories.date_time_iso_8601(),
|
|
10178
10254
|
ends_at: factories.date_time_iso_8601(),
|
|
10179
10255
|
}),
|
|
@@ -10726,6 +10802,12 @@ const factories = {
|
|
|
10726
10802
|
'export': factories['io.flow.v0.models.export'](),
|
|
10727
10803
|
}),
|
|
10728
10804
|
|
|
10805
|
+
'io.flow.v0.models.external_card': (): io.flow.v0.models.ExternalCard => ({
|
|
10806
|
+
discriminator: 'external_card',
|
|
10807
|
+
id: factories.string(),
|
|
10808
|
+
type: factories['io.flow.v0.enums.card_type'](),
|
|
10809
|
+
}),
|
|
10810
|
+
|
|
10729
10811
|
'io.flow.v0.models.fee_deduction': (): io.flow.v0.models.FeeDeduction => ({
|
|
10730
10812
|
type: factories['io.flow.v0.enums.fee_deduction_type'](),
|
|
10731
10813
|
amount: factories.decimal(),
|
|
@@ -11024,6 +11106,45 @@ const factories = {
|
|
|
11024
11106
|
landed_costs: arrayOf(() => factories['io.flow.v0.models.lane_landed_cost']()),
|
|
11025
11107
|
}),
|
|
11026
11108
|
|
|
11109
|
+
'io.flow.v0.models.ge_catalog_item_ingestion_result': (): io.flow.v0.models.GeCatalogItemIngestionResult => ({
|
|
11110
|
+
discriminator: 'ge_catalog_item_ingestion_result',
|
|
11111
|
+
event_id: factories.string(),
|
|
11112
|
+
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
11113
|
+
environment: factories['io.flow.v0.enums.ge_environment'](),
|
|
11114
|
+
timestamp: factories.date_time_iso_8601(),
|
|
11115
|
+
source: factories.string(),
|
|
11116
|
+
response: factories['io.flow.v0.enums.ge_catalog_item_ingestion_response'](),
|
|
11117
|
+
message: factories.string(),
|
|
11118
|
+
}),
|
|
11119
|
+
|
|
11120
|
+
'io.flow.v0.models.ge_catalog_item_input': (): io.flow.v0.models.GeCatalogItemInput => ({
|
|
11121
|
+
event_id: factories.string(),
|
|
11122
|
+
number: factories.string(),
|
|
11123
|
+
organization_id: factories.string(),
|
|
11124
|
+
name: factories.string(),
|
|
11125
|
+
description: factories.string(),
|
|
11126
|
+
price: factories['io.flow.v0.models.ge_input_price'](),
|
|
11127
|
+
attributes: factories['io.flow.v0.models.ge_input_attributes'](),
|
|
11128
|
+
locale: factories.string(),
|
|
11129
|
+
id: factories.string(),
|
|
11130
|
+
categories: arrayOf(() => factories.string()),
|
|
11131
|
+
created_at: factories.date_time_iso_8601(),
|
|
11132
|
+
updated_at: factories.date_time_iso_8601(),
|
|
11133
|
+
images: arrayOf(() => factories.string()),
|
|
11134
|
+
}),
|
|
11135
|
+
|
|
11136
|
+
'io.flow.v0.models.ge_input_attributes': (): io.flow.v0.models.GeInputAttributes => ({
|
|
11137
|
+
country_of_origin: factories.string(),
|
|
11138
|
+
ge_hs6_code: factories.string(),
|
|
11139
|
+
product_id: factories.string(),
|
|
11140
|
+
}),
|
|
11141
|
+
|
|
11142
|
+
'io.flow.v0.models.ge_input_price': (): io.flow.v0.models.GeInputPrice => ({
|
|
11143
|
+
amount: factories.double(),
|
|
11144
|
+
currency: factories.string(),
|
|
11145
|
+
label: factories.string(),
|
|
11146
|
+
}),
|
|
11147
|
+
|
|
11027
11148
|
'io.flow.v0.models.ge_item_deleted': (): io.flow.v0.models.GeItemDeleted => ({
|
|
11028
11149
|
discriminator: 'ge_item_deleted',
|
|
11029
11150
|
event_id: factories.string(),
|
|
@@ -11048,19 +11169,23 @@ const factories = {
|
|
|
11048
11169
|
item: factories['io.flow.v0.models.item'](),
|
|
11049
11170
|
}),
|
|
11050
11171
|
|
|
11051
|
-
'io.flow.v0.models.
|
|
11052
|
-
discriminator: '
|
|
11172
|
+
'io.flow.v0.models.ge_product_restriction_result_delete': (): io.flow.v0.models.GeProductRestrictionResultDelete => ({
|
|
11173
|
+
discriminator: 'ge_product_restriction_result_delete',
|
|
11174
|
+
organization: factories.string(),
|
|
11053
11175
|
event_id: factories.string(),
|
|
11176
|
+
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
11177
|
+
environment: factories['io.flow.v0.enums.ge_environment'](),
|
|
11054
11178
|
timestamp: factories.date_time_iso_8601(),
|
|
11055
|
-
organization: factories.string(),
|
|
11056
11179
|
id: factories.string(),
|
|
11057
11180
|
}),
|
|
11058
11181
|
|
|
11059
|
-
'io.flow.v0.models.
|
|
11060
|
-
discriminator: '
|
|
11182
|
+
'io.flow.v0.models.ge_product_restriction_result_upsert': (): io.flow.v0.models.GeProductRestrictionResultUpsert => ({
|
|
11183
|
+
discriminator: 'ge_product_restriction_result_upsert',
|
|
11184
|
+
organization: factories.string(),
|
|
11061
11185
|
event_id: factories.string(),
|
|
11186
|
+
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
11187
|
+
environment: factories['io.flow.v0.enums.ge_environment'](),
|
|
11062
11188
|
timestamp: factories.date_time_iso_8601(),
|
|
11063
|
-
organization: factories.string(),
|
|
11064
11189
|
ge_product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
11065
11190
|
}),
|
|
11066
11191
|
|
|
@@ -12592,11 +12717,6 @@ const factories = {
|
|
|
12592
12717
|
phone: factories.string(),
|
|
12593
12718
|
}),
|
|
12594
12719
|
|
|
12595
|
-
'io.flow.v0.models.optin_response': (): io.flow.v0.models.OptinResponse => ({
|
|
12596
|
-
key: factories.string(),
|
|
12597
|
-
value: factories['io.flow.v0.enums.optin_response_type'](),
|
|
12598
|
-
}),
|
|
12599
|
-
|
|
12600
12720
|
'io.flow.v0.models.option_weight_estimates': (): io.flow.v0.models.OptionWeightEstimates => ({
|
|
12601
12721
|
gravitational: factories['io.flow.v0.models.measurement'](),
|
|
12602
12722
|
dimensional: factories['io.flow.v0.models.measurement'](),
|
|
@@ -13778,6 +13898,12 @@ const factories = {
|
|
|
13778
13898
|
failure_message: factories.string(),
|
|
13779
13899
|
}),
|
|
13780
13900
|
|
|
13901
|
+
'io.flow.v0.models.payment_fee': (): io.flow.v0.models.PaymentFee => ({
|
|
13902
|
+
type: factories['io.flow.v0.enums.payment_fee_type'](),
|
|
13903
|
+
money: factories['io.flow.v0.models.money'](),
|
|
13904
|
+
base: factories['io.flow.v0.models.money'](),
|
|
13905
|
+
}),
|
|
13906
|
+
|
|
13781
13907
|
'io.flow.v0.models.payment_information': (): io.flow.v0.models.PaymentInformation => ({
|
|
13782
13908
|
amount_refundable: factories.decimal(),
|
|
13783
13909
|
amount_refunded: factories.decimal(),
|
|
@@ -14785,6 +14911,10 @@ const factories = {
|
|
|
14785
14911
|
updated_by: factories.string(),
|
|
14786
14912
|
product_restriction_id: factories.string(),
|
|
14787
14913
|
hs_code: factories.string(),
|
|
14914
|
+
|
|
14915
|
+
restricted_regions_by_type: arrayOf(
|
|
14916
|
+
() => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
|
|
14917
|
+
),
|
|
14788
14918
|
}),
|
|
14789
14919
|
|
|
14790
14920
|
'io.flow.v0.models.product_restriction_result_deleted': (): io.flow.v0.models.ProductRestrictionResultDeleted => ({
|
|
@@ -17799,8 +17929,6 @@ const factories = {
|
|
|
17799
17929
|
|
|
17800
17930
|
'io.flow.v0.unions.event': (): io.flow.v0.unions.Event => {
|
|
17801
17931
|
const f = faker.helpers.arrayElement([
|
|
17802
|
-
() => factories['io.flow.v0.models.authorization_retry_upserted'](),
|
|
17803
|
-
() => factories['io.flow.v0.models.authorization_retry_deleted'](),
|
|
17804
17932
|
() => factories['io.flow.v0.models.test_upserted'](),
|
|
17805
17933
|
() => factories['io.flow.v0.models.generate_load'](),
|
|
17806
17934
|
() => factories['io.flow.v0.models.aldo_item_upserted'](),
|
|
@@ -17919,8 +18047,6 @@ const factories = {
|
|
|
17919
18047
|
() => factories['io.flow.v0.models.ge_item_inserted'](),
|
|
17920
18048
|
() => factories['io.flow.v0.models.ge_item_updated'](),
|
|
17921
18049
|
() => factories['io.flow.v0.models.ge_item_deleted'](),
|
|
17922
|
-
() => factories['io.flow.v0.models.ge_product_restriction_result_upserted'](),
|
|
17923
|
-
() => factories['io.flow.v0.models.ge_product_restriction_result_deleted'](),
|
|
17924
18050
|
() => factories['io.flow.v0.models.hs6_code_upserted'](),
|
|
17925
18051
|
() => factories['io.flow.v0.models.hs6_code_deleted'](),
|
|
17926
18052
|
() => factories['io.flow.v0.models.hs10_code_upserted'](),
|
|
@@ -17942,10 +18068,6 @@ const factories = {
|
|
|
17942
18068
|
() => factories['io.flow.v0.models.label_processing_modification_deleted'](),
|
|
17943
18069
|
() => factories['io.flow.v0.models.merchant_application_upserted'](),
|
|
17944
18070
|
() => factories['io.flow.v0.models.merchant_application_deleted'](),
|
|
17945
|
-
() => factories['io.flow.v0.models.checkout_optin_responses_upserted'](),
|
|
17946
|
-
() => factories['io.flow.v0.models.checkout_optin_responses_deleted'](),
|
|
17947
|
-
() => factories['io.flow.v0.models.browse_optin_responses_upserted'](),
|
|
17948
|
-
() => factories['io.flow.v0.models.browse_optin_responses_deleted'](),
|
|
17949
18071
|
() => factories['io.flow.v0.models.order_placed'](),
|
|
17950
18072
|
() => factories['io.flow.v0.models.order_placed_v2'](),
|
|
17951
18073
|
() => factories['io.flow.v0.models.ready_to_fulfill'](),
|
|
@@ -17987,6 +18109,8 @@ const factories = {
|
|
|
17987
18109
|
() => factories['io.flow.v0.models.virtual_card_capture_deleted'](),
|
|
17988
18110
|
() => factories['io.flow.v0.models.virtual_card_refund_upserted'](),
|
|
17989
18111
|
() => factories['io.flow.v0.models.virtual_card_refund_deleted'](),
|
|
18112
|
+
() => factories['io.flow.v0.models.authorization_retry_upserted'](),
|
|
18113
|
+
() => factories['io.flow.v0.models.authorization_retry_deleted'](),
|
|
17990
18114
|
() => factories['io.flow.v0.models.payment_request_upserted'](),
|
|
17991
18115
|
() => factories['io.flow.v0.models.payment_request_deleted'](),
|
|
17992
18116
|
() => factories['io.flow.v0.models.price_book_upserted'](),
|
|
@@ -18020,6 +18144,7 @@ const factories = {
|
|
|
18020
18144
|
() => factories['io.flow.v0.models.card'](),
|
|
18021
18145
|
() => factories['io.flow.v0.models.card_reference'](),
|
|
18022
18146
|
() => factories['io.flow.v0.models.card_summary'](),
|
|
18147
|
+
() => factories['io.flow.v0.models.external_card'](),
|
|
18023
18148
|
]);
|
|
18024
18149
|
|
|
18025
18150
|
return f();
|
|
@@ -18157,6 +18282,16 @@ const factories = {
|
|
|
18157
18282
|
return f();
|
|
18158
18283
|
},
|
|
18159
18284
|
|
|
18285
|
+
'io.flow.v0.unions.ge_restriction_event': (): io.flow.v0.unions.GeRestrictionEvent => {
|
|
18286
|
+
const f = faker.helpers.arrayElement([
|
|
18287
|
+
() => factories['io.flow.v0.models.ge_product_restriction_result_upsert'](),
|
|
18288
|
+
() => factories['io.flow.v0.models.ge_product_restriction_result_delete'](),
|
|
18289
|
+
() => factories['io.flow.v0.models.ge_catalog_item_ingestion_result'](),
|
|
18290
|
+
]);
|
|
18291
|
+
|
|
18292
|
+
return f();
|
|
18293
|
+
},
|
|
18294
|
+
|
|
18160
18295
|
'io.flow.v0.unions.inline_action_configuration': (): io.flow.v0.unions.InlineActionConfiguration => {
|
|
18161
18296
|
const f = faker.helpers.arrayElement(
|
|
18162
18297
|
[() => factories['io.flow.v0.models.browser_inline_action_configuration']()],
|
|
@@ -18931,9 +19066,6 @@ export const makeBillingDiscount = () => factories['io.flow.v0.models.billing_di
|
|
|
18931
19066
|
export const makeBridgeManifest = () => factories['io.flow.v0.models.bridge_manifest']();
|
|
18932
19067
|
export const makeBridgeManifestForm = () => factories['io.flow.v0.models.bridge_manifest_form']();
|
|
18933
19068
|
export const makeBridgeShippingLabelForm = () => factories['io.flow.v0.models.bridge_shipping_label_form']();
|
|
18934
|
-
export const makeBrowseOptinResponses = () => factories['io.flow.v0.models.browse_optin_responses']();
|
|
18935
|
-
export const makeBrowseOptinResponsesDeleted = () => factories['io.flow.v0.models.browse_optin_responses_deleted']();
|
|
18936
|
-
export const makeBrowseOptinResponsesUpserted = () => factories['io.flow.v0.models.browse_optin_responses_upserted']();
|
|
18937
19069
|
export const makeBrowserActionConfiguration = () => factories['io.flow.v0.unions.browser_action_configuration']();
|
|
18938
19070
|
export const makeBrowserInfo = () => factories['io.flow.v0.models.browser_info']();
|
|
18939
19071
|
export const makeBrowserInlineActionConfiguration = () => factories['io.flow.v0.models.browser_inline_action_configuration']();
|
|
@@ -19058,9 +19190,6 @@ export const makeCheckoutAttribute = () => factories['io.flow.v0.models.checkout
|
|
|
19058
19190
|
export const makeCheckoutAttributeForm = () => factories['io.flow.v0.models.checkout_attribute_form']();
|
|
19059
19191
|
export const makeCheckoutItemContent = () => factories['io.flow.v0.models.checkout_item_content']();
|
|
19060
19192
|
export const makeCheckoutItemContentAttribute = () => factories['io.flow.v0.models.checkout_item_content_attribute']();
|
|
19061
|
-
export const makeCheckoutOptinResponses = () => factories['io.flow.v0.models.checkout_optin_responses']();
|
|
19062
|
-
export const makeCheckoutOptinResponsesDeleted = () => factories['io.flow.v0.models.checkout_optin_responses_deleted']();
|
|
19063
|
-
export const makeCheckoutOptinResponsesUpserted = () => factories['io.flow.v0.models.checkout_optin_responses_upserted']();
|
|
19064
19193
|
export const makeCheckoutReference = () => factories['io.flow.v0.models.checkout_reference']();
|
|
19065
19194
|
export const makeCheckoutToken = () => factories['io.flow.v0.models.checkout_token']();
|
|
19066
19195
|
export const makeCheckoutTokenForm = () => factories['io.flow.v0.unions.checkout_token_form']();
|
|
@@ -19338,6 +19467,7 @@ export const makeExportStatus = () => factories['io.flow.v0.enums.export_status'
|
|
|
19338
19467
|
export const makeExportType = () => factories['io.flow.v0.unions.export_type']();
|
|
19339
19468
|
export const makeExportVersion = () => factories['io.flow.v0.models.export_version']();
|
|
19340
19469
|
export const makeExporterOfRecord = () => factories['io.flow.v0.enums.exporter_of_record']();
|
|
19470
|
+
export const makeExternalCard = () => factories['io.flow.v0.models.external_card']();
|
|
19341
19471
|
export const makeFeeDeduction = () => factories['io.flow.v0.models.fee_deduction']();
|
|
19342
19472
|
export const makeFeeDeductionType = () => factories['io.flow.v0.enums.fee_deduction_type']();
|
|
19343
19473
|
export const makeFeeWeight = () => factories['io.flow.v0.models.fee_weight']();
|
|
@@ -19403,11 +19533,19 @@ export const makeFulfillmentRouting = () => factories['io.flow.v0.enums.fulfillm
|
|
|
19403
19533
|
export const makeFullyHarmonizedItemUpserted = () => factories['io.flow.v0.models.fully_harmonized_item_upserted']();
|
|
19404
19534
|
export const makeGatewayAuthenticationData = () => factories['io.flow.v0.unions.gateway_authentication_data']();
|
|
19405
19535
|
export const makeGatewayAuthenticationDataForm = () => factories['io.flow.v0.unions.gateway_authentication_data_form']();
|
|
19536
|
+
export const makeGeCatalogItemIngestionResponse = () => factories['io.flow.v0.enums.ge_catalog_item_ingestion_response']();
|
|
19537
|
+
export const makeGeCatalogItemIngestionResult = () => factories['io.flow.v0.models.ge_catalog_item_ingestion_result']();
|
|
19538
|
+
export const makeGeCatalogItemInput = () => factories['io.flow.v0.models.ge_catalog_item_input']();
|
|
19539
|
+
export const makeGeEnvironment = () => factories['io.flow.v0.enums.ge_environment']();
|
|
19540
|
+
export const makeGeEventType = () => factories['io.flow.v0.enums.ge_event_type']();
|
|
19541
|
+
export const makeGeInputAttributes = () => factories['io.flow.v0.models.ge_input_attributes']();
|
|
19542
|
+
export const makeGeInputPrice = () => factories['io.flow.v0.models.ge_input_price']();
|
|
19406
19543
|
export const makeGeItemDeleted = () => factories['io.flow.v0.models.ge_item_deleted']();
|
|
19407
19544
|
export const makeGeItemInserted = () => factories['io.flow.v0.models.ge_item_inserted']();
|
|
19408
19545
|
export const makeGeItemUpdated = () => factories['io.flow.v0.models.ge_item_updated']();
|
|
19409
|
-
export const
|
|
19410
|
-
export const
|
|
19546
|
+
export const makeGeProductRestrictionResultDelete = () => factories['io.flow.v0.models.ge_product_restriction_result_delete']();
|
|
19547
|
+
export const makeGeProductRestrictionResultUpsert = () => factories['io.flow.v0.models.ge_product_restriction_result_upsert']();
|
|
19548
|
+
export const makeGeRestrictionEvent = () => factories['io.flow.v0.unions.ge_restriction_event']();
|
|
19411
19549
|
export const makeGenerateLoad = () => factories['io.flow.v0.models.generate_load']();
|
|
19412
19550
|
export const makeGenericError = () => factories['io.flow.v0.models.generic_error']();
|
|
19413
19551
|
export const makeGenericErrorCode = () => factories['io.flow.v0.enums.generic_error_code']();
|
|
@@ -19661,8 +19799,6 @@ export const makeOnlineAuthorizationDetails = () => factories['io.flow.v0.unions
|
|
|
19661
19799
|
export const makeOnlineAuthorizationUpsertedV2 = () => factories['io.flow.v0.models.online_authorization_upserted_v2']();
|
|
19662
19800
|
export const makeOnlinePaymentAuthorizationForm = () => factories['io.flow.v0.models.online_payment_authorization_form']();
|
|
19663
19801
|
export const makeOperationsContact = () => factories['io.flow.v0.models.operations_contact']();
|
|
19664
|
-
export const makeOptinResponse = () => factories['io.flow.v0.models.optin_response']();
|
|
19665
|
-
export const makeOptinResponseType = () => factories['io.flow.v0.enums.optin_response_type']();
|
|
19666
19802
|
export const makeOptionWeightEstimates = () => factories['io.flow.v0.models.option_weight_estimates']();
|
|
19667
19803
|
export const makeOptions = () => factories['io.flow.v0.models.options']();
|
|
19668
19804
|
export const makeOrder = () => factories['io.flow.v0.models.order']();
|
|
@@ -19848,6 +19984,8 @@ export const makePaymentError = () => factories['io.flow.v0.models.payment_error
|
|
|
19848
19984
|
export const makePaymentErrorCode = () => factories['io.flow.v0.enums.payment_error_code']();
|
|
19849
19985
|
export const makePaymentFailure = () => factories['io.flow.v0.models.payment_failure']();
|
|
19850
19986
|
export const makePaymentFailureCode = () => factories['io.flow.v0.enums.payment_failure_code']();
|
|
19987
|
+
export const makePaymentFee = () => factories['io.flow.v0.models.payment_fee']();
|
|
19988
|
+
export const makePaymentFeeType = () => factories['io.flow.v0.enums.payment_fee_type']();
|
|
19851
19989
|
export const makePaymentForm = () => factories['io.flow.v0.unions.payment_form']();
|
|
19852
19990
|
export const makePaymentInformation = () => factories['io.flow.v0.models.payment_information']();
|
|
19853
19991
|
export const makePaymentMethod = () => factories['io.flow.v0.models.payment_method']();
|