@flowio/api-factories 0.0.89 → 0.0.92
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 +150 -24
- package/dist/esm/api.js +116 -2
- package/dist/types/api.d.ts +12 -0
- package/package.json +2 -2
- package/src/api.ts +130 -2
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',
|
|
@@ -3560,7 +3572,7 @@ const factories = {
|
|
|
3560
3572
|
]),
|
|
3561
3573
|
|
|
3562
3574
|
'io.flow.v0.enums.flow_behavior': (): io.flow.v0.enums.FlowBehavior => faker.helpers.arrayElement(['view_consumer_data']),
|
|
3563
|
-
'io.flow.v0.enums.flow_entity': (): io.flow.v0.enums.FlowEntity => faker.helpers.arrayElement(['flow-usa', 'flow-irl', 'flow-can']),
|
|
3575
|
+
'io.flow.v0.enums.flow_entity': (): io.flow.v0.enums.FlowEntity => faker.helpers.arrayElement(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa']),
|
|
3564
3576
|
|
|
3565
3577
|
'io.flow.v0.enums.flow_role': (): io.flow.v0.enums.FlowRole => faker.helpers.arrayElement([
|
|
3566
3578
|
'organization_admin',
|
|
@@ -3896,6 +3908,10 @@ const factories = {
|
|
|
3896
3908
|
'bancontact',
|
|
3897
3909
|
'twint',
|
|
3898
3910
|
'przelewy24',
|
|
3911
|
+
'mobilepay',
|
|
3912
|
+
'grabpay',
|
|
3913
|
+
'vipps',
|
|
3914
|
+
'kcp_creditcard',
|
|
3899
3915
|
]),
|
|
3900
3916
|
|
|
3901
3917
|
'io.flow.v0.enums.payout_attachment_type': (): io.flow.v0.enums.PayoutAttachmentType => faker.helpers.arrayElement(['transactions']),
|
|
@@ -4005,6 +4021,22 @@ const factories = {
|
|
|
4005
4021
|
'io.flow.v0.enums.quote_error_code': (): io.flow.v0.enums.QuoteErrorCode => faker.helpers.arrayElement(['generic_error', 'items_not_available', 'shipping_unavailable']),
|
|
4006
4022
|
'io.flow.v0.enums.ratecard_owner': (): io.flow.v0.enums.RatecardOwner => faker.helpers.arrayElement(['flow', 'organization']),
|
|
4007
4023
|
'io.flow.v0.enums.refund_decline_code': (): io.flow.v0.enums.RefundDeclineCode => faker.helpers.arrayElement(['expired', 'insufficient_funds', 'unknown']),
|
|
4024
|
+
|
|
4025
|
+
'io.flow.v0.enums.refund_failure_category': (): io.flow.v0.enums.RefundFailureCategory => faker.helpers.arrayElement([
|
|
4026
|
+
'amount_too_high',
|
|
4027
|
+
'amount_too_low',
|
|
4028
|
+
'not_enough_balance',
|
|
4029
|
+
'insufficient_funds',
|
|
4030
|
+
'refund_period_expired',
|
|
4031
|
+
'dispute',
|
|
4032
|
+
'not_captured',
|
|
4033
|
+
'unsupported_payment_method',
|
|
4034
|
+
'unsupported_partial_refund',
|
|
4035
|
+
'invalid_currency',
|
|
4036
|
+
'card_no_longer_valid',
|
|
4037
|
+
'general',
|
|
4038
|
+
]),
|
|
4039
|
+
|
|
4008
4040
|
'io.flow.v0.enums.refund_status': (): io.flow.v0.enums.RefundStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed', 'canceled']),
|
|
4009
4041
|
'io.flow.v0.enums.region_type': (): io.flow.v0.enums.RegionType => faker.helpers.arrayElement(['state', 'province', 'jurisdiction']),
|
|
4010
4042
|
'io.flow.v0.enums.restricted_review_status': (): io.flow.v0.enums.RestrictedReviewStatus => faker.helpers.arrayElement(['in_review', 'reviewed']),
|
|
@@ -4148,6 +4180,7 @@ const factories = {
|
|
|
4148
4180
|
'virtual_card_capture',
|
|
4149
4181
|
'virtual_card_refund',
|
|
4150
4182
|
'failed_payout',
|
|
4183
|
+
'tax_refund',
|
|
4151
4184
|
]),
|
|
4152
4185
|
|
|
4153
4186
|
'io.flow.v0.enums.trueup_source': (): io.flow.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']),
|
|
@@ -4170,6 +4203,7 @@ const factories = {
|
|
|
4170
4203
|
'direct_delivery',
|
|
4171
4204
|
'saturday_stop',
|
|
4172
4205
|
'residential_extended_area_pickup',
|
|
4206
|
+
'package_level_detail',
|
|
4173
4207
|
]),
|
|
4174
4208
|
|
|
4175
4209
|
'io.flow.v0.enums.unit_of_length': (): io.flow.v0.enums.UnitOfLength => faker.helpers.arrayElement(['millimeter', 'centimeter', 'inch', 'foot', 'meter']),
|
|
@@ -5115,6 +5149,7 @@ const factories = {
|
|
|
5115
5149
|
items: arrayOf(() => factories['io.flow.v0.models.line_item_form']()),
|
|
5116
5150
|
'package': factories['io.flow.v0.models.shipping_label_package'](),
|
|
5117
5151
|
origin: factories['io.flow.v0.models.shipping_address'](),
|
|
5152
|
+
direction: factories['io.flow.v0.enums.direction'](),
|
|
5118
5153
|
}),
|
|
5119
5154
|
|
|
5120
5155
|
'io.flow.v0.models.browse_optin_responses': (): io.flow.v0.models.BrowseOptinResponses => ({
|
|
@@ -8424,6 +8459,14 @@ const factories = {
|
|
|
8424
8459
|
attributes: objectOf(() => factories.string()),
|
|
8425
8460
|
}),
|
|
8426
8461
|
|
|
8462
|
+
'io.flow.v0.models.item_deleted': (): io.flow.v0.models.ItemDeleted => ({
|
|
8463
|
+
discriminator: 'item_deleted',
|
|
8464
|
+
event_id: factories.string(),
|
|
8465
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8466
|
+
organization: factories.string(),
|
|
8467
|
+
item: factories['io.flow.v0.models.item'](),
|
|
8468
|
+
}),
|
|
8469
|
+
|
|
8427
8470
|
'io.flow.v0.models.item_form': (): io.flow.v0.models.ItemForm => ({
|
|
8428
8471
|
number: factories.string(),
|
|
8429
8472
|
locale: factories.string(),
|
|
@@ -8462,6 +8505,14 @@ const factories = {
|
|
|
8462
8505
|
images: arrayOf(() => factories['io.flow.v0.models.image_form']()),
|
|
8463
8506
|
}),
|
|
8464
8507
|
|
|
8508
|
+
'io.flow.v0.models.item_inserted': (): io.flow.v0.models.ItemInserted => ({
|
|
8509
|
+
discriminator: 'item_inserted',
|
|
8510
|
+
event_id: factories.string(),
|
|
8511
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8512
|
+
organization: factories.string(),
|
|
8513
|
+
item: factories['io.flow.v0.models.item'](),
|
|
8514
|
+
}),
|
|
8515
|
+
|
|
8465
8516
|
'io.flow.v0.models.item_margin': (): io.flow.v0.models.ItemMargin => ({
|
|
8466
8517
|
id: factories.string(),
|
|
8467
8518
|
key: factories.string(),
|
|
@@ -8586,6 +8637,14 @@ const factories = {
|
|
|
8586
8637
|
categories: factories.long(),
|
|
8587
8638
|
}),
|
|
8588
8639
|
|
|
8640
|
+
'io.flow.v0.models.item_updated': (): io.flow.v0.models.ItemUpdated => ({
|
|
8641
|
+
discriminator: 'item_updated',
|
|
8642
|
+
event_id: factories.string(),
|
|
8643
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8644
|
+
organization: factories.string(),
|
|
8645
|
+
item: factories['io.flow.v0.models.item'](),
|
|
8646
|
+
}),
|
|
8647
|
+
|
|
8589
8648
|
'io.flow.v0.models.item_version': (): io.flow.v0.models.ItemVersion => ({
|
|
8590
8649
|
id: factories.string(),
|
|
8591
8650
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -10769,17 +10828,32 @@ const factories = {
|
|
|
10769
10828
|
reference: factories.string(),
|
|
10770
10829
|
}),
|
|
10771
10830
|
|
|
10831
|
+
'io.flow.v0.models.payment_method_data_init_grabpay': (): io.flow.v0.models.PaymentMethodDataInitGrabpay => ({
|
|
10832
|
+
type: 'init_grabpay',
|
|
10833
|
+
reference: factories.string(),
|
|
10834
|
+
}),
|
|
10835
|
+
|
|
10772
10836
|
'io.flow.v0.models.payment_method_data_init_ideal': (): io.flow.v0.models.PaymentMethodDataInitIdeal => ({
|
|
10773
10837
|
type: 'init_ideal',
|
|
10774
10838
|
issuer: factories.string(),
|
|
10775
10839
|
reference: factories.string(),
|
|
10776
10840
|
}),
|
|
10777
10841
|
|
|
10842
|
+
'io.flow.v0.models.payment_method_data_init_kcp_creditcard': (): io.flow.v0.models.PaymentMethodDataInitKcpCreditcard => ({
|
|
10843
|
+
type: 'init_kcp_creditcard',
|
|
10844
|
+
reference: factories.string(),
|
|
10845
|
+
}),
|
|
10846
|
+
|
|
10778
10847
|
'io.flow.v0.models.payment_method_data_init_klarna': (): io.flow.v0.models.PaymentMethodDataInitKlarna => ({
|
|
10779
10848
|
type: 'init_klarna',
|
|
10780
10849
|
reference: factories.string(),
|
|
10781
10850
|
}),
|
|
10782
10851
|
|
|
10852
|
+
'io.flow.v0.models.payment_method_data_init_mobilepay': (): io.flow.v0.models.PaymentMethodDataInitMobilepay => ({
|
|
10853
|
+
type: 'init_mobilepay',
|
|
10854
|
+
reference: factories.string(),
|
|
10855
|
+
}),
|
|
10856
|
+
|
|
10783
10857
|
'io.flow.v0.models.payment_method_data_init_paypal': (): io.flow.v0.models.PaymentMethodDataInitPaypal => ({
|
|
10784
10858
|
type: 'init_paypal',
|
|
10785
10859
|
reference: factories.string(),
|
|
@@ -10800,6 +10874,11 @@ const factories = {
|
|
|
10800
10874
|
reference: factories.string(),
|
|
10801
10875
|
}),
|
|
10802
10876
|
|
|
10877
|
+
'io.flow.v0.models.payment_method_data_init_vipps': (): io.flow.v0.models.PaymentMethodDataInitVipps => ({
|
|
10878
|
+
type: 'init_vipps',
|
|
10879
|
+
reference: factories.string(),
|
|
10880
|
+
}),
|
|
10881
|
+
|
|
10803
10882
|
'io.flow.v0.models.payment_method_data_option_logo_svg': (): io.flow.v0.models.PaymentMethodDataOptionLogoSvg => ({
|
|
10804
10883
|
type: 'svg',
|
|
10805
10884
|
url: factories.string(),
|
|
@@ -10895,17 +10974,32 @@ const factories = {
|
|
|
10895
10974
|
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10896
10975
|
}),
|
|
10897
10976
|
|
|
10977
|
+
'io.flow.v0.models.payment_method_summary_grabpay': (): io.flow.v0.models.PaymentMethodSummaryGrabpay => ({
|
|
10978
|
+
type: 'grabpay',
|
|
10979
|
+
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10980
|
+
}),
|
|
10981
|
+
|
|
10898
10982
|
'io.flow.v0.models.payment_method_summary_ideal': (): io.flow.v0.models.PaymentMethodSummaryIdeal => ({
|
|
10899
10983
|
type: 'ideal',
|
|
10900
10984
|
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10901
10985
|
issuer: factories.string(),
|
|
10902
10986
|
}),
|
|
10903
10987
|
|
|
10988
|
+
'io.flow.v0.models.payment_method_summary_kcp_creditcard': (): io.flow.v0.models.PaymentMethodSummaryKcpCreditcard => ({
|
|
10989
|
+
type: 'kcp_creditcard',
|
|
10990
|
+
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10991
|
+
}),
|
|
10992
|
+
|
|
10904
10993
|
'io.flow.v0.models.payment_method_summary_klarna': (): io.flow.v0.models.PaymentMethodSummaryKlarna => ({
|
|
10905
10994
|
type: 'klarna',
|
|
10906
10995
|
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10907
10996
|
}),
|
|
10908
10997
|
|
|
10998
|
+
'io.flow.v0.models.payment_method_summary_mobilepay': (): io.flow.v0.models.PaymentMethodSummaryMobilepay => ({
|
|
10999
|
+
type: 'mobilepay',
|
|
11000
|
+
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
11001
|
+
}),
|
|
11002
|
+
|
|
10909
11003
|
'io.flow.v0.models.payment_method_summary_paypal': (): io.flow.v0.models.PaymentMethodSummaryPaypal => ({
|
|
10910
11004
|
type: 'paypal',
|
|
10911
11005
|
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
@@ -10926,6 +11020,11 @@ const factories = {
|
|
|
10926
11020
|
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
10927
11021
|
}),
|
|
10928
11022
|
|
|
11023
|
+
'io.flow.v0.models.payment_method_summary_vipps': (): io.flow.v0.models.PaymentMethodSummaryVipps => ({
|
|
11024
|
+
type: 'vipps',
|
|
11025
|
+
merchant_of_record: factories['io.flow.v0.enums.merchant_of_record'](),
|
|
11026
|
+
}),
|
|
11027
|
+
|
|
10929
11028
|
'io.flow.v0.models.payment_order_details_line_item': (): io.flow.v0.models.PaymentOrderDetailsLineItem => ({
|
|
10930
11029
|
id: factories.string(),
|
|
10931
11030
|
description: factories.string(),
|
|
@@ -11598,6 +11697,8 @@ const factories = {
|
|
|
11598
11697
|
review_status: factories['io.flow.v0.enums.review_status'](),
|
|
11599
11698
|
rules: arrayOf(() => factories['io.flow.v0.enums.product_restriction_rule']()),
|
|
11600
11699
|
updated_by: factories.string(),
|
|
11700
|
+
product_restriction_id: factories.string(),
|
|
11701
|
+
hs_code: factories.string(),
|
|
11601
11702
|
}),
|
|
11602
11703
|
|
|
11603
11704
|
'io.flow.v0.models.product_restriction_result_deleted': (): io.flow.v0.models.ProductRestrictionResultDeleted => ({
|
|
@@ -12098,6 +12199,8 @@ const factories = {
|
|
|
12098
12199
|
attributes: objectOf(() => factories.string()),
|
|
12099
12200
|
status: factories['io.flow.v0.enums.refund_status'](),
|
|
12100
12201
|
base: factories['io.flow.v0.models.money'](),
|
|
12202
|
+
failure_category: factories['io.flow.v0.enums.refund_failure_category'](),
|
|
12203
|
+
failure_psp_reason: factories.string(),
|
|
12101
12204
|
}),
|
|
12102
12205
|
|
|
12103
12206
|
'io.flow.v0.models.refund_capture': (): io.flow.v0.models.RefundCapture => ({
|
|
@@ -12885,6 +12988,7 @@ const factories = {
|
|
|
12885
12988
|
additional_services_requested: arrayOf(() => factories['io.flow.v0.models.additional_services_requested']()),
|
|
12886
12989
|
created_at: factories.date_time_iso_8601(),
|
|
12887
12990
|
updated_at: factories.date_time_iso_8601(),
|
|
12991
|
+
direction: factories['io.flow.v0.enums.direction'](),
|
|
12888
12992
|
}),
|
|
12889
12993
|
|
|
12890
12994
|
'io.flow.v0.models.shipping_label_document': (): io.flow.v0.models.ShippingLabelDocument => ({
|
|
@@ -13571,6 +13675,7 @@ const factories = {
|
|
|
13571
13675
|
order_number: factories.string(),
|
|
13572
13676
|
items: arrayOf(() => factories['io.flow.v0.models.line_item_form']()),
|
|
13573
13677
|
center_key: factories.string(),
|
|
13678
|
+
direction: factories['io.flow.v0.enums.direction'](),
|
|
13574
13679
|
}),
|
|
13575
13680
|
|
|
13576
13681
|
'io.flow.v0.models.summary_shipping_notification_form': (): io.flow.v0.models.SummaryShippingNotificationForm => ({
|
|
@@ -14869,6 +14974,9 @@ const factories = {
|
|
|
14869
14974
|
() => factories['io.flow.v0.models.subcatalog_item_deleted'](),
|
|
14870
14975
|
() => factories['io.flow.v0.models.catalog_statistics_upserted'](),
|
|
14871
14976
|
() => factories['io.flow.v0.models.catalog_statistics_deleted'](),
|
|
14977
|
+
() => factories['io.flow.v0.models.item_inserted'](),
|
|
14978
|
+
() => factories['io.flow.v0.models.item_updated'](),
|
|
14979
|
+
() => factories['io.flow.v0.models.item_deleted'](),
|
|
14872
14980
|
() => factories['io.flow.v0.models.channel_upserted'](),
|
|
14873
14981
|
() => factories['io.flow.v0.models.channel_deleted'](),
|
|
14874
14982
|
() => factories['io.flow.v0.models.channel_currency_upserted'](),
|
|
@@ -15397,7 +15505,11 @@ const factories = {
|
|
|
15397
15505
|
() => factories['io.flow.v0.models.payment_method_data_init_sofort'](),
|
|
15398
15506
|
() => factories['io.flow.v0.models.payment_method_data_init_twint'](),
|
|
15399
15507
|
() => factories['io.flow.v0.models.payment_method_data_init_przelewy24'](),
|
|
15508
|
+
() => factories['io.flow.v0.models.payment_method_data_init_mobilepay'](),
|
|
15509
|
+
() => factories['io.flow.v0.models.payment_method_data_init_kcp_creditcard'](),
|
|
15400
15510
|
() => factories['io.flow.v0.models.payment_method_data_init_bancontact'](),
|
|
15511
|
+
() => factories['io.flow.v0.models.payment_method_data_init_grabpay'](),
|
|
15512
|
+
() => factories['io.flow.v0.models.payment_method_data_init_vipps'](),
|
|
15401
15513
|
() => factories['io.flow.v0.models.payment_method_data_validate_applepay'](),
|
|
15402
15514
|
() => factories['io.flow.v0.models.payment_method_data_authorize_card'](),
|
|
15403
15515
|
() => factories['io.flow.v0.models.payment_method_data_authorize_googlepay'](),
|
|
@@ -15456,9 +15568,13 @@ const factories = {
|
|
|
15456
15568
|
() => factories['io.flow.v0.models.payment_method_summary_paypal'](),
|
|
15457
15569
|
() => factories['io.flow.v0.models.payment_method_summary_ideal'](),
|
|
15458
15570
|
() => factories['io.flow.v0.models.payment_method_summary_twint'](),
|
|
15571
|
+
() => factories['io.flow.v0.models.payment_method_summary_vipps'](),
|
|
15459
15572
|
() => factories['io.flow.v0.models.payment_method_summary_przelewy24'](),
|
|
15573
|
+
() => factories['io.flow.v0.models.payment_method_summary_mobilepay'](),
|
|
15574
|
+
() => factories['io.flow.v0.models.payment_method_summary_kcp_creditcard'](),
|
|
15460
15575
|
() => factories['io.flow.v0.models.payment_method_summary_sofort'](),
|
|
15461
15576
|
() => factories['io.flow.v0.models.payment_method_summary_bancontact'](),
|
|
15577
|
+
() => factories['io.flow.v0.models.payment_method_summary_grabpay'](),
|
|
15462
15578
|
]);
|
|
15463
15579
|
|
|
15464
15580
|
return f();
|
|
@@ -16548,10 +16664,12 @@ export const makeIssuerV1 = () => factories['io.flow.v0.models.issuer_v1']();
|
|
|
16548
16664
|
export const makeItem = () => factories['io.flow.v0.models.item']();
|
|
16549
16665
|
export const makeItemAttributesPatchForm = () => factories['io.flow.v0.models.item_attributes_patch_form']();
|
|
16550
16666
|
export const makeItemAvailabilityStatus = () => factories['io.flow.v0.enums.item_availability_status']();
|
|
16667
|
+
export const makeItemDeleted = () => factories['io.flow.v0.models.item_deleted']();
|
|
16551
16668
|
export const makeItemForm = () => factories['io.flow.v0.models.item_form']();
|
|
16552
16669
|
export const makeItemFormOverlay = () => factories['io.flow.v0.models.item_form_overlay']();
|
|
16553
16670
|
export const makeItemFormOverlayForm = () => factories['io.flow.v0.models.item_form_overlay_form']();
|
|
16554
16671
|
export const makeItemIdentifier = () => factories['io.flow.v0.enums.item_identifier']();
|
|
16672
|
+
export const makeItemInserted = () => factories['io.flow.v0.models.item_inserted']();
|
|
16555
16673
|
export const makeItemMargin = () => factories['io.flow.v0.models.item_margin']();
|
|
16556
16674
|
export const makeItemMarginDeletedV2 = () => factories['io.flow.v0.models.item_margin_deleted_v2']();
|
|
16557
16675
|
export const makeItemMarginPostForm = () => factories['io.flow.v0.models.item_margin_post_form']();
|
|
@@ -16568,6 +16686,7 @@ export const makeItemSalesMarginDeleted = () => factories['io.flow.v0.models.ite
|
|
|
16568
16686
|
export const makeItemSalesMarginUpserted = () => factories['io.flow.v0.models.item_sales_margin_upserted']();
|
|
16569
16687
|
export const makeItemShippingPricing = () => factories['io.flow.v0.models.item_shipping_pricing']();
|
|
16570
16688
|
export const makeItemStatistics = () => factories['io.flow.v0.models.item_statistics']();
|
|
16689
|
+
export const makeItemUpdated = () => factories['io.flow.v0.models.item_updated']();
|
|
16571
16690
|
export const makeItemVersion = () => factories['io.flow.v0.models.item_version']();
|
|
16572
16691
|
export const makeJsonpResponse = () => factories['io.flow.v0.models.jsonp_response']();
|
|
16573
16692
|
export const makeKlarnaPaymentCategory = () => factories['io.flow.v0.models.klarna_payment_category']();
|
|
@@ -16932,12 +17051,16 @@ export const makePaymentMethodDataInitAfterpay = () => factories['io.flow.v0.mod
|
|
|
16932
17051
|
export const makePaymentMethodDataInitApplepay = () => factories['io.flow.v0.models.payment_method_data_init_applepay']();
|
|
16933
17052
|
export const makePaymentMethodDataInitBancontact = () => factories['io.flow.v0.models.payment_method_data_init_bancontact']();
|
|
16934
17053
|
export const makePaymentMethodDataInitGooglepay = () => factories['io.flow.v0.models.payment_method_data_init_googlepay']();
|
|
17054
|
+
export const makePaymentMethodDataInitGrabpay = () => factories['io.flow.v0.models.payment_method_data_init_grabpay']();
|
|
16935
17055
|
export const makePaymentMethodDataInitIdeal = () => factories['io.flow.v0.models.payment_method_data_init_ideal']();
|
|
17056
|
+
export const makePaymentMethodDataInitKcpCreditcard = () => factories['io.flow.v0.models.payment_method_data_init_kcp_creditcard']();
|
|
16936
17057
|
export const makePaymentMethodDataInitKlarna = () => factories['io.flow.v0.models.payment_method_data_init_klarna']();
|
|
17058
|
+
export const makePaymentMethodDataInitMobilepay = () => factories['io.flow.v0.models.payment_method_data_init_mobilepay']();
|
|
16937
17059
|
export const makePaymentMethodDataInitPaypal = () => factories['io.flow.v0.models.payment_method_data_init_paypal']();
|
|
16938
17060
|
export const makePaymentMethodDataInitPrzelewy24 = () => factories['io.flow.v0.models.payment_method_data_init_przelewy24']();
|
|
16939
17061
|
export const makePaymentMethodDataInitSofort = () => factories['io.flow.v0.models.payment_method_data_init_sofort']();
|
|
16940
17062
|
export const makePaymentMethodDataInitTwint = () => factories['io.flow.v0.models.payment_method_data_init_twint']();
|
|
17063
|
+
export const makePaymentMethodDataInitVipps = () => factories['io.flow.v0.models.payment_method_data_init_vipps']();
|
|
16941
17064
|
export const makePaymentMethodDataOptionLogo = () => factories['io.flow.v0.unions.payment_method_data_option_logo']();
|
|
16942
17065
|
export const makePaymentMethodDataOptionLogoSvg = () => factories['io.flow.v0.models.payment_method_data_option_logo_svg']();
|
|
16943
17066
|
export const makePaymentMethodDataOptionType = () => factories['io.flow.v0.enums.payment_method_data_option_type']();
|
|
@@ -16959,12 +17082,16 @@ export const makePaymentMethodSummaryApplepay = () => factories['io.flow.v0.mode
|
|
|
16959
17082
|
export const makePaymentMethodSummaryBancontact = () => factories['io.flow.v0.models.payment_method_summary_bancontact']();
|
|
16960
17083
|
export const makePaymentMethodSummaryCard = () => factories['io.flow.v0.models.payment_method_summary_card']();
|
|
16961
17084
|
export const makePaymentMethodSummaryGooglepay = () => factories['io.flow.v0.models.payment_method_summary_googlepay']();
|
|
17085
|
+
export const makePaymentMethodSummaryGrabpay = () => factories['io.flow.v0.models.payment_method_summary_grabpay']();
|
|
16962
17086
|
export const makePaymentMethodSummaryIdeal = () => factories['io.flow.v0.models.payment_method_summary_ideal']();
|
|
17087
|
+
export const makePaymentMethodSummaryKcpCreditcard = () => factories['io.flow.v0.models.payment_method_summary_kcp_creditcard']();
|
|
16963
17088
|
export const makePaymentMethodSummaryKlarna = () => factories['io.flow.v0.models.payment_method_summary_klarna']();
|
|
17089
|
+
export const makePaymentMethodSummaryMobilepay = () => factories['io.flow.v0.models.payment_method_summary_mobilepay']();
|
|
16964
17090
|
export const makePaymentMethodSummaryPaypal = () => factories['io.flow.v0.models.payment_method_summary_paypal']();
|
|
16965
17091
|
export const makePaymentMethodSummaryPrzelewy24 = () => factories['io.flow.v0.models.payment_method_summary_przelewy24']();
|
|
16966
17092
|
export const makePaymentMethodSummarySofort = () => factories['io.flow.v0.models.payment_method_summary_sofort']();
|
|
16967
17093
|
export const makePaymentMethodSummaryTwint = () => factories['io.flow.v0.models.payment_method_summary_twint']();
|
|
17094
|
+
export const makePaymentMethodSummaryVipps = () => factories['io.flow.v0.models.payment_method_summary_vipps']();
|
|
16968
17095
|
export const makePaymentMethodTag = () => factories['io.flow.v0.unions.payment_method_tag']();
|
|
16969
17096
|
export const makePaymentMethodType = () => factories['io.flow.v0.enums.payment_method_type']();
|
|
16970
17097
|
export const makePaymentOrderDetailsLineItem = () => factories['io.flow.v0.models.payment_order_details_line_item']();
|
|
@@ -17162,6 +17289,7 @@ export const makeRefundCaptureUpsertedV2 = () => factories['io.flow.v0.models.re
|
|
|
17162
17289
|
export const makeRefundDeclineCode = () => factories['io.flow.v0.enums.refund_decline_code']();
|
|
17163
17290
|
export const makeRefundDeletedV2 = () => factories['io.flow.v0.models.refund_deleted_v2']();
|
|
17164
17291
|
export const makeRefundError = () => factories['io.flow.v0.models.refund_error']();
|
|
17292
|
+
export const makeRefundFailureCategory = () => factories['io.flow.v0.enums.refund_failure_category']();
|
|
17165
17293
|
export const makeRefundForm = () => factories['io.flow.v0.models.refund_form']();
|
|
17166
17294
|
export const makeRefundIdentifier = () => factories['io.flow.v0.models.refund_identifier']();
|
|
17167
17295
|
export const makeRefundIdentifierDeleted = () => factories['io.flow.v0.models.refund_identifier_deleted']();
|