@flowio/api-prop-types 10.16.82 → 10.16.84

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/src/api.js CHANGED
@@ -877,7 +877,7 @@ T['io.flow.shopify.external.v0.models.graphql_weight'] = PropTypes.exact({
877
877
  });
878
878
 
879
879
  T['io.flow.shopify.external.v0.models.graphql_measurement'] = PropTypes.exact({
880
- weight: T['io.flow.shopify.external.v0.models.graphql_weight'].isRequired,
880
+ weight: T['io.flow.shopify.external.v0.models.graphql_weight'],
881
881
  });
882
882
 
883
883
  T['io.flow.shopify.external.v0.models.graphql_inventory_item'] = PropTypes.exact({
@@ -996,7 +996,17 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
996
996
 
997
997
  T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
998
998
  T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
999
- T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf(['lost_or_stolen_card', 'expired_or_canceled_card', 'unknown']);
999
+
1000
+ T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf([
1001
+ 'charge_for_pending_refund_disputed',
1002
+ 'declined',
1003
+ 'expired_or_canceled_card',
1004
+ 'insufficient_funds',
1005
+ 'lost_or_stolen_card',
1006
+ 'merchant_request',
1007
+ 'unknown',
1008
+ ]);
1009
+
1000
1010
  T['io.flow.stripe.v0.enums.refund_status'] = PropTypes.oneOf(['succeeded', 'failed', 'pending', 'canceled']);
1001
1011
 
1002
1012
  T['io.flow.stripe.v0.enums.stored_credential_transaction_type'] = PropTypes.oneOf([
@@ -4313,6 +4323,8 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
4313
4323
  review_status: T['io.flow.v0.enums.review_status'],
4314
4324
  rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
4315
4325
  updated_by: PropTypes.string,
4326
+ product_restriction_id: PropTypes.string,
4327
+ hs_code: PropTypes.string,
4316
4328
  });
4317
4329
 
4318
4330
  T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
@@ -4457,11 +4469,26 @@ T['io.flow.v0.models.payment_method_data_validate_applepay'] = PropTypes.exact({
4457
4469
  validation_url: PropTypes.string.isRequired,
4458
4470
  });
4459
4471
 
4472
+ T['io.flow.v0.models.payment_method_data_init_vipps'] = PropTypes.exact({
4473
+ type: PropTypes.oneOf(['init_vipps']).isRequired,
4474
+ reference: PropTypes.string,
4475
+ });
4476
+
4477
+ T['io.flow.v0.models.payment_method_data_init_grabpay'] = PropTypes.exact({
4478
+ type: PropTypes.oneOf(['init_grabpay']).isRequired,
4479
+ reference: PropTypes.string,
4480
+ });
4481
+
4460
4482
  T['io.flow.v0.models.payment_method_data_init_bancontact'] = PropTypes.exact({
4461
4483
  type: PropTypes.oneOf(['init_bancontact']).isRequired,
4462
4484
  reference: PropTypes.string,
4463
4485
  });
4464
4486
 
4487
+ T['io.flow.v0.models.payment_method_data_init_kcp_creditcard'] = PropTypes.exact({
4488
+ type: PropTypes.oneOf(['init_kcp_creditcard']).isRequired,
4489
+ reference: PropTypes.string,
4490
+ });
4491
+
4465
4492
  T['io.flow.v0.models.payment_method_data_init_mobilepay'] = PropTypes.exact({
4466
4493
  type: PropTypes.oneOf(['init_mobilepay']).isRequired,
4467
4494
  reference: PropTypes.string,
@@ -4687,6 +4714,9 @@ T['io.flow.v0.enums.payment_type'] = PropTypes.oneOf([
4687
4714
  'twint',
4688
4715
  'przelewy24',
4689
4716
  'mobilepay',
4717
+ 'grabpay',
4718
+ 'vipps',
4719
+ 'kcp_creditcard',
4690
4720
  ]);
4691
4721
 
4692
4722
  T['io.flow.v0.enums.payment_method_rule_content_key'] = PropTypes.oneOf(['description']);
@@ -5134,6 +5164,12 @@ T['io.flow.v0.models.order_rule_reference'] = PropTypes.exact({
5134
5164
  key: PropTypes.string.isRequired,
5135
5165
  });
5136
5166
 
5167
+ T['io.flow.v0.models.destination_contact_detail'] = PropTypes.exact({
5168
+ title: PropTypes.string.isRequired,
5169
+ country: PropTypes.string.isRequired,
5170
+ import_identifier: PropTypes.string.isRequired,
5171
+ });
5172
+
5137
5173
  T['io.flow.v0.models.order_geo'] = PropTypes.exact({
5138
5174
  ip: PropTypes.string,
5139
5175
  country: PropTypes.string.isRequired,
@@ -5482,6 +5518,7 @@ T['io.flow.v0.models.label_tracking_summary'] = PropTypes.exact({
5482
5518
  in_transit: T['io.flow.v0.models.label_tracking_summary_update'].isRequired,
5483
5519
  delivered: T['io.flow.v0.models.label_tracking_summary_update'],
5484
5520
  rejected: T['io.flow.v0.models.label_tracking_summary_update'],
5521
+ returned: T['io.flow.v0.models.label_tracking_summary_update'],
5485
5522
  });
5486
5523
 
5487
5524
  T['io.flow.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
@@ -6376,6 +6413,21 @@ T['io.flow.v0.models.ratecard_region_reference'] = PropTypes.exact({
6376
6413
  id: PropTypes.string.isRequired,
6377
6414
  });
6378
6415
 
6416
+ T['io.flow.v0.enums.refund_failure_category'] = PropTypes.oneOf([
6417
+ 'amount_too_high',
6418
+ 'amount_too_low',
6419
+ 'not_enough_balance',
6420
+ 'insufficient_funds',
6421
+ 'refund_period_expired',
6422
+ 'dispute',
6423
+ 'not_captured',
6424
+ 'unsupported_payment_method',
6425
+ 'unsupported_partial_refund',
6426
+ 'invalid_currency',
6427
+ 'card_no_longer_valid',
6428
+ 'general',
6429
+ ]);
6430
+
6379
6431
  T['io.flow.v0.enums.refund_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed', 'canceled']);
6380
6432
 
6381
6433
  T['io.flow.v0.models.payment_refund_status'] = PropTypes.exact({
@@ -7442,6 +7494,7 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
7442
7494
  'virtual_card_capture',
7443
7495
  'virtual_card_refund',
7444
7496
  'failed_payout',
7497
+ 'tax_refund',
7445
7498
  ]);
7446
7499
 
7447
7500
  T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
@@ -7479,6 +7532,8 @@ T['io.flow.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
7479
7532
  'waiting_for_next_payout_date',
7480
7533
  'waiting_for_tracking_info',
7481
7534
  'waiting_for_positive_account_balance',
7535
+ 'unfulfilled_amount_greater_than_negative_balance',
7536
+ 'account_payment_hold',
7482
7537
  ]);
7483
7538
 
7484
7539
  T['io.flow.v0.models.pending_payout_transaction_timeout'] = PropTypes.exact({
@@ -8037,6 +8092,11 @@ T['io.flow.v0.models.payment_payment_method'] = PropTypes.exact({
8037
8092
  possible_actions: PropTypes.arrayOf(T['io.flow.v0.enums.payment_action_type']).isRequired,
8038
8093
  });
8039
8094
 
8095
+ T['io.flow.v0.models.payment_method_summary_vipps'] = PropTypes.exact({
8096
+ type: PropTypes.oneOf(['vipps']).isRequired,
8097
+ merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
8098
+ });
8099
+
8040
8100
  T['io.flow.v0.models.payment_method_summary_twint'] = PropTypes.exact({
8041
8101
  type: PropTypes.oneOf(['twint']).isRequired,
8042
8102
  merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
@@ -8067,12 +8127,22 @@ T['io.flow.v0.models.payment_method_summary_klarna'] = PropTypes.exact({
8067
8127
  merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
8068
8128
  });
8069
8129
 
8130
+ T['io.flow.v0.models.payment_method_summary_kcp_creditcard'] = PropTypes.exact({
8131
+ type: PropTypes.oneOf(['kcp_creditcard']).isRequired,
8132
+ merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
8133
+ });
8134
+
8070
8135
  T['io.flow.v0.models.payment_method_summary_ideal'] = PropTypes.exact({
8071
8136
  type: PropTypes.oneOf(['ideal']).isRequired,
8072
8137
  merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
8073
8138
  issuer: PropTypes.string,
8074
8139
  });
8075
8140
 
8141
+ T['io.flow.v0.models.payment_method_summary_grabpay'] = PropTypes.exact({
8142
+ type: PropTypes.oneOf(['grabpay']).isRequired,
8143
+ merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
8144
+ });
8145
+
8076
8146
  T['io.flow.v0.models.payment_method_summary_googlepay'] = PropTypes.exact({
8077
8147
  type: PropTypes.oneOf(['googlepay']).isRequired,
8078
8148
  merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
@@ -8177,7 +8247,10 @@ T['io.flow.v0.unions.payment_method_data'] = PropTypes.oneOfType([
8177
8247
  T['io.flow.v0.models.payment_method_data_init_twint'],
8178
8248
  T['io.flow.v0.models.payment_method_data_init_przelewy24'],
8179
8249
  T['io.flow.v0.models.payment_method_data_init_mobilepay'],
8250
+ T['io.flow.v0.models.payment_method_data_init_kcp_creditcard'],
8180
8251
  T['io.flow.v0.models.payment_method_data_init_bancontact'],
8252
+ T['io.flow.v0.models.payment_method_data_init_grabpay'],
8253
+ T['io.flow.v0.models.payment_method_data_init_vipps'],
8181
8254
  T['io.flow.v0.models.payment_method_data_validate_applepay'],
8182
8255
  T['io.flow.v0.models.payment_method_data_authorize_card'],
8183
8256
  T['io.flow.v0.models.payment_method_data_authorize_googlepay'],
@@ -10481,10 +10554,13 @@ T['io.flow.v0.unions.payment_method_summary'] = PropTypes.oneOfType([
10481
10554
  T['io.flow.v0.models.payment_method_summary_paypal'],
10482
10555
  T['io.flow.v0.models.payment_method_summary_ideal'],
10483
10556
  T['io.flow.v0.models.payment_method_summary_twint'],
10557
+ T['io.flow.v0.models.payment_method_summary_vipps'],
10484
10558
  T['io.flow.v0.models.payment_method_summary_przelewy24'],
10485
10559
  T['io.flow.v0.models.payment_method_summary_mobilepay'],
10560
+ T['io.flow.v0.models.payment_method_summary_kcp_creditcard'],
10486
10561
  T['io.flow.v0.models.payment_method_summary_sofort'],
10487
10562
  T['io.flow.v0.models.payment_method_summary_bancontact'],
10563
+ T['io.flow.v0.models.payment_method_summary_grabpay'],
10488
10564
  ]);
10489
10565
 
10490
10566
  T['io.flow.v0.models.payment_authorization'] = PropTypes.exact({
@@ -11089,6 +11165,8 @@ T['io.flow.v0.models.refund'] = PropTypes.exact({
11089
11165
  attributes: PropTypes.objectOf(PropTypes.string),
11090
11166
  status: T['io.flow.v0.enums.refund_status'],
11091
11167
  base: T['io.flow.v0.models.money'],
11168
+ failure_category: T['io.flow.v0.enums.refund_failure_category'],
11169
+ failure_psp_reason: PropTypes.string,
11092
11170
  });
11093
11171
 
11094
11172
  T['io.flow.v0.models.refund_version'] = PropTypes.exact({
@@ -11769,6 +11847,7 @@ T['io.flow.v0.models.item_form_overlay_form'] = PropTypes.exact({
11769
11847
  attributes: PropTypes.objectOf(PropTypes.string),
11770
11848
  dimensions: T['io.flow.v0.models.dimensions'],
11771
11849
  images: PropTypes.arrayOf(T['io.flow.v0.models.image_form']),
11850
+ deleted_at: PropTypes.string,
11772
11851
  });
11773
11852
 
11774
11853
  T['io.flow.v0.models.item_form_overlay'] = PropTypes.exact({
@@ -11782,6 +11861,7 @@ T['io.flow.v0.models.item_form_overlay'] = PropTypes.exact({
11782
11861
  attributes: PropTypes.objectOf(PropTypes.string),
11783
11862
  dimensions: T['io.flow.v0.models.dimensions'],
11784
11863
  images: PropTypes.arrayOf(T['io.flow.v0.models.image_form']),
11864
+ deleted_at: PropTypes.string,
11785
11865
  });
11786
11866
 
11787
11867
  T['io.flow.v0.models.item_form'] = PropTypes.exact({
@@ -11795,6 +11875,7 @@ T['io.flow.v0.models.item_form'] = PropTypes.exact({
11795
11875
  attributes: PropTypes.objectOf(PropTypes.string),
11796
11876
  dimensions: T['io.flow.v0.models.dimensions'],
11797
11877
  images: PropTypes.arrayOf(T['io.flow.v0.models.image_form']),
11878
+ deleted_at: PropTypes.string,
11798
11879
  });
11799
11880
 
11800
11881
  T['io.flow.v0.models.packaging'] = PropTypes.exact({
@@ -11817,6 +11898,7 @@ T['io.flow.v0.models.item'] = PropTypes.exact({
11817
11898
  local: T['io.flow.v0.models.local'],
11818
11899
  created_at: PropTypes.string,
11819
11900
  updated_at: PropTypes.string,
11901
+ deleted_at: PropTypes.string,
11820
11902
  });
11821
11903
 
11822
11904
  T['io.flow.v0.models.subcatalog_item'] = PropTypes.exact({
@@ -11839,6 +11921,30 @@ T['io.flow.v0.models.item_version'] = PropTypes.exact({
11839
11921
  item: T['io.flow.v0.models.item'].isRequired,
11840
11922
  });
11841
11923
 
11924
+ T['io.flow.v0.models.item_updated'] = PropTypes.exact({
11925
+ discriminator: PropTypes.oneOf(['item_updated']).isRequired,
11926
+ event_id: PropTypes.string.isRequired,
11927
+ timestamp: PropTypes.string.isRequired,
11928
+ organization: PropTypes.string.isRequired,
11929
+ item: T['io.flow.v0.models.item'].isRequired,
11930
+ });
11931
+
11932
+ T['io.flow.v0.models.item_inserted'] = PropTypes.exact({
11933
+ discriminator: PropTypes.oneOf(['item_inserted']).isRequired,
11934
+ event_id: PropTypes.string.isRequired,
11935
+ timestamp: PropTypes.string.isRequired,
11936
+ organization: PropTypes.string.isRequired,
11937
+ item: T['io.flow.v0.models.item'].isRequired,
11938
+ });
11939
+
11940
+ T['io.flow.v0.models.item_deleted'] = PropTypes.exact({
11941
+ discriminator: PropTypes.oneOf(['item_deleted']).isRequired,
11942
+ event_id: PropTypes.string.isRequired,
11943
+ timestamp: PropTypes.string.isRequired,
11944
+ organization: PropTypes.string.isRequired,
11945
+ item: T['io.flow.v0.models.item'].isRequired,
11946
+ });
11947
+
11842
11948
  T['io.flow.v0.models.checkout_item_content'] = PropTypes.exact({
11843
11949
  item: T['io.flow.v0.models.item'].isRequired,
11844
11950
  name: PropTypes.string.isRequired,
@@ -13030,6 +13136,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
13030
13136
  tax_registration: T['io.flow.v0.models.tax_registration'],
13031
13137
  geo: T['io.flow.v0.models.order_geo'],
13032
13138
  device_details: T['io.flow.v0.unions.device_details'],
13139
+ destination_contact_details: PropTypes.arrayOf(T['io.flow.v0.models.destination_contact_detail']),
13033
13140
  });
13034
13141
 
13035
13142
  T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -13854,6 +13961,9 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
13854
13961
  T['io.flow.v0.models.subcatalog_item_deleted'],
13855
13962
  T['io.flow.v0.models.catalog_statistics_upserted'],
13856
13963
  T['io.flow.v0.models.catalog_statistics_deleted'],
13964
+ T['io.flow.v0.models.item_inserted'],
13965
+ T['io.flow.v0.models.item_updated'],
13966
+ T['io.flow.v0.models.item_deleted'],
13857
13967
  T['io.flow.v0.models.channel_upserted'],
13858
13968
  T['io.flow.v0.models.channel_deleted'],
13859
13969
  T['io.flow.v0.models.channel_currency_upserted'],
@@ -14239,6 +14349,9 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
14239
14349
  'subcatalog_item_deleted',
14240
14350
  'catalog_statistics_upserted',
14241
14351
  'catalog_statistics_deleted',
14352
+ 'item_inserted',
14353
+ 'item_updated',
14354
+ 'item_deleted',
14242
14355
  'channel_upserted',
14243
14356
  'channel_deleted',
14244
14357
  'channel_currency_upserted',
@@ -15753,6 +15866,7 @@ export const deliveryWindowSummary = T['io.flow.v0.models.delivery_window_summar
15753
15866
  export const deminimis = T['io.flow.v0.unions.deminimis'];
15754
15867
  export const deminimisPerItem = T['io.flow.v0.models.deminimis_per_item'];
15755
15868
  export const deminimisSimple = T['io.flow.v0.models.deminimis_simple'];
15869
+ export const destinationContactDetail = T['io.flow.v0.models.destination_contact_detail'];
15756
15870
  export const detailedShippingLabelForm = T['io.flow.v0.models.detailed_shipping_label_form'];
15757
15871
  export const detailedShippingNotificationForm = T['io.flow.v0.models.detailed_shipping_notification_form'];
15758
15872
  export const detailedTaxRegistration = T['io.flow.v0.models.detailed_tax_registration'];
@@ -16070,10 +16184,12 @@ export const issuerV1 = T['io.flow.v0.models.issuer_v1'];
16070
16184
  export const item = T['io.flow.v0.models.item'];
16071
16185
  export const itemAttributesPatchForm = T['io.flow.v0.models.item_attributes_patch_form'];
16072
16186
  export const itemAvailabilityStatus = T['io.flow.v0.enums.item_availability_status'];
16187
+ export const itemDeleted = T['io.flow.v0.models.item_deleted'];
16073
16188
  export const itemForm = T['io.flow.v0.models.item_form'];
16074
16189
  export const itemFormOverlay = T['io.flow.v0.models.item_form_overlay'];
16075
16190
  export const itemFormOverlayForm = T['io.flow.v0.models.item_form_overlay_form'];
16076
16191
  export const itemIdentifier = T['io.flow.v0.enums.item_identifier'];
16192
+ export const itemInserted = T['io.flow.v0.models.item_inserted'];
16077
16193
  export const itemMargin = T['io.flow.v0.models.item_margin'];
16078
16194
  export const itemMarginDeletedV2 = T['io.flow.v0.models.item_margin_deleted_v2'];
16079
16195
  export const itemMarginPostForm = T['io.flow.v0.models.item_margin_post_form'];
@@ -16090,6 +16206,7 @@ export const itemSalesMarginDeleted = T['io.flow.v0.models.item_sales_margin_del
16090
16206
  export const itemSalesMarginUpserted = T['io.flow.v0.models.item_sales_margin_upserted'];
16091
16207
  export const itemShippingPricing = T['io.flow.v0.models.item_shipping_pricing'];
16092
16208
  export const itemStatistics = T['io.flow.v0.models.item_statistics'];
16209
+ export const itemUpdated = T['io.flow.v0.models.item_updated'];
16093
16210
  export const itemVersion = T['io.flow.v0.models.item_version'];
16094
16211
  export const jsonpResponse = T['io.flow.v0.models.jsonp_response'];
16095
16212
  export const klarnaPaymentCategory = T['io.flow.v0.models.klarna_payment_category'];
@@ -16454,13 +16571,16 @@ export const paymentMethodDataInitAfterpay = T['io.flow.v0.models.payment_method
16454
16571
  export const paymentMethodDataInitApplepay = T['io.flow.v0.models.payment_method_data_init_applepay'];
16455
16572
  export const paymentMethodDataInitBancontact = T['io.flow.v0.models.payment_method_data_init_bancontact'];
16456
16573
  export const paymentMethodDataInitGooglepay = T['io.flow.v0.models.payment_method_data_init_googlepay'];
16574
+ export const paymentMethodDataInitGrabpay = T['io.flow.v0.models.payment_method_data_init_grabpay'];
16457
16575
  export const paymentMethodDataInitIdeal = T['io.flow.v0.models.payment_method_data_init_ideal'];
16576
+ export const paymentMethodDataInitKcpCreditcard = T['io.flow.v0.models.payment_method_data_init_kcp_creditcard'];
16458
16577
  export const paymentMethodDataInitKlarna = T['io.flow.v0.models.payment_method_data_init_klarna'];
16459
16578
  export const paymentMethodDataInitMobilepay = T['io.flow.v0.models.payment_method_data_init_mobilepay'];
16460
16579
  export const paymentMethodDataInitPaypal = T['io.flow.v0.models.payment_method_data_init_paypal'];
16461
16580
  export const paymentMethodDataInitPrzelewy24 = T['io.flow.v0.models.payment_method_data_init_przelewy24'];
16462
16581
  export const paymentMethodDataInitSofort = T['io.flow.v0.models.payment_method_data_init_sofort'];
16463
16582
  export const paymentMethodDataInitTwint = T['io.flow.v0.models.payment_method_data_init_twint'];
16583
+ export const paymentMethodDataInitVipps = T['io.flow.v0.models.payment_method_data_init_vipps'];
16464
16584
  export const paymentMethodDataOptionLogo = T['io.flow.v0.unions.payment_method_data_option_logo'];
16465
16585
  export const paymentMethodDataOptionLogoSvg = T['io.flow.v0.models.payment_method_data_option_logo_svg'];
16466
16586
  export const paymentMethodDataOptionType = T['io.flow.v0.enums.payment_method_data_option_type'];
@@ -16482,13 +16602,16 @@ export const paymentMethodSummaryApplepay = T['io.flow.v0.models.payment_method_
16482
16602
  export const paymentMethodSummaryBancontact = T['io.flow.v0.models.payment_method_summary_bancontact'];
16483
16603
  export const paymentMethodSummaryCard = T['io.flow.v0.models.payment_method_summary_card'];
16484
16604
  export const paymentMethodSummaryGooglepay = T['io.flow.v0.models.payment_method_summary_googlepay'];
16605
+ export const paymentMethodSummaryGrabpay = T['io.flow.v0.models.payment_method_summary_grabpay'];
16485
16606
  export const paymentMethodSummaryIdeal = T['io.flow.v0.models.payment_method_summary_ideal'];
16607
+ export const paymentMethodSummaryKcpCreditcard = T['io.flow.v0.models.payment_method_summary_kcp_creditcard'];
16486
16608
  export const paymentMethodSummaryKlarna = T['io.flow.v0.models.payment_method_summary_klarna'];
16487
16609
  export const paymentMethodSummaryMobilepay = T['io.flow.v0.models.payment_method_summary_mobilepay'];
16488
16610
  export const paymentMethodSummaryPaypal = T['io.flow.v0.models.payment_method_summary_paypal'];
16489
16611
  export const paymentMethodSummaryPrzelewy24 = T['io.flow.v0.models.payment_method_summary_przelewy24'];
16490
16612
  export const paymentMethodSummarySofort = T['io.flow.v0.models.payment_method_summary_sofort'];
16491
16613
  export const paymentMethodSummaryTwint = T['io.flow.v0.models.payment_method_summary_twint'];
16614
+ export const paymentMethodSummaryVipps = T['io.flow.v0.models.payment_method_summary_vipps'];
16492
16615
  export const paymentMethodTag = T['io.flow.v0.unions.payment_method_tag'];
16493
16616
  export const paymentMethodType = T['io.flow.v0.enums.payment_method_type'];
16494
16617
  export const paymentOrderDetailsLineItem = T['io.flow.v0.models.payment_order_details_line_item'];
@@ -16686,6 +16809,7 @@ export const refundCaptureUpsertedV2 = T['io.flow.v0.models.refund_capture_upser
16686
16809
  export const refundDeclineCode = T['io.flow.v0.enums.refund_decline_code'];
16687
16810
  export const refundDeletedV2 = T['io.flow.v0.models.refund_deleted_v2'];
16688
16811
  export const refundError = T['io.flow.v0.models.refund_error'];
16812
+ export const refundFailureCategory = T['io.flow.v0.enums.refund_failure_category'];
16689
16813
  export const refundForm = T['io.flow.v0.models.refund_form'];
16690
16814
  export const refundIdentifier = T['io.flow.v0.models.refund_identifier'];
16691
16815
  export const refundIdentifierDeleted = T['io.flow.v0.models.refund_identifier_deleted'];