@flowio/api-factories 0.0.103 → 0.0.105
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 +322 -60
- package/dist/esm/api.js +274 -28
- package/dist/types/api.d.ts +21 -5
- package/package.json +2 -2
- package/src/api.ts +312 -29
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']),
|
|
@@ -4355,6 +4397,7 @@ const factories = {
|
|
|
4355
4397
|
'void_invoice',
|
|
4356
4398
|
]),
|
|
4357
4399
|
|
|
4400
|
+
'io.flow.stripe.v0.enums.capability_status': (): io.flow.stripe.v0.enums.CapabilityStatus => faker.helpers.arrayElement(['active', 'disabled', 'inactive', 'pending', 'unrequested']),
|
|
4358
4401
|
'io.flow.stripe.v0.enums.capture_method': (): io.flow.stripe.v0.enums.CaptureMethod => faker.helpers.arrayElement(['automatic', 'manual']),
|
|
4359
4402
|
|
|
4360
4403
|
'io.flow.stripe.v0.enums.card_brand': (): io.flow.stripe.v0.enums.CardBrand => faker.helpers.arrayElement([
|
|
@@ -4386,6 +4429,60 @@ const factories = {
|
|
|
4386
4429
|
'io.flow.stripe.v0.enums.code_verification_status': (): io.flow.stripe.v0.enums.CodeVerificationStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed']),
|
|
4387
4430
|
'io.flow.stripe.v0.enums.confirmation_method': (): io.flow.stripe.v0.enums.ConfirmationMethod => faker.helpers.arrayElement(['automatic', 'manual']),
|
|
4388
4431
|
|
|
4432
|
+
'io.flow.stripe.v0.enums.connect_report_balance_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportBalanceReportingCategory => faker.helpers.arrayElement([
|
|
4433
|
+
'anticipation_repayment',
|
|
4434
|
+
'climate_order_purchase',
|
|
4435
|
+
'climate_order_refund',
|
|
4436
|
+
'contribution',
|
|
4437
|
+
'currency_conversion',
|
|
4438
|
+
'fee',
|
|
4439
|
+
'other_adjustment',
|
|
4440
|
+
'payment_network_reserve_hold',
|
|
4441
|
+
'payment_network_reserve_release',
|
|
4442
|
+
'payout',
|
|
4443
|
+
'payout_minimum_balance_hold',
|
|
4444
|
+
'payout_minimum_balance_release',
|
|
4445
|
+
'payout_reversal',
|
|
4446
|
+
'risk_reserved_funds',
|
|
4447
|
+
'stripe_balance_payment_debit',
|
|
4448
|
+
'stripe_balance_payment_debit_reversal',
|
|
4449
|
+
'topup',
|
|
4450
|
+
'topup_reversal',
|
|
4451
|
+
'unreconciled_customer_funds',
|
|
4452
|
+
]),
|
|
4453
|
+
|
|
4454
|
+
'io.flow.stripe.v0.enums.connect_report_connect_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportConnectReportingCategory => faker.helpers.arrayElement([
|
|
4455
|
+
'advance',
|
|
4456
|
+
'advance_funding',
|
|
4457
|
+
'connect_collection_transfer',
|
|
4458
|
+
'connect_reserved_funds',
|
|
4459
|
+
'platform_earning',
|
|
4460
|
+
'platform_earning_refund',
|
|
4461
|
+
'transfer',
|
|
4462
|
+
'transfer_reversal',
|
|
4463
|
+
]),
|
|
4464
|
+
|
|
4465
|
+
'io.flow.stripe.v0.enums.connect_report_issuing_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportIssuingReportingCategory => faker.helpers.arrayElement([
|
|
4466
|
+
'issuing_authorization_hold',
|
|
4467
|
+
'issuing_authorization_release',
|
|
4468
|
+
'issuing_disbursement',
|
|
4469
|
+
'issuing_dispute',
|
|
4470
|
+
'issuing_dispute_fraud_liability_debit',
|
|
4471
|
+
'issuing_dispute_provisional_credit',
|
|
4472
|
+
'issuing_dispute_provisional_credit_reversal',
|
|
4473
|
+
'issuing_transaction',
|
|
4474
|
+
]),
|
|
4475
|
+
|
|
4476
|
+
'io.flow.stripe.v0.enums.connect_report_payment_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportPaymentReportingCategory => faker.helpers.arrayElement([
|
|
4477
|
+
'charge',
|
|
4478
|
+
'charge_failure',
|
|
4479
|
+
'dispute',
|
|
4480
|
+
'dispute_reversal',
|
|
4481
|
+
'partial_capture_reversal',
|
|
4482
|
+
'refund',
|
|
4483
|
+
'refund_failure',
|
|
4484
|
+
]),
|
|
4485
|
+
|
|
4389
4486
|
'io.flow.stripe.v0.enums.decline_code': (): io.flow.stripe.v0.enums.DeclineCode => faker.helpers.arrayElement([
|
|
4390
4487
|
'approve_with_id',
|
|
4391
4488
|
'call_issuer',
|
|
@@ -4571,6 +4668,7 @@ const factories = {
|
|
|
4571
4668
|
]),
|
|
4572
4669
|
|
|
4573
4670
|
'io.flow.stripe.v0.enums.event_type': (): io.flow.stripe.v0.enums.EventType => faker.helpers.arrayElement([
|
|
4671
|
+
'capability.updated',
|
|
4574
4672
|
'charge.captured',
|
|
4575
4673
|
'charge.failed',
|
|
4576
4674
|
'charge.pending',
|
|
@@ -4860,6 +4958,17 @@ const factories = {
|
|
|
4860
4958
|
type: factories['io.flow.stripe.v0.enums.apple_pay_type'](),
|
|
4861
4959
|
}),
|
|
4862
4960
|
|
|
4961
|
+
'io.flow.stripe.v0.models.capability': (): io.flow.stripe.v0.models.Capability => ({
|
|
4962
|
+
id: factories.string(),
|
|
4963
|
+
account: factories.string(),
|
|
4964
|
+
requested: factories.boolean(),
|
|
4965
|
+
requirements: factories.object(),
|
|
4966
|
+
status: factories['io.flow.stripe.v0.enums.capability_status'](),
|
|
4967
|
+
object: factories.string(),
|
|
4968
|
+
future_requirements: factories.object(),
|
|
4969
|
+
requested_at: factories.long(),
|
|
4970
|
+
}),
|
|
4971
|
+
|
|
4863
4972
|
'io.flow.stripe.v0.models.card': (): io.flow.stripe.v0.models.Card => ({
|
|
4864
4973
|
id: factories.string(),
|
|
4865
4974
|
object: factories.string(),
|
|
@@ -6019,6 +6128,24 @@ const factories = {
|
|
|
6019
6128
|
return f();
|
|
6020
6129
|
},
|
|
6021
6130
|
|
|
6131
|
+
'io.flow.stripe.v0.unions.connect_report_reporting_category': (): io.flow.stripe.v0.unions.ConnectReportReportingCategory => {
|
|
6132
|
+
const f = faker.helpers.arrayElement([() => ({
|
|
6133
|
+
discriminator: 'connect_report_payment_reporting_category' as const,
|
|
6134
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_payment_reporting_category'](),
|
|
6135
|
+
}), () => ({
|
|
6136
|
+
discriminator: 'connect_report_balance_reporting_category' as const,
|
|
6137
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_balance_reporting_category'](),
|
|
6138
|
+
}), () => ({
|
|
6139
|
+
discriminator: 'connect_report_issuing_reporting_category' as const,
|
|
6140
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_issuing_reporting_category'](),
|
|
6141
|
+
}), () => ({
|
|
6142
|
+
discriminator: 'connect_report_connect_reporting_category' as const,
|
|
6143
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_connect_reporting_category'](),
|
|
6144
|
+
})]);
|
|
6145
|
+
|
|
6146
|
+
return f();
|
|
6147
|
+
},
|
|
6148
|
+
|
|
6022
6149
|
'io.flow.stripe.v0.unions.payment_method_data': (): io.flow.stripe.v0.unions.PaymentMethodData => {
|
|
6023
6150
|
const f = faker.helpers.arrayElement([
|
|
6024
6151
|
() => factories['io.flow.stripe.v0.models.payment_method_data_card'](),
|
|
@@ -6444,8 +6571,6 @@ const factories = {
|
|
|
6444
6571
|
'io.flow.v0.enums.economic_title_location': (): io.flow.v0.enums.EconomicTitleLocation => faker.helpers.arrayElement(['high_seas', 'origination', 'destination']),
|
|
6445
6572
|
'io.flow.v0.enums.entity_identifier_type': (): io.flow.v0.enums.EntityIdentifierType => faker.helpers.arrayElement(['ioss', 'voec', 'zaz']),
|
|
6446
6573
|
'io.flow.v0.enums.environment': (): io.flow.v0.enums.Environment => faker.helpers.arrayElement(['sandbox', 'production']),
|
|
6447
|
-
'io.flow.v0.enums.estimate_origin': (): io.flow.v0.enums.EstimateOrigin => faker.helpers.arrayElement(['Shopify', 'GlobalE', 'Aftership', 'Carrier']),
|
|
6448
|
-
'io.flow.v0.enums.estimate_type': (): io.flow.v0.enums.EstimateType => faker.helpers.arrayElement(['Estimated', 'Final']),
|
|
6449
6574
|
|
|
6450
6575
|
'io.flow.v0.enums.event_type': (): io.flow.v0.enums.EventType => faker.helpers.arrayElement([
|
|
6451
6576
|
'test_upserted',
|
|
@@ -6566,8 +6691,6 @@ const factories = {
|
|
|
6566
6691
|
'ge_item_inserted',
|
|
6567
6692
|
'ge_item_updated',
|
|
6568
6693
|
'ge_item_deleted',
|
|
6569
|
-
'ge_product_restriction_result_upserted',
|
|
6570
|
-
'ge_product_restriction_result_deleted',
|
|
6571
6694
|
'hs6_code_upserted',
|
|
6572
6695
|
'hs6_code_deleted',
|
|
6573
6696
|
'hs10_code_upserted',
|
|
@@ -6632,6 +6755,8 @@ const factories = {
|
|
|
6632
6755
|
'virtual_card_refund_deleted',
|
|
6633
6756
|
'authorization_retry_upserted',
|
|
6634
6757
|
'authorization_retry_deleted',
|
|
6758
|
+
'transfer_upserted',
|
|
6759
|
+
'transfer_deleted',
|
|
6635
6760
|
'payment_request_upserted',
|
|
6636
6761
|
'payment_request_deleted',
|
|
6637
6762
|
'price_book_upserted',
|
|
@@ -6701,6 +6826,9 @@ const factories = {
|
|
|
6701
6826
|
'io.flow.v0.enums.fulfillment_method_type': (): io.flow.v0.enums.FulfillmentMethodType => faker.helpers.arrayElement(['fulfillment_method']),
|
|
6702
6827
|
'io.flow.v0.enums.fulfillment_method_value': (): io.flow.v0.enums.FulfillmentMethodValue => faker.helpers.arrayElement(['digital', 'physical']),
|
|
6703
6828
|
'io.flow.v0.enums.fulfillment_routing': (): io.flow.v0.enums.FulfillmentRouting => faker.helpers.arrayElement(['fulfilled_from_center', 'fulfillment_service']),
|
|
6829
|
+
'io.flow.v0.enums.ge_catalog_item_ingestion_response': (): io.flow.v0.enums.GeCatalogItemIngestionResponse => faker.helpers.arrayElement(['success', 'failure']),
|
|
6830
|
+
'io.flow.v0.enums.ge_environment': (): io.flow.v0.enums.GeEnvironment => faker.helpers.arrayElement(['production', 'sandbox']),
|
|
6831
|
+
'io.flow.v0.enums.ge_event_type': (): io.flow.v0.enums.GeEventType => faker.helpers.arrayElement(['restriction_result', 'ingestion_result']),
|
|
6704
6832
|
'io.flow.v0.enums.generic_error_code': (): io.flow.v0.enums.GenericErrorCode => faker.helpers.arrayElement(['generic_error', 'client_error', 'server_error']),
|
|
6705
6833
|
'io.flow.v0.enums.goods_supply': (): io.flow.v0.enums.GoodsSupply => faker.helpers.arrayElement(['export', 'intra_community', 'local']),
|
|
6706
6834
|
'io.flow.v0.enums.holiday_calendar': (): io.flow.v0.enums.HolidayCalendar => faker.helpers.arrayElement(['us_bank_holidays', 'jewish_holidays']),
|
|
@@ -6914,7 +7042,7 @@ const factories = {
|
|
|
6914
7042
|
'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']),
|
|
6915
7043
|
'io.flow.v0.enums.order_status': (): io.flow.v0.enums.OrderStatus => faker.helpers.arrayElement(['open', 'submitted']),
|
|
6916
7044
|
'io.flow.v0.enums.order_storage': (): io.flow.v0.enums.OrderStorage => faker.helpers.arrayElement(['do_not_persist', 'persist']),
|
|
6917
|
-
'io.flow.v0.enums.order_type': (): io.flow.v0.enums.OrderType => faker.helpers.arrayElement(['standard', 'replacement']),
|
|
7045
|
+
'io.flow.v0.enums.order_type': (): io.flow.v0.enums.OrderType => faker.helpers.arrayElement(['standard', 'replacement', 'edit']),
|
|
6918
7046
|
'io.flow.v0.enums.organization_payment_method_tag': (): io.flow.v0.enums.OrganizationPaymentMethodTag => faker.helpers.arrayElement(['deny']),
|
|
6919
7047
|
'io.flow.v0.enums.organization_status': (): io.flow.v0.enums.OrganizationStatus => faker.helpers.arrayElement(['active', 'inactive', 'deactivated', 'provisioned']),
|
|
6920
7048
|
'io.flow.v0.enums.organization_type': (): io.flow.v0.enums.OrganizationType => faker.helpers.arrayElement(['standalone', 'channel']),
|
|
@@ -6971,6 +7099,7 @@ const factories = {
|
|
|
6971
7099
|
'payment_checks_declined',
|
|
6972
7100
|
]),
|
|
6973
7101
|
|
|
7102
|
+
'io.flow.v0.enums.payment_fee_type': (): io.flow.v0.enums.PaymentFeeType => faker.helpers.arrayElement(['fx', 'mor']),
|
|
6974
7103
|
'io.flow.v0.enums.payment_method_capability': (): io.flow.v0.enums.PaymentMethodCapability => faker.helpers.arrayElement(['credit', 'debit']),
|
|
6975
7104
|
'io.flow.v0.enums.payment_method_data_option_type': (): io.flow.v0.enums.PaymentMethodDataOptionType => faker.helpers.arrayElement(['ideal_issuer_option']),
|
|
6976
7105
|
'io.flow.v0.enums.payment_method_rule_content_key': (): io.flow.v0.enums.PaymentMethodRuleContentKey => faker.helpers.arrayElement(['description']),
|
|
@@ -7331,9 +7460,20 @@ const factories = {
|
|
|
7331
7460
|
'virtual_card_refund',
|
|
7332
7461
|
'failed_payout',
|
|
7333
7462
|
'tax_refund',
|
|
7463
|
+
'duty_refund',
|
|
7334
7464
|
'non_l4l_tax_duty_fx',
|
|
7335
7465
|
'ge_revenue_share',
|
|
7336
|
-
|
|
7466
|
+
]),
|
|
7467
|
+
|
|
7468
|
+
'io.flow.v0.enums.transfer_status': (): io.flow.v0.enums.TransferStatus => faker.helpers.arrayElement(['succeeded', 'canceled']),
|
|
7469
|
+
|
|
7470
|
+
'io.flow.v0.enums.transfer_type': (): io.flow.v0.enums.TransferType => faker.helpers.arrayElement([
|
|
7471
|
+
'payout_to_merchant',
|
|
7472
|
+
'disputed_amount_to_merchant',
|
|
7473
|
+
'duties_and_taxes_adjustment_to_merchant',
|
|
7474
|
+
'disputed_amount_from_merchant',
|
|
7475
|
+
'duties_and_taxes_adjustment_from_merchant',
|
|
7476
|
+
'refund_from_merchant',
|
|
7337
7477
|
]),
|
|
7338
7478
|
|
|
7339
7479
|
'io.flow.v0.enums.trueup_source': (): io.flow.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']),
|
|
@@ -7367,6 +7507,9 @@ const factories = {
|
|
|
7367
7507
|
'inch',
|
|
7368
7508
|
'foot',
|
|
7369
7509
|
'cubic_inch',
|
|
7510
|
+
'cubic_foot',
|
|
7511
|
+
'cubic_millimeter',
|
|
7512
|
+
'cubic_centimeter',
|
|
7370
7513
|
'cubic_meter',
|
|
7371
7514
|
'gram',
|
|
7372
7515
|
'kilogram',
|
|
@@ -7376,7 +7519,15 @@ const factories = {
|
|
|
7376
7519
|
]),
|
|
7377
7520
|
|
|
7378
7521
|
'io.flow.v0.enums.unit_of_time': (): io.flow.v0.enums.UnitOfTime => faker.helpers.arrayElement(['year', 'month', 'week', 'day', 'hour', 'minute']),
|
|
7379
|
-
|
|
7522
|
+
|
|
7523
|
+
'io.flow.v0.enums.unit_of_volume': (): io.flow.v0.enums.UnitOfVolume => faker.helpers.arrayElement([
|
|
7524
|
+
'cubic_inch',
|
|
7525
|
+
'cubic_foot',
|
|
7526
|
+
'cubic_millimeter',
|
|
7527
|
+
'cubic_centimeter',
|
|
7528
|
+
'cubic_meter',
|
|
7529
|
+
]),
|
|
7530
|
+
|
|
7380
7531
|
'io.flow.v0.enums.unit_of_weight': (): io.flow.v0.enums.UnitOfWeight => faker.helpers.arrayElement(['gram', 'kilogram', 'ounce', 'pound']),
|
|
7381
7532
|
'io.flow.v0.enums.update_policy': (): io.flow.v0.enums.UpdatePolicy => faker.helpers.arrayElement(['auto', 'queue', 'discard']),
|
|
7382
7533
|
'io.flow.v0.enums.user_status': (): io.flow.v0.enums.UserStatus => faker.helpers.arrayElement(['pending', 'active', 'inactive']),
|
|
@@ -8378,6 +8529,7 @@ const factories = {
|
|
|
8378
8529
|
attributes: objectOf(() => factories.string()),
|
|
8379
8530
|
status: factories['io.flow.v0.enums.capture_status'](),
|
|
8380
8531
|
base: factories['io.flow.v0.models.money'](),
|
|
8532
|
+
fees: arrayOf(() => factories['io.flow.v0.models.payment_fee']()),
|
|
8381
8533
|
}),
|
|
8382
8534
|
|
|
8383
8535
|
'io.flow.v0.models.capture_deleted': (): io.flow.v0.models.CaptureDeleted => ({
|
|
@@ -8427,6 +8579,7 @@ const factories = {
|
|
|
8427
8579
|
}),
|
|
8428
8580
|
|
|
8429
8581
|
'io.flow.v0.models.capture_reference': (): io.flow.v0.models.CaptureReference => ({
|
|
8582
|
+
discriminator: 'capture_reference',
|
|
8430
8583
|
id: factories.string(),
|
|
8431
8584
|
key: factories.string(),
|
|
8432
8585
|
}),
|
|
@@ -10120,6 +10273,12 @@ const factories = {
|
|
|
10120
10273
|
discounts: arrayOf(() => factories['io.flow.v0.models.discount_form']()),
|
|
10121
10274
|
}),
|
|
10122
10275
|
|
|
10276
|
+
'io.flow.v0.models.dispute_reference': (): io.flow.v0.models.DisputeReference => ({
|
|
10277
|
+
discriminator: 'dispute_reference',
|
|
10278
|
+
id: factories.string(),
|
|
10279
|
+
key: factories.string(),
|
|
10280
|
+
}),
|
|
10281
|
+
|
|
10123
10282
|
'io.flow.v0.models.duration': (): io.flow.v0.models.Duration => ({
|
|
10124
10283
|
unit: factories['io.flow.v0.enums.unit_of_time'](),
|
|
10125
10284
|
value: factories.long(),
|
|
@@ -10135,6 +10294,7 @@ const factories = {
|
|
|
10135
10294
|
'io.flow.v0.models.duties_taxes_paid_surcharge_service_fee': (): io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee => ({
|
|
10136
10295
|
discriminator: 'duties_taxes_paid_surcharge_service_fee',
|
|
10137
10296
|
amount: factories['io.flow.v0.models.money'](),
|
|
10297
|
+
destination_countries: arrayOf(() => factories.string()),
|
|
10138
10298
|
starts_at: factories.date_time_iso_8601(),
|
|
10139
10299
|
ends_at: factories.date_time_iso_8601(),
|
|
10140
10300
|
}),
|
|
@@ -10294,15 +10454,6 @@ const factories = {
|
|
|
10294
10454
|
issuing_country: factories.string(),
|
|
10295
10455
|
}),
|
|
10296
10456
|
|
|
10297
|
-
'io.flow.v0.models.estimate': (): io.flow.v0.models.Estimate => ({
|
|
10298
|
-
id: factories.string(),
|
|
10299
|
-
organization_id: factories.string(),
|
|
10300
|
-
label_id: factories.string(),
|
|
10301
|
-
estimate: factories['io.flow.v0.models.shipping_label_hop_summary'](),
|
|
10302
|
-
type: factories['io.flow.v0.enums.estimate_type'](),
|
|
10303
|
-
origin: factories['io.flow.v0.enums.estimate_origin'](),
|
|
10304
|
-
}),
|
|
10305
|
-
|
|
10306
10457
|
'io.flow.v0.models.estimated_dimensions': (): io.flow.v0.models.EstimatedDimensions => ({
|
|
10307
10458
|
depth: factories['io.flow.v0.models.measurement'](),
|
|
10308
10459
|
length: factories['io.flow.v0.models.measurement'](),
|
|
@@ -10321,6 +10472,11 @@ const factories = {
|
|
|
10321
10472
|
datetime_range: factories['io.flow.v0.models.datetime_range'](),
|
|
10322
10473
|
}),
|
|
10323
10474
|
|
|
10475
|
+
'io.flow.v0.models.exchanged_money': (): io.flow.v0.models.ExchangedMoney => ({
|
|
10476
|
+
fx_rate: factories.decimal(),
|
|
10477
|
+
money: factories['io.flow.v0.models.money'](),
|
|
10478
|
+
}),
|
|
10479
|
+
|
|
10324
10480
|
'io.flow.v0.models.exclusion_rule': (): io.flow.v0.models.ExclusionRule => ({
|
|
10325
10481
|
id: factories.string(),
|
|
10326
10482
|
q: factories.string(),
|
|
@@ -10696,6 +10852,12 @@ const factories = {
|
|
|
10696
10852
|
'export': factories['io.flow.v0.models.export'](),
|
|
10697
10853
|
}),
|
|
10698
10854
|
|
|
10855
|
+
'io.flow.v0.models.external_card': (): io.flow.v0.models.ExternalCard => ({
|
|
10856
|
+
discriminator: 'external_card',
|
|
10857
|
+
id: factories.string(),
|
|
10858
|
+
type: factories['io.flow.v0.enums.card_type'](),
|
|
10859
|
+
}),
|
|
10860
|
+
|
|
10699
10861
|
'io.flow.v0.models.fee_deduction': (): io.flow.v0.models.FeeDeduction => ({
|
|
10700
10862
|
type: factories['io.flow.v0.enums.fee_deduction_type'](),
|
|
10701
10863
|
amount: factories.decimal(),
|
|
@@ -10994,6 +11156,46 @@ const factories = {
|
|
|
10994
11156
|
landed_costs: arrayOf(() => factories['io.flow.v0.models.lane_landed_cost']()),
|
|
10995
11157
|
}),
|
|
10996
11158
|
|
|
11159
|
+
'io.flow.v0.models.ge_catalog_item_ingestion_result': (): io.flow.v0.models.GeCatalogItemIngestionResult => ({
|
|
11160
|
+
discriminator: 'ge_catalog_item_ingestion_result',
|
|
11161
|
+
event_id: factories.string(),
|
|
11162
|
+
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
11163
|
+
environment: factories['io.flow.v0.enums.ge_environment'](),
|
|
11164
|
+
timestamp: factories.date_time_iso_8601(),
|
|
11165
|
+
source: factories.string(),
|
|
11166
|
+
response: factories['io.flow.v0.enums.ge_catalog_item_ingestion_response'](),
|
|
11167
|
+
message: factories.string(),
|
|
11168
|
+
}),
|
|
11169
|
+
|
|
11170
|
+
'io.flow.v0.models.ge_catalog_item_input': (): io.flow.v0.models.GeCatalogItemInput => ({
|
|
11171
|
+
event_id: factories.string(),
|
|
11172
|
+
number: factories.string(),
|
|
11173
|
+
organization_id: factories.string(),
|
|
11174
|
+
name: factories.string(),
|
|
11175
|
+
description: factories.string(),
|
|
11176
|
+
price: factories['io.flow.v0.models.ge_input_price'](),
|
|
11177
|
+
attributes: factories['io.flow.v0.models.ge_input_attributes'](),
|
|
11178
|
+
locale: factories.string(),
|
|
11179
|
+
id: factories.string(),
|
|
11180
|
+
categories: arrayOf(() => factories.string()),
|
|
11181
|
+
created_at: factories.date_time_iso_8601(),
|
|
11182
|
+
updated_at: factories.date_time_iso_8601(),
|
|
11183
|
+
images: arrayOf(() => factories.string()),
|
|
11184
|
+
}),
|
|
11185
|
+
|
|
11186
|
+
'io.flow.v0.models.ge_input_attributes': (): io.flow.v0.models.GeInputAttributes => ({
|
|
11187
|
+
country_of_origin: factories.string(),
|
|
11188
|
+
ge_hs6_code: factories.string(),
|
|
11189
|
+
product_id: factories.string(),
|
|
11190
|
+
ge_organization_name: factories.string(),
|
|
11191
|
+
}),
|
|
11192
|
+
|
|
11193
|
+
'io.flow.v0.models.ge_input_price': (): io.flow.v0.models.GeInputPrice => ({
|
|
11194
|
+
amount: factories.double(),
|
|
11195
|
+
currency: factories.string(),
|
|
11196
|
+
label: factories.string(),
|
|
11197
|
+
}),
|
|
11198
|
+
|
|
10997
11199
|
'io.flow.v0.models.ge_item_deleted': (): io.flow.v0.models.GeItemDeleted => ({
|
|
10998
11200
|
discriminator: 'ge_item_deleted',
|
|
10999
11201
|
event_id: factories.string(),
|
|
@@ -11018,19 +11220,23 @@ const factories = {
|
|
|
11018
11220
|
item: factories['io.flow.v0.models.item'](),
|
|
11019
11221
|
}),
|
|
11020
11222
|
|
|
11021
|
-
'io.flow.v0.models.
|
|
11022
|
-
discriminator: '
|
|
11223
|
+
'io.flow.v0.models.ge_product_restriction_result_delete': (): io.flow.v0.models.GeProductRestrictionResultDelete => ({
|
|
11224
|
+
discriminator: 'ge_product_restriction_result_delete',
|
|
11225
|
+
organization: factories.string(),
|
|
11023
11226
|
event_id: factories.string(),
|
|
11227
|
+
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
11228
|
+
environment: factories['io.flow.v0.enums.ge_environment'](),
|
|
11024
11229
|
timestamp: factories.date_time_iso_8601(),
|
|
11025
|
-
organization: factories.string(),
|
|
11026
11230
|
id: factories.string(),
|
|
11027
11231
|
}),
|
|
11028
11232
|
|
|
11029
|
-
'io.flow.v0.models.
|
|
11030
|
-
discriminator: '
|
|
11233
|
+
'io.flow.v0.models.ge_product_restriction_result_upsert': (): io.flow.v0.models.GeProductRestrictionResultUpsert => ({
|
|
11234
|
+
discriminator: 'ge_product_restriction_result_upsert',
|
|
11235
|
+
organization: factories.string(),
|
|
11031
11236
|
event_id: factories.string(),
|
|
11237
|
+
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
11238
|
+
environment: factories['io.flow.v0.enums.ge_environment'](),
|
|
11032
11239
|
timestamp: factories.date_time_iso_8601(),
|
|
11033
|
-
organization: factories.string(),
|
|
11034
11240
|
ge_product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
11035
11241
|
}),
|
|
11036
11242
|
|
|
@@ -13743,6 +13949,12 @@ const factories = {
|
|
|
13743
13949
|
failure_message: factories.string(),
|
|
13744
13950
|
}),
|
|
13745
13951
|
|
|
13952
|
+
'io.flow.v0.models.payment_fee': (): io.flow.v0.models.PaymentFee => ({
|
|
13953
|
+
type: factories['io.flow.v0.enums.payment_fee_type'](),
|
|
13954
|
+
money: factories['io.flow.v0.models.money'](),
|
|
13955
|
+
base: factories['io.flow.v0.models.money'](),
|
|
13956
|
+
}),
|
|
13957
|
+
|
|
13746
13958
|
'io.flow.v0.models.payment_information': (): io.flow.v0.models.PaymentInformation => ({
|
|
13747
13959
|
amount_refundable: factories.decimal(),
|
|
13748
13960
|
amount_refunded: factories.decimal(),
|
|
@@ -14750,6 +14962,10 @@ const factories = {
|
|
|
14750
14962
|
updated_by: factories.string(),
|
|
14751
14963
|
product_restriction_id: factories.string(),
|
|
14752
14964
|
hs_code: factories.string(),
|
|
14965
|
+
|
|
14966
|
+
restricted_regions_by_type: arrayOf(
|
|
14967
|
+
() => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
|
|
14968
|
+
),
|
|
14753
14969
|
}),
|
|
14754
14970
|
|
|
14755
14971
|
'io.flow.v0.models.product_restriction_result_deleted': (): io.flow.v0.models.ProductRestrictionResultDeleted => ({
|
|
@@ -15052,6 +15268,8 @@ const factories = {
|
|
|
15052
15268
|
discriminator: 'ratecard_estimate_v4',
|
|
15053
15269
|
hops: arrayOf(() => factories['io.flow.v0.models.hop_v2']()),
|
|
15054
15270
|
delivered_duty: factories['io.flow.v0.enums.delivered_duty'](),
|
|
15271
|
+
distance_unit_of_measurement: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
15272
|
+
weight_unit_of_measurement: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
15055
15273
|
dimensional_weight: factories['io.flow.v0.models.measurement'](),
|
|
15056
15274
|
gravitational_weight: factories['io.flow.v0.models.measurement'](),
|
|
15057
15275
|
ratecard_id: factories.string(),
|
|
@@ -15360,6 +15578,7 @@ const factories = {
|
|
|
15360
15578
|
}),
|
|
15361
15579
|
|
|
15362
15580
|
'io.flow.v0.models.refund_reference': (): io.flow.v0.models.RefundReference => ({
|
|
15581
|
+
discriminator: 'refund_reference',
|
|
15363
15582
|
id: factories.string(),
|
|
15364
15583
|
key: factories.string(),
|
|
15365
15584
|
}),
|
|
@@ -17217,6 +17436,33 @@ const factories = {
|
|
|
17217
17436
|
transaction: factories['io.flow.v0.models.transaction'](),
|
|
17218
17437
|
}),
|
|
17219
17438
|
|
|
17439
|
+
'io.flow.v0.models.transfer': (): io.flow.v0.models.Transfer => ({
|
|
17440
|
+
id: factories.string(),
|
|
17441
|
+
type: factories['io.flow.v0.enums.transfer_type'](),
|
|
17442
|
+
money: factories['io.flow.v0.models.money'](),
|
|
17443
|
+
transferred_money: factories['io.flow.v0.models.exchanged_money'](),
|
|
17444
|
+
status: factories['io.flow.v0.enums.transfer_status'](),
|
|
17445
|
+
created_at: factories.date_time_iso_8601(),
|
|
17446
|
+
reference: factories['io.flow.v0.unions.transfer_reference'](),
|
|
17447
|
+
transferred_at: factories.date_time_iso_8601(),
|
|
17448
|
+
}),
|
|
17449
|
+
|
|
17450
|
+
'io.flow.v0.models.transfer_deleted': (): io.flow.v0.models.TransferDeleted => ({
|
|
17451
|
+
discriminator: 'transfer_deleted',
|
|
17452
|
+
event_id: factories.string(),
|
|
17453
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17454
|
+
organization: factories.string(),
|
|
17455
|
+
id: factories.string(),
|
|
17456
|
+
}),
|
|
17457
|
+
|
|
17458
|
+
'io.flow.v0.models.transfer_upserted': (): io.flow.v0.models.TransferUpserted => ({
|
|
17459
|
+
discriminator: 'transfer_upserted',
|
|
17460
|
+
event_id: factories.string(),
|
|
17461
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17462
|
+
organization: factories.string(),
|
|
17463
|
+
transfer: factories['io.flow.v0.models.transfer'](),
|
|
17464
|
+
}),
|
|
17465
|
+
|
|
17220
17466
|
'io.flow.v0.models.transit_estimate': (): io.flow.v0.models.TransitEstimate => ({
|
|
17221
17467
|
origin: factories['io.flow.v0.enums.delivery_window_location'](),
|
|
17222
17468
|
destination: factories['io.flow.v0.enums.delivery_window_location'](),
|
|
@@ -17882,8 +18128,6 @@ const factories = {
|
|
|
17882
18128
|
() => factories['io.flow.v0.models.ge_item_inserted'](),
|
|
17883
18129
|
() => factories['io.flow.v0.models.ge_item_updated'](),
|
|
17884
18130
|
() => factories['io.flow.v0.models.ge_item_deleted'](),
|
|
17885
|
-
() => factories['io.flow.v0.models.ge_product_restriction_result_upserted'](),
|
|
17886
|
-
() => factories['io.flow.v0.models.ge_product_restriction_result_deleted'](),
|
|
17887
18131
|
() => factories['io.flow.v0.models.hs6_code_upserted'](),
|
|
17888
18132
|
() => factories['io.flow.v0.models.hs6_code_deleted'](),
|
|
17889
18133
|
() => factories['io.flow.v0.models.hs10_code_upserted'](),
|
|
@@ -17948,6 +18192,8 @@ const factories = {
|
|
|
17948
18192
|
() => factories['io.flow.v0.models.virtual_card_refund_deleted'](),
|
|
17949
18193
|
() => factories['io.flow.v0.models.authorization_retry_upserted'](),
|
|
17950
18194
|
() => factories['io.flow.v0.models.authorization_retry_deleted'](),
|
|
18195
|
+
() => factories['io.flow.v0.models.transfer_upserted'](),
|
|
18196
|
+
() => factories['io.flow.v0.models.transfer_deleted'](),
|
|
17951
18197
|
() => factories['io.flow.v0.models.payment_request_upserted'](),
|
|
17952
18198
|
() => factories['io.flow.v0.models.payment_request_deleted'](),
|
|
17953
18199
|
() => factories['io.flow.v0.models.price_book_upserted'](),
|
|
@@ -17981,6 +18227,7 @@ const factories = {
|
|
|
17981
18227
|
() => factories['io.flow.v0.models.card'](),
|
|
17982
18228
|
() => factories['io.flow.v0.models.card_reference'](),
|
|
17983
18229
|
() => factories['io.flow.v0.models.card_summary'](),
|
|
18230
|
+
() => factories['io.flow.v0.models.external_card'](),
|
|
17984
18231
|
]);
|
|
17985
18232
|
|
|
17986
18233
|
return f();
|
|
@@ -18118,6 +18365,16 @@ const factories = {
|
|
|
18118
18365
|
return f();
|
|
18119
18366
|
},
|
|
18120
18367
|
|
|
18368
|
+
'io.flow.v0.unions.ge_restriction_event': (): io.flow.v0.unions.GeRestrictionEvent => {
|
|
18369
|
+
const f = faker.helpers.arrayElement([
|
|
18370
|
+
() => factories['io.flow.v0.models.ge_product_restriction_result_upsert'](),
|
|
18371
|
+
() => factories['io.flow.v0.models.ge_product_restriction_result_delete'](),
|
|
18372
|
+
() => factories['io.flow.v0.models.ge_catalog_item_ingestion_result'](),
|
|
18373
|
+
]);
|
|
18374
|
+
|
|
18375
|
+
return f();
|
|
18376
|
+
},
|
|
18377
|
+
|
|
18121
18378
|
'io.flow.v0.unions.inline_action_configuration': (): io.flow.v0.unions.InlineActionConfiguration => {
|
|
18122
18379
|
const f = faker.helpers.arrayElement(
|
|
18123
18380
|
[() => factories['io.flow.v0.models.browser_inline_action_configuration']()],
|
|
@@ -18729,6 +18986,16 @@ const factories = {
|
|
|
18729
18986
|
|
|
18730
18987
|
return f();
|
|
18731
18988
|
},
|
|
18989
|
+
|
|
18990
|
+
'io.flow.v0.unions.transfer_reference': (): io.flow.v0.unions.TransferReference => {
|
|
18991
|
+
const f = faker.helpers.arrayElement([
|
|
18992
|
+
() => factories['io.flow.v0.models.capture_reference'](),
|
|
18993
|
+
() => factories['io.flow.v0.models.refund_reference'](),
|
|
18994
|
+
() => factories['io.flow.v0.models.dispute_reference'](),
|
|
18995
|
+
]);
|
|
18996
|
+
|
|
18997
|
+
return f();
|
|
18998
|
+
},
|
|
18732
18999
|
};
|
|
18733
19000
|
|
|
18734
19001
|
export const makeAbandonedOrderEmailSettings = () => factories['io.flow.v0.models.abandoned_order_email_settings']();
|
|
@@ -19180,6 +19447,7 @@ export const makeDiscountRuleSubsidyEntitlement = () => factories['io.flow.v0.mo
|
|
|
19180
19447
|
export const makeDiscountRuleSubsidyTarget = () => factories['io.flow.v0.enums.discount_rule_subsidy_target']();
|
|
19181
19448
|
export const makeDiscountTarget = () => factories['io.flow.v0.enums.discount_target']();
|
|
19182
19449
|
export const makeDiscountsForm = () => factories['io.flow.v0.models.discounts_form']();
|
|
19450
|
+
export const makeDisputeReference = () => factories['io.flow.v0.models.dispute_reference']();
|
|
19183
19451
|
export const makeDocument = () => factories['io.flow.v0.unions.document']();
|
|
19184
19452
|
export const makeDuration = () => factories['io.flow.v0.models.duration']();
|
|
19185
19453
|
export const makeDutiesTaxesPaidSurchargeRatecardFee = () => factories['io.flow.v0.models.duties_taxes_paid_surcharge_ratecard_fee']();
|
|
@@ -19215,15 +19483,13 @@ export const makeEntity = () => factories['io.flow.v0.unions.entity']();
|
|
|
19215
19483
|
export const makeEntityIdentifier = () => factories['io.flow.v0.models.entity_identifier']();
|
|
19216
19484
|
export const makeEntityIdentifierType = () => factories['io.flow.v0.enums.entity_identifier_type']();
|
|
19217
19485
|
export const makeEnvironment = () => factories['io.flow.v0.enums.environment']();
|
|
19218
|
-
export const makeEstimate = () => factories['io.flow.v0.models.estimate']();
|
|
19219
|
-
export const makeEstimateOrigin = () => factories['io.flow.v0.enums.estimate_origin']();
|
|
19220
|
-
export const makeEstimateType = () => factories['io.flow.v0.enums.estimate_type']();
|
|
19221
19486
|
export const makeEstimatedDimensions = () => factories['io.flow.v0.models.estimated_dimensions']();
|
|
19222
19487
|
export const makeEstimatedWindow = () => factories['io.flow.v0.models.estimated_window']();
|
|
19223
19488
|
export const makeEvent = () => factories['io.flow.v0.unions.event']();
|
|
19224
19489
|
export const makeEventType = () => factories['io.flow.v0.enums.event_type']();
|
|
19225
19490
|
export const makeException = () => factories['io.flow.v0.models.exception']();
|
|
19226
19491
|
export const makeExceptionType = () => factories['io.flow.v0.enums.exception_type']();
|
|
19492
|
+
export const makeExchangedMoney = () => factories['io.flow.v0.models.exchanged_money']();
|
|
19227
19493
|
export const makeExclusionRule = () => factories['io.flow.v0.models.exclusion_rule']();
|
|
19228
19494
|
export const makeExclusionRuleForm = () => factories['io.flow.v0.models.exclusion_rule_form']();
|
|
19229
19495
|
export const makeExclusionRuleState = () => factories['io.flow.v0.enums.exclusion_rule_state']();
|
|
@@ -19296,6 +19562,7 @@ export const makeExportStatus = () => factories['io.flow.v0.enums.export_status'
|
|
|
19296
19562
|
export const makeExportType = () => factories['io.flow.v0.unions.export_type']();
|
|
19297
19563
|
export const makeExportVersion = () => factories['io.flow.v0.models.export_version']();
|
|
19298
19564
|
export const makeExporterOfRecord = () => factories['io.flow.v0.enums.exporter_of_record']();
|
|
19565
|
+
export const makeExternalCard = () => factories['io.flow.v0.models.external_card']();
|
|
19299
19566
|
export const makeFeeDeduction = () => factories['io.flow.v0.models.fee_deduction']();
|
|
19300
19567
|
export const makeFeeDeductionType = () => factories['io.flow.v0.enums.fee_deduction_type']();
|
|
19301
19568
|
export const makeFeeWeight = () => factories['io.flow.v0.models.fee_weight']();
|
|
@@ -19361,11 +19628,19 @@ export const makeFulfillmentRouting = () => factories['io.flow.v0.enums.fulfillm
|
|
|
19361
19628
|
export const makeFullyHarmonizedItemUpserted = () => factories['io.flow.v0.models.fully_harmonized_item_upserted']();
|
|
19362
19629
|
export const makeGatewayAuthenticationData = () => factories['io.flow.v0.unions.gateway_authentication_data']();
|
|
19363
19630
|
export const makeGatewayAuthenticationDataForm = () => factories['io.flow.v0.unions.gateway_authentication_data_form']();
|
|
19631
|
+
export const makeGeCatalogItemIngestionResponse = () => factories['io.flow.v0.enums.ge_catalog_item_ingestion_response']();
|
|
19632
|
+
export const makeGeCatalogItemIngestionResult = () => factories['io.flow.v0.models.ge_catalog_item_ingestion_result']();
|
|
19633
|
+
export const makeGeCatalogItemInput = () => factories['io.flow.v0.models.ge_catalog_item_input']();
|
|
19634
|
+
export const makeGeEnvironment = () => factories['io.flow.v0.enums.ge_environment']();
|
|
19635
|
+
export const makeGeEventType = () => factories['io.flow.v0.enums.ge_event_type']();
|
|
19636
|
+
export const makeGeInputAttributes = () => factories['io.flow.v0.models.ge_input_attributes']();
|
|
19637
|
+
export const makeGeInputPrice = () => factories['io.flow.v0.models.ge_input_price']();
|
|
19364
19638
|
export const makeGeItemDeleted = () => factories['io.flow.v0.models.ge_item_deleted']();
|
|
19365
19639
|
export const makeGeItemInserted = () => factories['io.flow.v0.models.ge_item_inserted']();
|
|
19366
19640
|
export const makeGeItemUpdated = () => factories['io.flow.v0.models.ge_item_updated']();
|
|
19367
|
-
export const
|
|
19368
|
-
export const
|
|
19641
|
+
export const makeGeProductRestrictionResultDelete = () => factories['io.flow.v0.models.ge_product_restriction_result_delete']();
|
|
19642
|
+
export const makeGeProductRestrictionResultUpsert = () => factories['io.flow.v0.models.ge_product_restriction_result_upsert']();
|
|
19643
|
+
export const makeGeRestrictionEvent = () => factories['io.flow.v0.unions.ge_restriction_event']();
|
|
19369
19644
|
export const makeGenerateLoad = () => factories['io.flow.v0.models.generate_load']();
|
|
19370
19645
|
export const makeGenericError = () => factories['io.flow.v0.models.generic_error']();
|
|
19371
19646
|
export const makeGenericErrorCode = () => factories['io.flow.v0.enums.generic_error_code']();
|
|
@@ -19804,6 +20079,8 @@ export const makePaymentError = () => factories['io.flow.v0.models.payment_error
|
|
|
19804
20079
|
export const makePaymentErrorCode = () => factories['io.flow.v0.enums.payment_error_code']();
|
|
19805
20080
|
export const makePaymentFailure = () => factories['io.flow.v0.models.payment_failure']();
|
|
19806
20081
|
export const makePaymentFailureCode = () => factories['io.flow.v0.enums.payment_failure_code']();
|
|
20082
|
+
export const makePaymentFee = () => factories['io.flow.v0.models.payment_fee']();
|
|
20083
|
+
export const makePaymentFeeType = () => factories['io.flow.v0.enums.payment_fee_type']();
|
|
19807
20084
|
export const makePaymentForm = () => factories['io.flow.v0.unions.payment_form']();
|
|
19808
20085
|
export const makePaymentInformation = () => factories['io.flow.v0.models.payment_information']();
|
|
19809
20086
|
export const makePaymentMethod = () => factories['io.flow.v0.models.payment_method']();
|
|
@@ -20395,6 +20672,12 @@ export const makeTransactionNetworkDetailsCard = () => factories['io.flow.v0.mod
|
|
|
20395
20672
|
export const makeTransactionReference = () => factories['io.flow.v0.models.transaction_reference']();
|
|
20396
20673
|
export const makeTransactionSource = () => factories['io.flow.v0.enums.transaction_source']();
|
|
20397
20674
|
export const makeTransactionUpserted = () => factories['io.flow.v0.models.transaction_upserted']();
|
|
20675
|
+
export const makeTransfer = () => factories['io.flow.v0.models.transfer']();
|
|
20676
|
+
export const makeTransferDeleted = () => factories['io.flow.v0.models.transfer_deleted']();
|
|
20677
|
+
export const makeTransferReference = () => factories['io.flow.v0.unions.transfer_reference']();
|
|
20678
|
+
export const makeTransferStatus = () => factories['io.flow.v0.enums.transfer_status']();
|
|
20679
|
+
export const makeTransferType = () => factories['io.flow.v0.enums.transfer_type']();
|
|
20680
|
+
export const makeTransferUpserted = () => factories['io.flow.v0.models.transfer_upserted']();
|
|
20398
20681
|
export const makeTransitEstimate = () => factories['io.flow.v0.models.transit_estimate']();
|
|
20399
20682
|
export const makeTransitWindow = () => factories['io.flow.v0.models.transit_window']();
|
|
20400
20683
|
export const makeTrueupLabelBase = () => factories['io.flow.v0.models.trueup_label_base']();
|