@flowio/api-factories 0.0.91 → 0.0.93
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 +151 -29
- package/dist/esm/api.js +112 -1
- package/dist/types/api.d.ts +11 -0
- package/package.json +2 -2
- package/src/api.ts +125 -1
package/src/api.ts
CHANGED
|
@@ -1900,7 +1900,16 @@ const factories = {
|
|
|
1900
1900
|
'en-CH',
|
|
1901
1901
|
]),
|
|
1902
1902
|
|
|
1903
|
-
'io.flow.stripe.v0.enums.refund_failure_reason': (): io.flow.stripe.v0.enums.RefundFailureReason => faker.helpers.arrayElement([
|
|
1903
|
+
'io.flow.stripe.v0.enums.refund_failure_reason': (): io.flow.stripe.v0.enums.RefundFailureReason => faker.helpers.arrayElement([
|
|
1904
|
+
'charge_for_pending_refund_disputed',
|
|
1905
|
+
'declined',
|
|
1906
|
+
'expired_or_canceled_card',
|
|
1907
|
+
'insufficient_funds',
|
|
1908
|
+
'lost_or_stolen_card',
|
|
1909
|
+
'merchant_request',
|
|
1910
|
+
'unknown',
|
|
1911
|
+
]),
|
|
1912
|
+
|
|
1904
1913
|
'io.flow.stripe.v0.enums.refund_reason': (): io.flow.stripe.v0.enums.RefundReason => faker.helpers.arrayElement(['duplicate', 'fraudulent', 'requested_by_customer']),
|
|
1905
1914
|
'io.flow.stripe.v0.enums.refund_status': (): io.flow.stripe.v0.enums.RefundStatus => faker.helpers.arrayElement(['succeeded', 'failed', 'pending', 'canceled']),
|
|
1906
1915
|
'io.flow.stripe.v0.enums.request_three_d_secure_type': (): io.flow.stripe.v0.enums.RequestThreeDSecureType => faker.helpers.arrayElement(['automatic', 'any']),
|
|
@@ -3369,6 +3378,9 @@ const factories = {
|
|
|
3369
3378
|
'subcatalog_item_deleted',
|
|
3370
3379
|
'catalog_statistics_upserted',
|
|
3371
3380
|
'catalog_statistics_deleted',
|
|
3381
|
+
'item_inserted',
|
|
3382
|
+
'item_updated',
|
|
3383
|
+
'item_deleted',
|
|
3372
3384
|
'channel_upserted',
|
|
3373
3385
|
'channel_deleted',
|
|
3374
3386
|
'channel_currency_upserted',
|
|
@@ -3897,6 +3909,9 @@ const factories = {
|
|
|
3897
3909
|
'twint',
|
|
3898
3910
|
'przelewy24',
|
|
3899
3911
|
'mobilepay',
|
|
3912
|
+
'grabpay',
|
|
3913
|
+
'vipps',
|
|
3914
|
+
'kcp_creditcard',
|
|
3900
3915
|
]),
|
|
3901
3916
|
|
|
3902
3917
|
'io.flow.v0.enums.payout_attachment_type': (): io.flow.v0.enums.PayoutAttachmentType => faker.helpers.arrayElement(['transactions']),
|
|
@@ -3909,6 +3924,8 @@ const factories = {
|
|
|
3909
3924
|
'waiting_for_next_payout_date',
|
|
3910
3925
|
'waiting_for_tracking_info',
|
|
3911
3926
|
'waiting_for_positive_account_balance',
|
|
3927
|
+
'unfulfilled_amount_greater_than_negative_balance',
|
|
3928
|
+
'account_payment_hold',
|
|
3912
3929
|
]),
|
|
3913
3930
|
|
|
3914
3931
|
'io.flow.v0.enums.permitted_http_method': (): io.flow.v0.enums.PermittedHttpMethod => faker.helpers.arrayElement(['GET', 'POST', 'PUT', 'DELETE', 'PATCH']),
|
|
@@ -4006,6 +4023,22 @@ const factories = {
|
|
|
4006
4023
|
'io.flow.v0.enums.quote_error_code': (): io.flow.v0.enums.QuoteErrorCode => faker.helpers.arrayElement(['generic_error', 'items_not_available', 'shipping_unavailable']),
|
|
4007
4024
|
'io.flow.v0.enums.ratecard_owner': (): io.flow.v0.enums.RatecardOwner => faker.helpers.arrayElement(['flow', 'organization']),
|
|
4008
4025
|
'io.flow.v0.enums.refund_decline_code': (): io.flow.v0.enums.RefundDeclineCode => faker.helpers.arrayElement(['expired', 'insufficient_funds', 'unknown']),
|
|
4026
|
+
|
|
4027
|
+
'io.flow.v0.enums.refund_failure_category': (): io.flow.v0.enums.RefundFailureCategory => faker.helpers.arrayElement([
|
|
4028
|
+
'amount_too_high',
|
|
4029
|
+
'amount_too_low',
|
|
4030
|
+
'not_enough_balance',
|
|
4031
|
+
'insufficient_funds',
|
|
4032
|
+
'refund_period_expired',
|
|
4033
|
+
'dispute',
|
|
4034
|
+
'not_captured',
|
|
4035
|
+
'unsupported_payment_method',
|
|
4036
|
+
'unsupported_partial_refund',
|
|
4037
|
+
'invalid_currency',
|
|
4038
|
+
'card_no_longer_valid',
|
|
4039
|
+
'general',
|
|
4040
|
+
]),
|
|
4041
|
+
|
|
4009
4042
|
'io.flow.v0.enums.refund_status': (): io.flow.v0.enums.RefundStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed', 'canceled']),
|
|
4010
4043
|
'io.flow.v0.enums.region_type': (): io.flow.v0.enums.RegionType => faker.helpers.arrayElement(['state', 'province', 'jurisdiction']),
|
|
4011
4044
|
'io.flow.v0.enums.restricted_review_status': (): io.flow.v0.enums.RestrictedReviewStatus => faker.helpers.arrayElement(['in_review', 'reviewed']),
|
|
@@ -4149,6 +4182,7 @@ const factories = {
|
|
|
4149
4182
|
'virtual_card_capture',
|
|
4150
4183
|
'virtual_card_refund',
|
|
4151
4184
|
'failed_payout',
|
|
4185
|
+
'tax_refund',
|
|
4152
4186
|
]),
|
|
4153
4187
|
|
|
4154
4188
|
'io.flow.v0.enums.trueup_source': (): io.flow.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']),
|
|
@@ -6734,6 +6768,12 @@ const factories = {
|
|
|
6734
6768
|
minimum: factories.decimal(),
|
|
6735
6769
|
}),
|
|
6736
6770
|
|
|
6771
|
+
'io.flow.v0.models.destination_contact_detail': (): io.flow.v0.models.DestinationContactDetail => ({
|
|
6772
|
+
title: factories.string(),
|
|
6773
|
+
country: factories.string(),
|
|
6774
|
+
import_identifier: factories.string(),
|
|
6775
|
+
}),
|
|
6776
|
+
|
|
6737
6777
|
'io.flow.v0.models.detailed_shipping_label_form': (): io.flow.v0.models.DetailedShippingLabelForm => ({
|
|
6738
6778
|
discriminator: 'detailed_shipping_label_form',
|
|
6739
6779
|
destination: factories['io.flow.v0.models.shipping_address'](),
|
|
@@ -8421,12 +8461,21 @@ const factories = {
|
|
|
8421
8461
|
local: factories['io.flow.v0.models.local'](),
|
|
8422
8462
|
created_at: factories.date_time_iso_8601(),
|
|
8423
8463
|
updated_at: factories.date_time_iso_8601(),
|
|
8464
|
+
deleted_at: factories.date_time_iso_8601(),
|
|
8424
8465
|
}),
|
|
8425
8466
|
|
|
8426
8467
|
'io.flow.v0.models.item_attributes_patch_form': (): io.flow.v0.models.ItemAttributesPatchForm => ({
|
|
8427
8468
|
attributes: objectOf(() => factories.string()),
|
|
8428
8469
|
}),
|
|
8429
8470
|
|
|
8471
|
+
'io.flow.v0.models.item_deleted': (): io.flow.v0.models.ItemDeleted => ({
|
|
8472
|
+
discriminator: 'item_deleted',
|
|
8473
|
+
event_id: factories.string(),
|
|
8474
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8475
|
+
organization: factories.string(),
|
|
8476
|
+
item: factories['io.flow.v0.models.item'](),
|
|
8477
|
+
}),
|
|
8478
|
+
|
|
8430
8479
|
'io.flow.v0.models.item_form': (): io.flow.v0.models.ItemForm => ({
|
|
8431
8480
|
number: factories.string(),
|
|
8432
8481
|
locale: factories.string(),
|
|
@@ -8438,6 +8487,7 @@ const factories = {
|
|
|
8438
8487
|
attributes: objectOf(() => factories.string()),
|
|
8439
8488
|
dimensions: factories['io.flow.v0.models.dimensions'](),
|
|
8440
8489
|
images: arrayOf(() => factories['io.flow.v0.models.image_form']()),
|
|
8490
|
+
deleted_at: factories.date_time_iso_8601(),
|
|
8441
8491
|
}),
|
|
8442
8492
|
|
|
8443
8493
|
'io.flow.v0.models.item_form_overlay': (): io.flow.v0.models.ItemFormOverlay => ({
|
|
@@ -8451,6 +8501,7 @@ const factories = {
|
|
|
8451
8501
|
attributes: objectOf(() => factories.string()),
|
|
8452
8502
|
dimensions: factories['io.flow.v0.models.dimensions'](),
|
|
8453
8503
|
images: arrayOf(() => factories['io.flow.v0.models.image_form']()),
|
|
8504
|
+
deleted_at: factories.date_time_iso_8601(),
|
|
8454
8505
|
}),
|
|
8455
8506
|
|
|
8456
8507
|
'io.flow.v0.models.item_form_overlay_form': (): io.flow.v0.models.ItemFormOverlayForm => ({
|
|
@@ -8463,6 +8514,15 @@ const factories = {
|
|
|
8463
8514
|
attributes: objectOf(() => factories.string()),
|
|
8464
8515
|
dimensions: factories['io.flow.v0.models.dimensions'](),
|
|
8465
8516
|
images: arrayOf(() => factories['io.flow.v0.models.image_form']()),
|
|
8517
|
+
deleted_at: factories.date_time_iso_8601(),
|
|
8518
|
+
}),
|
|
8519
|
+
|
|
8520
|
+
'io.flow.v0.models.item_inserted': (): io.flow.v0.models.ItemInserted => ({
|
|
8521
|
+
discriminator: 'item_inserted',
|
|
8522
|
+
event_id: factories.string(),
|
|
8523
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8524
|
+
organization: factories.string(),
|
|
8525
|
+
item: factories['io.flow.v0.models.item'](),
|
|
8466
8526
|
}),
|
|
8467
8527
|
|
|
8468
8528
|
'io.flow.v0.models.item_margin': (): io.flow.v0.models.ItemMargin => ({
|
|
@@ -8589,6 +8649,14 @@ const factories = {
|
|
|
8589
8649
|
categories: factories.long(),
|
|
8590
8650
|
}),
|
|
8591
8651
|
|
|
8652
|
+
'io.flow.v0.models.item_updated': (): io.flow.v0.models.ItemUpdated => ({
|
|
8653
|
+
discriminator: 'item_updated',
|
|
8654
|
+
event_id: factories.string(),
|
|
8655
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8656
|
+
organization: factories.string(),
|
|
8657
|
+
item: factories['io.flow.v0.models.item'](),
|
|
8658
|
+
}),
|
|
8659
|
+
|
|
8592
8660
|
'io.flow.v0.models.item_version': (): io.flow.v0.models.ItemVersion => ({
|
|
8593
8661
|
id: factories.string(),
|
|
8594
8662
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -8769,6 +8837,7 @@ const factories = {
|
|
|
8769
8837
|
in_transit: factories['io.flow.v0.models.label_tracking_summary_update'](),
|
|
8770
8838
|
delivered: factories['io.flow.v0.models.label_tracking_summary_update'](),
|
|
8771
8839
|
rejected: factories['io.flow.v0.models.label_tracking_summary_update'](),
|
|
8840
|
+
returned: factories['io.flow.v0.models.label_tracking_summary_update'](),
|
|
8772
8841
|
}),
|
|
8773
8842
|
|
|
8774
8843
|
'io.flow.v0.models.label_tracking_summary_update': (): io.flow.v0.models.LabelTrackingSummaryUpdate => ({
|
|
@@ -9504,6 +9573,7 @@ const factories = {
|
|
|
9504
9573
|
tax_registration: factories['io.flow.v0.models.tax_registration'](),
|
|
9505
9574
|
geo: factories['io.flow.v0.models.order_geo'](),
|
|
9506
9575
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
9576
|
+
destination_contact_details: arrayOf(() => factories['io.flow.v0.models.destination_contact_detail']()),
|
|
9507
9577
|
}),
|
|
9508
9578
|
|
|
9509
9579
|
'io.flow.v0.models.order_address': (): io.flow.v0.models.OrderAddress => ({
|
|
@@ -10772,12 +10842,22 @@ const factories = {
|
|
|
10772
10842
|
reference: factories.string(),
|
|
10773
10843
|
}),
|
|
10774
10844
|
|
|
10845
|
+
'io.flow.v0.models.payment_method_data_init_grabpay': (): io.flow.v0.models.PaymentMethodDataInitGrabpay => ({
|
|
10846
|
+
type: 'init_grabpay',
|
|
10847
|
+
reference: factories.string(),
|
|
10848
|
+
}),
|
|
10849
|
+
|
|
10775
10850
|
'io.flow.v0.models.payment_method_data_init_ideal': (): io.flow.v0.models.PaymentMethodDataInitIdeal => ({
|
|
10776
10851
|
type: 'init_ideal',
|
|
10777
10852
|
issuer: factories.string(),
|
|
10778
10853
|
reference: factories.string(),
|
|
10779
10854
|
}),
|
|
10780
10855
|
|
|
10856
|
+
'io.flow.v0.models.payment_method_data_init_kcp_creditcard': (): io.flow.v0.models.PaymentMethodDataInitKcpCreditcard => ({
|
|
10857
|
+
type: 'init_kcp_creditcard',
|
|
10858
|
+
reference: factories.string(),
|
|
10859
|
+
}),
|
|
10860
|
+
|
|
10781
10861
|
'io.flow.v0.models.payment_method_data_init_klarna': (): io.flow.v0.models.PaymentMethodDataInitKlarna => ({
|
|
10782
10862
|
type: 'init_klarna',
|
|
10783
10863
|
reference: factories.string(),
|
|
@@ -10808,6 +10888,11 @@ const factories = {
|
|
|
10808
10888
|
reference: factories.string(),
|
|
10809
10889
|
}),
|
|
10810
10890
|
|
|
10891
|
+
'io.flow.v0.models.payment_method_data_init_vipps': (): io.flow.v0.models.PaymentMethodDataInitVipps => ({
|
|
10892
|
+
type: 'init_vipps',
|
|
10893
|
+
reference: factories.string(),
|
|
10894
|
+
}),
|
|
10895
|
+
|
|
10811
10896
|
'io.flow.v0.models.payment_method_data_option_logo_svg': (): io.flow.v0.models.PaymentMethodDataOptionLogoSvg => ({
|
|
10812
10897
|
type: 'svg',
|
|
10813
10898
|
url: factories.string(),
|
|
@@ -10903,12 +10988,22 @@ const factories = {
|
|
|
10903
10988
|
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10904
10989
|
}),
|
|
10905
10990
|
|
|
10991
|
+
'io.flow.v0.models.payment_method_summary_grabpay': (): io.flow.v0.models.PaymentMethodSummaryGrabpay => ({
|
|
10992
|
+
type: 'grabpay',
|
|
10993
|
+
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10994
|
+
}),
|
|
10995
|
+
|
|
10906
10996
|
'io.flow.v0.models.payment_method_summary_ideal': (): io.flow.v0.models.PaymentMethodSummaryIdeal => ({
|
|
10907
10997
|
type: 'ideal',
|
|
10908
10998
|
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10909
10999
|
issuer: factories.string(),
|
|
10910
11000
|
}),
|
|
10911
11001
|
|
|
11002
|
+
'io.flow.v0.models.payment_method_summary_kcp_creditcard': (): io.flow.v0.models.PaymentMethodSummaryKcpCreditcard => ({
|
|
11003
|
+
type: 'kcp_creditcard',
|
|
11004
|
+
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
11005
|
+
}),
|
|
11006
|
+
|
|
10912
11007
|
'io.flow.v0.models.payment_method_summary_klarna': (): io.flow.v0.models.PaymentMethodSummaryKlarna => ({
|
|
10913
11008
|
type: 'klarna',
|
|
10914
11009
|
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
@@ -10939,6 +11034,11 @@ const factories = {
|
|
|
10939
11034
|
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10940
11035
|
}),
|
|
10941
11036
|
|
|
11037
|
+
'io.flow.v0.models.payment_method_summary_vipps': (): io.flow.v0.models.PaymentMethodSummaryVipps => ({
|
|
11038
|
+
type: 'vipps',
|
|
11039
|
+
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
11040
|
+
}),
|
|
11041
|
+
|
|
10942
11042
|
'io.flow.v0.models.payment_order_details_line_item': (): io.flow.v0.models.PaymentOrderDetailsLineItem => ({
|
|
10943
11043
|
id: factories.string(),
|
|
10944
11044
|
description: factories.string(),
|
|
@@ -11611,6 +11711,8 @@ const factories = {
|
|
|
11611
11711
|
review_status: factories['io.flow.v0.enums.review_status'](),
|
|
11612
11712
|
rules: arrayOf(() => factories['io.flow.v0.enums.product_restriction_rule']()),
|
|
11613
11713
|
updated_by: factories.string(),
|
|
11714
|
+
product_restriction_id: factories.string(),
|
|
11715
|
+
hs_code: factories.string(),
|
|
11614
11716
|
}),
|
|
11615
11717
|
|
|
11616
11718
|
'io.flow.v0.models.product_restriction_result_deleted': (): io.flow.v0.models.ProductRestrictionResultDeleted => ({
|
|
@@ -12111,6 +12213,8 @@ const factories = {
|
|
|
12111
12213
|
attributes: objectOf(() => factories.string()),
|
|
12112
12214
|
status: factories['io.flow.v0.enums.refund_status'](),
|
|
12113
12215
|
base: factories['io.flow.v0.models.money'](),
|
|
12216
|
+
failure_category: factories['io.flow.v0.enums.refund_failure_category'](),
|
|
12217
|
+
failure_psp_reason: factories.string(),
|
|
12114
12218
|
}),
|
|
12115
12219
|
|
|
12116
12220
|
'io.flow.v0.models.refund_capture': (): io.flow.v0.models.RefundCapture => ({
|
|
@@ -14884,6 +14988,9 @@ const factories = {
|
|
|
14884
14988
|
() => factories['io.flow.v0.models.subcatalog_item_deleted'](),
|
|
14885
14989
|
() => factories['io.flow.v0.models.catalog_statistics_upserted'](),
|
|
14886
14990
|
() => factories['io.flow.v0.models.catalog_statistics_deleted'](),
|
|
14991
|
+
() => factories['io.flow.v0.models.item_inserted'](),
|
|
14992
|
+
() => factories['io.flow.v0.models.item_updated'](),
|
|
14993
|
+
() => factories['io.flow.v0.models.item_deleted'](),
|
|
14887
14994
|
() => factories['io.flow.v0.models.channel_upserted'](),
|
|
14888
14995
|
() => factories['io.flow.v0.models.channel_deleted'](),
|
|
14889
14996
|
() => factories['io.flow.v0.models.channel_currency_upserted'](),
|
|
@@ -15413,7 +15520,10 @@ const factories = {
|
|
|
15413
15520
|
() => factories['io.flow.v0.models.payment_method_data_init_twint'](),
|
|
15414
15521
|
() => factories['io.flow.v0.models.payment_method_data_init_przelewy24'](),
|
|
15415
15522
|
() => factories['io.flow.v0.models.payment_method_data_init_mobilepay'](),
|
|
15523
|
+
() => factories['io.flow.v0.models.payment_method_data_init_kcp_creditcard'](),
|
|
15416
15524
|
() => factories['io.flow.v0.models.payment_method_data_init_bancontact'](),
|
|
15525
|
+
() => factories['io.flow.v0.models.payment_method_data_init_grabpay'](),
|
|
15526
|
+
() => factories['io.flow.v0.models.payment_method_data_init_vipps'](),
|
|
15417
15527
|
() => factories['io.flow.v0.models.payment_method_data_validate_applepay'](),
|
|
15418
15528
|
() => factories['io.flow.v0.models.payment_method_data_authorize_card'](),
|
|
15419
15529
|
() => factories['io.flow.v0.models.payment_method_data_authorize_googlepay'](),
|
|
@@ -15472,10 +15582,13 @@ const factories = {
|
|
|
15472
15582
|
() => factories['io.flow.v0.models.payment_method_summary_paypal'](),
|
|
15473
15583
|
() => factories['io.flow.v0.models.payment_method_summary_ideal'](),
|
|
15474
15584
|
() => factories['io.flow.v0.models.payment_method_summary_twint'](),
|
|
15585
|
+
() => factories['io.flow.v0.models.payment_method_summary_vipps'](),
|
|
15475
15586
|
() => factories['io.flow.v0.models.payment_method_summary_przelewy24'](),
|
|
15476
15587
|
() => factories['io.flow.v0.models.payment_method_summary_mobilepay'](),
|
|
15588
|
+
() => factories['io.flow.v0.models.payment_method_summary_kcp_creditcard'](),
|
|
15477
15589
|
() => factories['io.flow.v0.models.payment_method_summary_sofort'](),
|
|
15478
15590
|
() => factories['io.flow.v0.models.payment_method_summary_bancontact'](),
|
|
15591
|
+
() => factories['io.flow.v0.models.payment_method_summary_grabpay'](),
|
|
15479
15592
|
]);
|
|
15480
15593
|
|
|
15481
15594
|
return f();
|
|
@@ -16248,6 +16361,7 @@ export const makeDeliveryWindowSummary = () => factories['io.flow.v0.models.deli
|
|
|
16248
16361
|
export const makeDeminimis = () => factories['io.flow.v0.unions.deminimis']();
|
|
16249
16362
|
export const makeDeminimisPerItem = () => factories['io.flow.v0.models.deminimis_per_item']();
|
|
16250
16363
|
export const makeDeminimisSimple = () => factories['io.flow.v0.models.deminimis_simple']();
|
|
16364
|
+
export const makeDestinationContactDetail = () => factories['io.flow.v0.models.destination_contact_detail']();
|
|
16251
16365
|
export const makeDetailedShippingLabelForm = () => factories['io.flow.v0.models.detailed_shipping_label_form']();
|
|
16252
16366
|
export const makeDetailedShippingNotificationForm = () => factories['io.flow.v0.models.detailed_shipping_notification_form']();
|
|
16253
16367
|
export const makeDetailedTaxRegistration = () => factories['io.flow.v0.models.detailed_tax_registration']();
|
|
@@ -16565,10 +16679,12 @@ export const makeIssuerV1 = () => factories['io.flow.v0.models.issuer_v1']();
|
|
|
16565
16679
|
export const makeItem = () => factories['io.flow.v0.models.item']();
|
|
16566
16680
|
export const makeItemAttributesPatchForm = () => factories['io.flow.v0.models.item_attributes_patch_form']();
|
|
16567
16681
|
export const makeItemAvailabilityStatus = () => factories['io.flow.v0.enums.item_availability_status']();
|
|
16682
|
+
export const makeItemDeleted = () => factories['io.flow.v0.models.item_deleted']();
|
|
16568
16683
|
export const makeItemForm = () => factories['io.flow.v0.models.item_form']();
|
|
16569
16684
|
export const makeItemFormOverlay = () => factories['io.flow.v0.models.item_form_overlay']();
|
|
16570
16685
|
export const makeItemFormOverlayForm = () => factories['io.flow.v0.models.item_form_overlay_form']();
|
|
16571
16686
|
export const makeItemIdentifier = () => factories['io.flow.v0.enums.item_identifier']();
|
|
16687
|
+
export const makeItemInserted = () => factories['io.flow.v0.models.item_inserted']();
|
|
16572
16688
|
export const makeItemMargin = () => factories['io.flow.v0.models.item_margin']();
|
|
16573
16689
|
export const makeItemMarginDeletedV2 = () => factories['io.flow.v0.models.item_margin_deleted_v2']();
|
|
16574
16690
|
export const makeItemMarginPostForm = () => factories['io.flow.v0.models.item_margin_post_form']();
|
|
@@ -16585,6 +16701,7 @@ export const makeItemSalesMarginDeleted = () => factories['io.flow.v0.models.ite
|
|
|
16585
16701
|
export const makeItemSalesMarginUpserted = () => factories['io.flow.v0.models.item_sales_margin_upserted']();
|
|
16586
16702
|
export const makeItemShippingPricing = () => factories['io.flow.v0.models.item_shipping_pricing']();
|
|
16587
16703
|
export const makeItemStatistics = () => factories['io.flow.v0.models.item_statistics']();
|
|
16704
|
+
export const makeItemUpdated = () => factories['io.flow.v0.models.item_updated']();
|
|
16588
16705
|
export const makeItemVersion = () => factories['io.flow.v0.models.item_version']();
|
|
16589
16706
|
export const makeJsonpResponse = () => factories['io.flow.v0.models.jsonp_response']();
|
|
16590
16707
|
export const makeKlarnaPaymentCategory = () => factories['io.flow.v0.models.klarna_payment_category']();
|
|
@@ -16949,13 +17066,16 @@ export const makePaymentMethodDataInitAfterpay = () => factories['io.flow.v0.mod
|
|
|
16949
17066
|
export const makePaymentMethodDataInitApplepay = () => factories['io.flow.v0.models.payment_method_data_init_applepay']();
|
|
16950
17067
|
export const makePaymentMethodDataInitBancontact = () => factories['io.flow.v0.models.payment_method_data_init_bancontact']();
|
|
16951
17068
|
export const makePaymentMethodDataInitGooglepay = () => factories['io.flow.v0.models.payment_method_data_init_googlepay']();
|
|
17069
|
+
export const makePaymentMethodDataInitGrabpay = () => factories['io.flow.v0.models.payment_method_data_init_grabpay']();
|
|
16952
17070
|
export const makePaymentMethodDataInitIdeal = () => factories['io.flow.v0.models.payment_method_data_init_ideal']();
|
|
17071
|
+
export const makePaymentMethodDataInitKcpCreditcard = () => factories['io.flow.v0.models.payment_method_data_init_kcp_creditcard']();
|
|
16953
17072
|
export const makePaymentMethodDataInitKlarna = () => factories['io.flow.v0.models.payment_method_data_init_klarna']();
|
|
16954
17073
|
export const makePaymentMethodDataInitMobilepay = () => factories['io.flow.v0.models.payment_method_data_init_mobilepay']();
|
|
16955
17074
|
export const makePaymentMethodDataInitPaypal = () => factories['io.flow.v0.models.payment_method_data_init_paypal']();
|
|
16956
17075
|
export const makePaymentMethodDataInitPrzelewy24 = () => factories['io.flow.v0.models.payment_method_data_init_przelewy24']();
|
|
16957
17076
|
export const makePaymentMethodDataInitSofort = () => factories['io.flow.v0.models.payment_method_data_init_sofort']();
|
|
16958
17077
|
export const makePaymentMethodDataInitTwint = () => factories['io.flow.v0.models.payment_method_data_init_twint']();
|
|
17078
|
+
export const makePaymentMethodDataInitVipps = () => factories['io.flow.v0.models.payment_method_data_init_vipps']();
|
|
16959
17079
|
export const makePaymentMethodDataOptionLogo = () => factories['io.flow.v0.unions.payment_method_data_option_logo']();
|
|
16960
17080
|
export const makePaymentMethodDataOptionLogoSvg = () => factories['io.flow.v0.models.payment_method_data_option_logo_svg']();
|
|
16961
17081
|
export const makePaymentMethodDataOptionType = () => factories['io.flow.v0.enums.payment_method_data_option_type']();
|
|
@@ -16977,13 +17097,16 @@ export const makePaymentMethodSummaryApplepay = () => factories['io.flow.v0.mode
|
|
|
16977
17097
|
export const makePaymentMethodSummaryBancontact = () => factories['io.flow.v0.models.payment_method_summary_bancontact']();
|
|
16978
17098
|
export const makePaymentMethodSummaryCard = () => factories['io.flow.v0.models.payment_method_summary_card']();
|
|
16979
17099
|
export const makePaymentMethodSummaryGooglepay = () => factories['io.flow.v0.models.payment_method_summary_googlepay']();
|
|
17100
|
+
export const makePaymentMethodSummaryGrabpay = () => factories['io.flow.v0.models.payment_method_summary_grabpay']();
|
|
16980
17101
|
export const makePaymentMethodSummaryIdeal = () => factories['io.flow.v0.models.payment_method_summary_ideal']();
|
|
17102
|
+
export const makePaymentMethodSummaryKcpCreditcard = () => factories['io.flow.v0.models.payment_method_summary_kcp_creditcard']();
|
|
16981
17103
|
export const makePaymentMethodSummaryKlarna = () => factories['io.flow.v0.models.payment_method_summary_klarna']();
|
|
16982
17104
|
export const makePaymentMethodSummaryMobilepay = () => factories['io.flow.v0.models.payment_method_summary_mobilepay']();
|
|
16983
17105
|
export const makePaymentMethodSummaryPaypal = () => factories['io.flow.v0.models.payment_method_summary_paypal']();
|
|
16984
17106
|
export const makePaymentMethodSummaryPrzelewy24 = () => factories['io.flow.v0.models.payment_method_summary_przelewy24']();
|
|
16985
17107
|
export const makePaymentMethodSummarySofort = () => factories['io.flow.v0.models.payment_method_summary_sofort']();
|
|
16986
17108
|
export const makePaymentMethodSummaryTwint = () => factories['io.flow.v0.models.payment_method_summary_twint']();
|
|
17109
|
+
export const makePaymentMethodSummaryVipps = () => factories['io.flow.v0.models.payment_method_summary_vipps']();
|
|
16987
17110
|
export const makePaymentMethodTag = () => factories['io.flow.v0.unions.payment_method_tag']();
|
|
16988
17111
|
export const makePaymentMethodType = () => factories['io.flow.v0.enums.payment_method_type']();
|
|
16989
17112
|
export const makePaymentOrderDetailsLineItem = () => factories['io.flow.v0.models.payment_order_details_line_item']();
|
|
@@ -17181,6 +17304,7 @@ export const makeRefundCaptureUpsertedV2 = () => factories['io.flow.v0.models.re
|
|
|
17181
17304
|
export const makeRefundDeclineCode = () => factories['io.flow.v0.enums.refund_decline_code']();
|
|
17182
17305
|
export const makeRefundDeletedV2 = () => factories['io.flow.v0.models.refund_deleted_v2']();
|
|
17183
17306
|
export const makeRefundError = () => factories['io.flow.v0.models.refund_error']();
|
|
17307
|
+
export const makeRefundFailureCategory = () => factories['io.flow.v0.enums.refund_failure_category']();
|
|
17184
17308
|
export const makeRefundForm = () => factories['io.flow.v0.models.refund_form']();
|
|
17185
17309
|
export const makeRefundIdentifier = () => factories['io.flow.v0.models.refund_identifier']();
|
|
17186
17310
|
export const makeRefundIdentifierDeleted = () => factories['io.flow.v0.models.refund_identifier_deleted']();
|