@flowio/api-prop-types 10.16.82 → 10.16.83
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/lib/api.d.ts +77 -8
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +77 -8
- package/src/api.js +111 -2
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']
|
|
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
|
-
|
|
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']);
|
|
@@ -6376,6 +6406,21 @@ T['io.flow.v0.models.ratecard_region_reference'] = PropTypes.exact({
|
|
|
6376
6406
|
id: PropTypes.string.isRequired,
|
|
6377
6407
|
});
|
|
6378
6408
|
|
|
6409
|
+
T['io.flow.v0.enums.refund_failure_category'] = PropTypes.oneOf([
|
|
6410
|
+
'amount_too_high',
|
|
6411
|
+
'amount_too_low',
|
|
6412
|
+
'not_enough_balance',
|
|
6413
|
+
'insufficient_funds',
|
|
6414
|
+
'refund_period_expired',
|
|
6415
|
+
'dispute',
|
|
6416
|
+
'not_captured',
|
|
6417
|
+
'unsupported_payment_method',
|
|
6418
|
+
'unsupported_partial_refund',
|
|
6419
|
+
'invalid_currency',
|
|
6420
|
+
'card_no_longer_valid',
|
|
6421
|
+
'general',
|
|
6422
|
+
]);
|
|
6423
|
+
|
|
6379
6424
|
T['io.flow.v0.enums.refund_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed', 'canceled']);
|
|
6380
6425
|
|
|
6381
6426
|
T['io.flow.v0.models.payment_refund_status'] = PropTypes.exact({
|
|
@@ -7442,6 +7487,7 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
7442
7487
|
'virtual_card_capture',
|
|
7443
7488
|
'virtual_card_refund',
|
|
7444
7489
|
'failed_payout',
|
|
7490
|
+
'tax_refund',
|
|
7445
7491
|
]);
|
|
7446
7492
|
|
|
7447
7493
|
T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
@@ -8037,6 +8083,11 @@ T['io.flow.v0.models.payment_payment_method'] = PropTypes.exact({
|
|
|
8037
8083
|
possible_actions: PropTypes.arrayOf(T['io.flow.v0.enums.payment_action_type']).isRequired,
|
|
8038
8084
|
});
|
|
8039
8085
|
|
|
8086
|
+
T['io.flow.v0.models.payment_method_summary_vipps'] = PropTypes.exact({
|
|
8087
|
+
type: PropTypes.oneOf(['vipps']).isRequired,
|
|
8088
|
+
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
8089
|
+
});
|
|
8090
|
+
|
|
8040
8091
|
T['io.flow.v0.models.payment_method_summary_twint'] = PropTypes.exact({
|
|
8041
8092
|
type: PropTypes.oneOf(['twint']).isRequired,
|
|
8042
8093
|
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
@@ -8067,12 +8118,22 @@ T['io.flow.v0.models.payment_method_summary_klarna'] = PropTypes.exact({
|
|
|
8067
8118
|
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
8068
8119
|
});
|
|
8069
8120
|
|
|
8121
|
+
T['io.flow.v0.models.payment_method_summary_kcp_creditcard'] = PropTypes.exact({
|
|
8122
|
+
type: PropTypes.oneOf(['kcp_creditcard']).isRequired,
|
|
8123
|
+
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
8124
|
+
});
|
|
8125
|
+
|
|
8070
8126
|
T['io.flow.v0.models.payment_method_summary_ideal'] = PropTypes.exact({
|
|
8071
8127
|
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
8072
8128
|
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
8073
8129
|
issuer: PropTypes.string,
|
|
8074
8130
|
});
|
|
8075
8131
|
|
|
8132
|
+
T['io.flow.v0.models.payment_method_summary_grabpay'] = PropTypes.exact({
|
|
8133
|
+
type: PropTypes.oneOf(['grabpay']).isRequired,
|
|
8134
|
+
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
8135
|
+
});
|
|
8136
|
+
|
|
8076
8137
|
T['io.flow.v0.models.payment_method_summary_googlepay'] = PropTypes.exact({
|
|
8077
8138
|
type: PropTypes.oneOf(['googlepay']).isRequired,
|
|
8078
8139
|
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
@@ -8177,7 +8238,10 @@ T['io.flow.v0.unions.payment_method_data'] = PropTypes.oneOfType([
|
|
|
8177
8238
|
T['io.flow.v0.models.payment_method_data_init_twint'],
|
|
8178
8239
|
T['io.flow.v0.models.payment_method_data_init_przelewy24'],
|
|
8179
8240
|
T['io.flow.v0.models.payment_method_data_init_mobilepay'],
|
|
8241
|
+
T['io.flow.v0.models.payment_method_data_init_kcp_creditcard'],
|
|
8180
8242
|
T['io.flow.v0.models.payment_method_data_init_bancontact'],
|
|
8243
|
+
T['io.flow.v0.models.payment_method_data_init_grabpay'],
|
|
8244
|
+
T['io.flow.v0.models.payment_method_data_init_vipps'],
|
|
8181
8245
|
T['io.flow.v0.models.payment_method_data_validate_applepay'],
|
|
8182
8246
|
T['io.flow.v0.models.payment_method_data_authorize_card'],
|
|
8183
8247
|
T['io.flow.v0.models.payment_method_data_authorize_googlepay'],
|
|
@@ -10481,10 +10545,13 @@ T['io.flow.v0.unions.payment_method_summary'] = PropTypes.oneOfType([
|
|
|
10481
10545
|
T['io.flow.v0.models.payment_method_summary_paypal'],
|
|
10482
10546
|
T['io.flow.v0.models.payment_method_summary_ideal'],
|
|
10483
10547
|
T['io.flow.v0.models.payment_method_summary_twint'],
|
|
10548
|
+
T['io.flow.v0.models.payment_method_summary_vipps'],
|
|
10484
10549
|
T['io.flow.v0.models.payment_method_summary_przelewy24'],
|
|
10485
10550
|
T['io.flow.v0.models.payment_method_summary_mobilepay'],
|
|
10551
|
+
T['io.flow.v0.models.payment_method_summary_kcp_creditcard'],
|
|
10486
10552
|
T['io.flow.v0.models.payment_method_summary_sofort'],
|
|
10487
10553
|
T['io.flow.v0.models.payment_method_summary_bancontact'],
|
|
10554
|
+
T['io.flow.v0.models.payment_method_summary_grabpay'],
|
|
10488
10555
|
]);
|
|
10489
10556
|
|
|
10490
10557
|
T['io.flow.v0.models.payment_authorization'] = PropTypes.exact({
|
|
@@ -11089,6 +11156,8 @@ T['io.flow.v0.models.refund'] = PropTypes.exact({
|
|
|
11089
11156
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
11090
11157
|
status: T['io.flow.v0.enums.refund_status'],
|
|
11091
11158
|
base: T['io.flow.v0.models.money'],
|
|
11159
|
+
failure_category: T['io.flow.v0.enums.refund_failure_category'],
|
|
11160
|
+
failure_psp_reason: PropTypes.string,
|
|
11092
11161
|
});
|
|
11093
11162
|
|
|
11094
11163
|
T['io.flow.v0.models.refund_version'] = PropTypes.exact({
|
|
@@ -11839,6 +11908,30 @@ T['io.flow.v0.models.item_version'] = PropTypes.exact({
|
|
|
11839
11908
|
item: T['io.flow.v0.models.item'].isRequired,
|
|
11840
11909
|
});
|
|
11841
11910
|
|
|
11911
|
+
T['io.flow.v0.models.item_updated'] = PropTypes.exact({
|
|
11912
|
+
discriminator: PropTypes.oneOf(['item_updated']).isRequired,
|
|
11913
|
+
event_id: PropTypes.string.isRequired,
|
|
11914
|
+
timestamp: PropTypes.string.isRequired,
|
|
11915
|
+
organization: PropTypes.string.isRequired,
|
|
11916
|
+
item: T['io.flow.v0.models.item'].isRequired,
|
|
11917
|
+
});
|
|
11918
|
+
|
|
11919
|
+
T['io.flow.v0.models.item_inserted'] = PropTypes.exact({
|
|
11920
|
+
discriminator: PropTypes.oneOf(['item_inserted']).isRequired,
|
|
11921
|
+
event_id: PropTypes.string.isRequired,
|
|
11922
|
+
timestamp: PropTypes.string.isRequired,
|
|
11923
|
+
organization: PropTypes.string.isRequired,
|
|
11924
|
+
item: T['io.flow.v0.models.item'].isRequired,
|
|
11925
|
+
});
|
|
11926
|
+
|
|
11927
|
+
T['io.flow.v0.models.item_deleted'] = PropTypes.exact({
|
|
11928
|
+
discriminator: PropTypes.oneOf(['item_deleted']).isRequired,
|
|
11929
|
+
event_id: PropTypes.string.isRequired,
|
|
11930
|
+
timestamp: PropTypes.string.isRequired,
|
|
11931
|
+
organization: PropTypes.string.isRequired,
|
|
11932
|
+
item: T['io.flow.v0.models.item'].isRequired,
|
|
11933
|
+
});
|
|
11934
|
+
|
|
11842
11935
|
T['io.flow.v0.models.checkout_item_content'] = PropTypes.exact({
|
|
11843
11936
|
item: T['io.flow.v0.models.item'].isRequired,
|
|
11844
11937
|
name: PropTypes.string.isRequired,
|
|
@@ -13854,6 +13947,9 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
13854
13947
|
T['io.flow.v0.models.subcatalog_item_deleted'],
|
|
13855
13948
|
T['io.flow.v0.models.catalog_statistics_upserted'],
|
|
13856
13949
|
T['io.flow.v0.models.catalog_statistics_deleted'],
|
|
13950
|
+
T['io.flow.v0.models.item_inserted'],
|
|
13951
|
+
T['io.flow.v0.models.item_updated'],
|
|
13952
|
+
T['io.flow.v0.models.item_deleted'],
|
|
13857
13953
|
T['io.flow.v0.models.channel_upserted'],
|
|
13858
13954
|
T['io.flow.v0.models.channel_deleted'],
|
|
13859
13955
|
T['io.flow.v0.models.channel_currency_upserted'],
|
|
@@ -14239,6 +14335,9 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
14239
14335
|
'subcatalog_item_deleted',
|
|
14240
14336
|
'catalog_statistics_upserted',
|
|
14241
14337
|
'catalog_statistics_deleted',
|
|
14338
|
+
'item_inserted',
|
|
14339
|
+
'item_updated',
|
|
14340
|
+
'item_deleted',
|
|
14242
14341
|
'channel_upserted',
|
|
14243
14342
|
'channel_deleted',
|
|
14244
14343
|
'channel_currency_upserted',
|
|
@@ -16070,10 +16169,12 @@ export const issuerV1 = T['io.flow.v0.models.issuer_v1'];
|
|
|
16070
16169
|
export const item = T['io.flow.v0.models.item'];
|
|
16071
16170
|
export const itemAttributesPatchForm = T['io.flow.v0.models.item_attributes_patch_form'];
|
|
16072
16171
|
export const itemAvailabilityStatus = T['io.flow.v0.enums.item_availability_status'];
|
|
16172
|
+
export const itemDeleted = T['io.flow.v0.models.item_deleted'];
|
|
16073
16173
|
export const itemForm = T['io.flow.v0.models.item_form'];
|
|
16074
16174
|
export const itemFormOverlay = T['io.flow.v0.models.item_form_overlay'];
|
|
16075
16175
|
export const itemFormOverlayForm = T['io.flow.v0.models.item_form_overlay_form'];
|
|
16076
16176
|
export const itemIdentifier = T['io.flow.v0.enums.item_identifier'];
|
|
16177
|
+
export const itemInserted = T['io.flow.v0.models.item_inserted'];
|
|
16077
16178
|
export const itemMargin = T['io.flow.v0.models.item_margin'];
|
|
16078
16179
|
export const itemMarginDeletedV2 = T['io.flow.v0.models.item_margin_deleted_v2'];
|
|
16079
16180
|
export const itemMarginPostForm = T['io.flow.v0.models.item_margin_post_form'];
|
|
@@ -16090,6 +16191,7 @@ export const itemSalesMarginDeleted = T['io.flow.v0.models.item_sales_margin_del
|
|
|
16090
16191
|
export const itemSalesMarginUpserted = T['io.flow.v0.models.item_sales_margin_upserted'];
|
|
16091
16192
|
export const itemShippingPricing = T['io.flow.v0.models.item_shipping_pricing'];
|
|
16092
16193
|
export const itemStatistics = T['io.flow.v0.models.item_statistics'];
|
|
16194
|
+
export const itemUpdated = T['io.flow.v0.models.item_updated'];
|
|
16093
16195
|
export const itemVersion = T['io.flow.v0.models.item_version'];
|
|
16094
16196
|
export const jsonpResponse = T['io.flow.v0.models.jsonp_response'];
|
|
16095
16197
|
export const klarnaPaymentCategory = T['io.flow.v0.models.klarna_payment_category'];
|
|
@@ -16454,13 +16556,16 @@ export const paymentMethodDataInitAfterpay = T['io.flow.v0.models.payment_method
|
|
|
16454
16556
|
export const paymentMethodDataInitApplepay = T['io.flow.v0.models.payment_method_data_init_applepay'];
|
|
16455
16557
|
export const paymentMethodDataInitBancontact = T['io.flow.v0.models.payment_method_data_init_bancontact'];
|
|
16456
16558
|
export const paymentMethodDataInitGooglepay = T['io.flow.v0.models.payment_method_data_init_googlepay'];
|
|
16559
|
+
export const paymentMethodDataInitGrabpay = T['io.flow.v0.models.payment_method_data_init_grabpay'];
|
|
16457
16560
|
export const paymentMethodDataInitIdeal = T['io.flow.v0.models.payment_method_data_init_ideal'];
|
|
16561
|
+
export const paymentMethodDataInitKcpCreditcard = T['io.flow.v0.models.payment_method_data_init_kcp_creditcard'];
|
|
16458
16562
|
export const paymentMethodDataInitKlarna = T['io.flow.v0.models.payment_method_data_init_klarna'];
|
|
16459
16563
|
export const paymentMethodDataInitMobilepay = T['io.flow.v0.models.payment_method_data_init_mobilepay'];
|
|
16460
16564
|
export const paymentMethodDataInitPaypal = T['io.flow.v0.models.payment_method_data_init_paypal'];
|
|
16461
16565
|
export const paymentMethodDataInitPrzelewy24 = T['io.flow.v0.models.payment_method_data_init_przelewy24'];
|
|
16462
16566
|
export const paymentMethodDataInitSofort = T['io.flow.v0.models.payment_method_data_init_sofort'];
|
|
16463
16567
|
export const paymentMethodDataInitTwint = T['io.flow.v0.models.payment_method_data_init_twint'];
|
|
16568
|
+
export const paymentMethodDataInitVipps = T['io.flow.v0.models.payment_method_data_init_vipps'];
|
|
16464
16569
|
export const paymentMethodDataOptionLogo = T['io.flow.v0.unions.payment_method_data_option_logo'];
|
|
16465
16570
|
export const paymentMethodDataOptionLogoSvg = T['io.flow.v0.models.payment_method_data_option_logo_svg'];
|
|
16466
16571
|
export const paymentMethodDataOptionType = T['io.flow.v0.enums.payment_method_data_option_type'];
|
|
@@ -16482,13 +16587,16 @@ export const paymentMethodSummaryApplepay = T['io.flow.v0.models.payment_method_
|
|
|
16482
16587
|
export const paymentMethodSummaryBancontact = T['io.flow.v0.models.payment_method_summary_bancontact'];
|
|
16483
16588
|
export const paymentMethodSummaryCard = T['io.flow.v0.models.payment_method_summary_card'];
|
|
16484
16589
|
export const paymentMethodSummaryGooglepay = T['io.flow.v0.models.payment_method_summary_googlepay'];
|
|
16590
|
+
export const paymentMethodSummaryGrabpay = T['io.flow.v0.models.payment_method_summary_grabpay'];
|
|
16485
16591
|
export const paymentMethodSummaryIdeal = T['io.flow.v0.models.payment_method_summary_ideal'];
|
|
16592
|
+
export const paymentMethodSummaryKcpCreditcard = T['io.flow.v0.models.payment_method_summary_kcp_creditcard'];
|
|
16486
16593
|
export const paymentMethodSummaryKlarna = T['io.flow.v0.models.payment_method_summary_klarna'];
|
|
16487
16594
|
export const paymentMethodSummaryMobilepay = T['io.flow.v0.models.payment_method_summary_mobilepay'];
|
|
16488
16595
|
export const paymentMethodSummaryPaypal = T['io.flow.v0.models.payment_method_summary_paypal'];
|
|
16489
16596
|
export const paymentMethodSummaryPrzelewy24 = T['io.flow.v0.models.payment_method_summary_przelewy24'];
|
|
16490
16597
|
export const paymentMethodSummarySofort = T['io.flow.v0.models.payment_method_summary_sofort'];
|
|
16491
16598
|
export const paymentMethodSummaryTwint = T['io.flow.v0.models.payment_method_summary_twint'];
|
|
16599
|
+
export const paymentMethodSummaryVipps = T['io.flow.v0.models.payment_method_summary_vipps'];
|
|
16492
16600
|
export const paymentMethodTag = T['io.flow.v0.unions.payment_method_tag'];
|
|
16493
16601
|
export const paymentMethodType = T['io.flow.v0.enums.payment_method_type'];
|
|
16494
16602
|
export const paymentOrderDetailsLineItem = T['io.flow.v0.models.payment_order_details_line_item'];
|
|
@@ -16686,6 +16794,7 @@ export const refundCaptureUpsertedV2 = T['io.flow.v0.models.refund_capture_upser
|
|
|
16686
16794
|
export const refundDeclineCode = T['io.flow.v0.enums.refund_decline_code'];
|
|
16687
16795
|
export const refundDeletedV2 = T['io.flow.v0.models.refund_deleted_v2'];
|
|
16688
16796
|
export const refundError = T['io.flow.v0.models.refund_error'];
|
|
16797
|
+
export const refundFailureCategory = T['io.flow.v0.enums.refund_failure_category'];
|
|
16689
16798
|
export const refundForm = T['io.flow.v0.models.refund_form'];
|
|
16690
16799
|
export const refundIdentifier = T['io.flow.v0.models.refund_identifier'];
|
|
16691
16800
|
export const refundIdentifierDeleted = T['io.flow.v0.models.refund_identifier_deleted'];
|