@flowio/api-prop-types 10.16.79 → 10.16.80
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 +174 -10
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +174 -10
- package/src/api.js +226 -8
package/lib/api.d.ts
CHANGED
|
@@ -153,6 +153,7 @@ declare namespace io.flow.google.pay.v0.unions {
|
|
|
153
153
|
declare namespace io.flow.stripe.v0.enums {
|
|
154
154
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
155
155
|
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
156
|
+
type BalanceTransactionType = 'adjustment' | 'advance' | 'advance_funding' | 'anticipation_repayment' | 'application_fee' | 'application_fee_refund' | 'charge' | 'climate_order_purchase' | 'climate_order_refund' | 'connect_collection_transfer' | 'contribution' | 'issuing_authorization_hold' | 'issuing_authorization_release' | 'issuing_dispute' | 'issuing_transaction' | 'obligation_outbound' | 'obligation_reversal_inbound' | 'payment' | 'payment_failure_refund' | 'payment_network_reserve_hold' | 'payment_network_reserve_release' | 'payment_refund' | 'payment_reversal' | 'payment_unreconciled' | 'payout' | 'payout_cancel' | 'payout_failure' | 'refund' | 'refund_failure' | 'reserve_transaction' | 'reserved_funds' | 'stripe_fee' | 'stripe_fx_fee' | 'tax_fee' | 'topup' | 'topup_reversal' | 'transfer' | 'transfer_cancel' | 'transfer_failure' | 'transfer_refund';
|
|
156
157
|
type BankIdeal = 'abn_amro' | 'asn_bank' | 'bunq' | 'handelsbanken' | 'ing' | 'knab' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
|
|
157
158
|
type BicIdeal = 'ABNANL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
|
|
158
159
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
@@ -424,13 +425,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
424
425
|
readonly 'amount': number;
|
|
425
426
|
readonly 'charge': string;
|
|
426
427
|
readonly 'currency': string;
|
|
427
|
-
readonly 'evidence':
|
|
428
|
+
readonly 'evidence': io.flow.stripe.v0.models.DisputeEvidence;
|
|
428
429
|
readonly 'metadata': Record<string, string>;
|
|
429
430
|
readonly 'payment_intent'?: string;
|
|
430
431
|
readonly 'reason': io.flow.stripe.v0.enums.DisputeReason;
|
|
431
432
|
readonly 'status': io.flow.stripe.v0.enums.DisputeStatus;
|
|
432
433
|
readonly 'object': string;
|
|
433
|
-
readonly 'balance_transactions':
|
|
434
|
+
readonly 'balance_transactions': io.flow.stripe.v0.models.DisputeBalanceTransaction[];
|
|
434
435
|
readonly 'created': number;
|
|
435
436
|
readonly 'evidence_details': io.flow.stripe.v0.models.DisputeEvidenceDetails;
|
|
436
437
|
readonly 'is_charge_refundable': boolean;
|
|
@@ -438,6 +439,63 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
438
439
|
readonly 'payment_method_details'?: io.flow.stripe.v0.models.DisputePaymentMethodDetails;
|
|
439
440
|
}
|
|
440
441
|
|
|
442
|
+
interface DisputeBalanceTransaction {
|
|
443
|
+
readonly 'payment_intent'?: string;
|
|
444
|
+
readonly 'id': string;
|
|
445
|
+
readonly 'object': string;
|
|
446
|
+
readonly 'amount': number;
|
|
447
|
+
readonly 'available_on': number;
|
|
448
|
+
readonly 'created': number;
|
|
449
|
+
readonly 'currency': string;
|
|
450
|
+
readonly 'description'?: string;
|
|
451
|
+
readonly 'exchange_rate'?: number;
|
|
452
|
+
readonly 'fee'?: number;
|
|
453
|
+
readonly 'fee_details': io.flow.stripe.v0.models.DisputeBalanceTransactionFeeDetails[];
|
|
454
|
+
readonly 'net': number;
|
|
455
|
+
readonly 'reporting_category': string;
|
|
456
|
+
readonly 'source'?: string;
|
|
457
|
+
readonly 'status': string;
|
|
458
|
+
readonly 'type': io.flow.stripe.v0.enums.BalanceTransactionType;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
interface DisputeBalanceTransactionFeeDetails {
|
|
462
|
+
readonly 'amount': number;
|
|
463
|
+
readonly 'application'?: string;
|
|
464
|
+
readonly 'currency': string;
|
|
465
|
+
readonly 'description'?: string;
|
|
466
|
+
readonly 'type': string;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
interface DisputeEvidence {
|
|
470
|
+
readonly 'access_activity_log'?: string;
|
|
471
|
+
readonly 'billing_address'?: string;
|
|
472
|
+
readonly 'cancellation_policy'?: string;
|
|
473
|
+
readonly 'cancellation_policy_disclosure'?: string;
|
|
474
|
+
readonly 'cancellation_rebuttal'?: string;
|
|
475
|
+
readonly 'customer_communication'?: string;
|
|
476
|
+
readonly 'customer_email_address'?: string;
|
|
477
|
+
readonly 'customer_name'?: string;
|
|
478
|
+
readonly 'evidence.customer_purchase_ip'?: string;
|
|
479
|
+
readonly 'customer_signature'?: string;
|
|
480
|
+
readonly 'duplicate_charge_documentation'?: string;
|
|
481
|
+
readonly 'duplicate_charge_explanation'?: string;
|
|
482
|
+
readonly 'duplicate_charge_id'?: string;
|
|
483
|
+
readonly 'product_description'?: string;
|
|
484
|
+
readonly 'receipt'?: string;
|
|
485
|
+
readonly 'refund_policy'?: string;
|
|
486
|
+
readonly 'refund_policy_disclosure'?: string;
|
|
487
|
+
readonly 'refund_refusal_explanation'?: string;
|
|
488
|
+
readonly 'service_date'?: string;
|
|
489
|
+
readonly 'service_documentation'?: string;
|
|
490
|
+
readonly 'shipping_address'?: string;
|
|
491
|
+
readonly 'shipping_carrier'?: string;
|
|
492
|
+
readonly 'shipping_date'?: string;
|
|
493
|
+
readonly 'shipping_documentation'?: string;
|
|
494
|
+
readonly 'shipping_tracking_number'?: string;
|
|
495
|
+
readonly 'uncategorized_file'?: string;
|
|
496
|
+
readonly 'uncategorized_text'?: string;
|
|
497
|
+
}
|
|
498
|
+
|
|
441
499
|
interface DisputeEvidenceDetails {
|
|
442
500
|
readonly 'due_by'?: number;
|
|
443
501
|
readonly 'has_evidence': boolean;
|
|
@@ -1282,6 +1340,7 @@ declare namespace io.flow.shopify.external.v0.enums {
|
|
|
1282
1340
|
type Format = 'json' | 'xml';
|
|
1283
1341
|
type FulfillmentService = 'manual' | 'gift_card';
|
|
1284
1342
|
type FulfillmentStatusType = 'fulfilled' | 'null' | 'partial';
|
|
1343
|
+
type GraphqlWeightUnit = 'GRAMS' | 'KILOGRAMS' | 'OUNCES' | 'POUNDS';
|
|
1285
1344
|
type InventoryBehaviour = 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
|
|
1286
1345
|
type InventoryManagement = 'blank' | 'shopify';
|
|
1287
1346
|
type InventoryPolicy = 'deny' | 'continue';
|
|
@@ -1330,6 +1389,74 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1330
1389
|
readonly 'count': number;
|
|
1331
1390
|
}
|
|
1332
1391
|
|
|
1392
|
+
interface GraphqlInventoryItem {
|
|
1393
|
+
readonly 'id': string;
|
|
1394
|
+
readonly 'tracked': boolean;
|
|
1395
|
+
readonly 'requiresShipping'?: boolean;
|
|
1396
|
+
readonly 'measurement': io.flow.shopify.external.v0.models.GraphqlMeasurement;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
interface GraphqlMeasurement {
|
|
1400
|
+
readonly 'weight': io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
interface GraphqlOption {
|
|
1404
|
+
readonly 'id': string;
|
|
1405
|
+
readonly 'values': string[];
|
|
1406
|
+
readonly 'name': string;
|
|
1407
|
+
readonly 'position': number;
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
interface GraphqlProduct {
|
|
1411
|
+
readonly 'id': string;
|
|
1412
|
+
readonly 'legacyResourceId': string;
|
|
1413
|
+
readonly 'handle': string;
|
|
1414
|
+
readonly 'variants'?: io.flow.shopify.external.v0.models.GraphqlProductVariant[];
|
|
1415
|
+
readonly 'images': io.flow.shopify.external.v0.models.GraphqlProductImage[];
|
|
1416
|
+
readonly 'title': string;
|
|
1417
|
+
readonly 'vendor'?: string;
|
|
1418
|
+
readonly 'descriptionHtml'?: string;
|
|
1419
|
+
readonly 'productType'?: string;
|
|
1420
|
+
readonly 'status'?: string;
|
|
1421
|
+
readonly 'options': io.flow.shopify.external.v0.models.GraphqlOption[];
|
|
1422
|
+
readonly 'tags'?: string[];
|
|
1423
|
+
readonly 'templateSuffix'?: string;
|
|
1424
|
+
readonly 'publishedAt'?: string;
|
|
1425
|
+
readonly 'createdAt': string;
|
|
1426
|
+
readonly 'updatedAt': string;
|
|
1427
|
+
readonly 'hasVariantsThatRequiresComponents'?: boolean;
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1430
|
+
interface GraphqlProductImage {
|
|
1431
|
+
readonly 'id': string;
|
|
1432
|
+
readonly 'url': string;
|
|
1433
|
+
readonly 'altText'?: string;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
interface GraphqlProductVariant {
|
|
1437
|
+
readonly 'id': string;
|
|
1438
|
+
readonly 'legacyResourceId': string;
|
|
1439
|
+
readonly 'sku'?: string;
|
|
1440
|
+
readonly 'price': string;
|
|
1441
|
+
readonly 'title': string;
|
|
1442
|
+
readonly 'taxable': boolean;
|
|
1443
|
+
readonly 'compareAtPrice'?: string;
|
|
1444
|
+
readonly 'barcode'?: string;
|
|
1445
|
+
readonly 'inventoryPolicy': io.flow.shopify.external.v0.enums.InventoryPolicy;
|
|
1446
|
+
readonly 'inventoryQuantity'?: number;
|
|
1447
|
+
readonly 'image'?: io.flow.shopify.external.v0.models.GraphqlVariantImage;
|
|
1448
|
+
readonly 'inventoryItem': io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
interface GraphqlVariantImage {
|
|
1452
|
+
readonly 'id': string;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
interface GraphqlWeight {
|
|
1456
|
+
readonly 'unit': io.flow.shopify.external.v0.enums.GraphqlWeightUnit;
|
|
1457
|
+
readonly 'value': number;
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1333
1460
|
interface Metafield {
|
|
1334
1461
|
readonly 'id': number;
|
|
1335
1462
|
readonly 'key': string;
|
|
@@ -1433,7 +1560,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1433
1560
|
readonly 'options': io.flow.shopify.external.v0.models.Option[];
|
|
1434
1561
|
readonly 'tags'?: string;
|
|
1435
1562
|
readonly 'template_suffix'?: string;
|
|
1436
|
-
readonly 'published_scope'
|
|
1563
|
+
readonly 'published_scope'?: io.flow.shopify.external.v0.enums.PublishedScope;
|
|
1437
1564
|
readonly 'published_at'?: string;
|
|
1438
1565
|
readonly 'created_at': string;
|
|
1439
1566
|
readonly 'updated_at': string;
|
|
@@ -1449,9 +1576,9 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1449
1576
|
readonly 'product_id': number;
|
|
1450
1577
|
readonly 'variant_ids': number[];
|
|
1451
1578
|
readonly 'src'?: string;
|
|
1452
|
-
readonly 'position'
|
|
1453
|
-
readonly 'created_at'
|
|
1454
|
-
readonly 'updated_at'
|
|
1579
|
+
readonly 'position'?: number;
|
|
1580
|
+
readonly 'created_at'?: string;
|
|
1581
|
+
readonly 'updated_at'?: string;
|
|
1455
1582
|
readonly 'alt'?: string;
|
|
1456
1583
|
}
|
|
1457
1584
|
|
|
@@ -1477,7 +1604,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1477
1604
|
readonly 'option1'?: string;
|
|
1478
1605
|
readonly 'option2'?: string;
|
|
1479
1606
|
readonly 'option3'?: string;
|
|
1480
|
-
readonly 'requires_shipping'
|
|
1607
|
+
readonly 'requires_shipping'?: boolean;
|
|
1481
1608
|
readonly 'metafields'?: io.flow.shopify.external.v0.models.Metafield[];
|
|
1482
1609
|
}
|
|
1483
1610
|
|
|
@@ -1618,6 +1745,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1618
1745
|
readonly 'user_agent'?: string;
|
|
1619
1746
|
}
|
|
1620
1747
|
|
|
1748
|
+
interface ShopifyCountryHarmonizedSystemCode {
|
|
1749
|
+
readonly 'country_code': string;
|
|
1750
|
+
readonly 'harmonized_system_code': string;
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1621
1753
|
interface ShopifyCustomer {
|
|
1622
1754
|
readonly 'id': number;
|
|
1623
1755
|
readonly 'addresses': io.flow.shopify.external.v0.models.ShopifyCustomerAddress[];
|
|
@@ -1838,6 +1970,14 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1838
1970
|
readonly 'id': number;
|
|
1839
1971
|
}
|
|
1840
1972
|
|
|
1973
|
+
interface ShopifyInventoryItemSummary {
|
|
1974
|
+
readonly 'country_code_of_origin'?: string;
|
|
1975
|
+
readonly 'country_harmonized_system_codes'?: io.flow.shopify.external.v0.models.ShopifyCountryHarmonizedSystemCode[];
|
|
1976
|
+
readonly 'harmonized_system_code'?: string;
|
|
1977
|
+
readonly 'updated_at': string;
|
|
1978
|
+
readonly 'requires_shipping': boolean;
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1841
1981
|
interface ShopifyInventoryLevel {
|
|
1842
1982
|
readonly 'inventory_item_id': number;
|
|
1843
1983
|
readonly 'location_id': number;
|
|
@@ -2432,7 +2572,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2432
2572
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
2433
2573
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
2434
2574
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
2435
|
-
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
|
|
2575
|
+
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24';
|
|
2436
2576
|
type PayoutAttachmentType = 'transactions';
|
|
2437
2577
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
2438
2578
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
@@ -9080,11 +9220,21 @@ declare namespace io.flow.v0.models {
|
|
|
9080
9220
|
readonly 'reference'?: string;
|
|
9081
9221
|
}
|
|
9082
9222
|
|
|
9223
|
+
interface PaymentMethodDataInitPrzelewy24 {
|
|
9224
|
+
readonly 'type': 'init_przelewy24';
|
|
9225
|
+
readonly 'reference'?: string;
|
|
9226
|
+
}
|
|
9227
|
+
|
|
9083
9228
|
interface PaymentMethodDataInitSofort {
|
|
9084
9229
|
readonly 'type': 'init_sofort';
|
|
9085
9230
|
readonly 'reference'?: string;
|
|
9086
9231
|
}
|
|
9087
9232
|
|
|
9233
|
+
interface PaymentMethodDataInitTwint {
|
|
9234
|
+
readonly 'type': 'init_twint';
|
|
9235
|
+
readonly 'reference'?: string;
|
|
9236
|
+
}
|
|
9237
|
+
|
|
9088
9238
|
interface PaymentMethodDataOptionLogoSvg {
|
|
9089
9239
|
readonly 'type': 'svg';
|
|
9090
9240
|
readonly 'url': string;
|
|
@@ -9196,11 +9346,21 @@ declare namespace io.flow.v0.models {
|
|
|
9196
9346
|
readonly 'merchant_of_record': io.flow.v0.enums.MerchantOfRecord;
|
|
9197
9347
|
}
|
|
9198
9348
|
|
|
9349
|
+
interface PaymentMethodSummaryPrzelewy24 {
|
|
9350
|
+
readonly 'type': 'przelewy24';
|
|
9351
|
+
readonly 'merchant_of_record': io.flow.v0.enums.MerchantOfRecord;
|
|
9352
|
+
}
|
|
9353
|
+
|
|
9199
9354
|
interface PaymentMethodSummarySofort {
|
|
9200
9355
|
readonly 'type': 'sofort';
|
|
9201
9356
|
readonly 'merchant_of_record': io.flow.v0.enums.MerchantOfRecord;
|
|
9202
9357
|
}
|
|
9203
9358
|
|
|
9359
|
+
interface PaymentMethodSummaryTwint {
|
|
9360
|
+
readonly 'type': 'twint';
|
|
9361
|
+
readonly 'merchant_of_record': io.flow.v0.enums.MerchantOfRecord;
|
|
9362
|
+
}
|
|
9363
|
+
|
|
9204
9364
|
interface PaymentOrderDetailsLineItem {
|
|
9205
9365
|
readonly 'id'?: string;
|
|
9206
9366
|
readonly 'description': string;
|
|
@@ -12891,12 +13051,12 @@ declare namespace io.flow.v0.unions {
|
|
|
12891
13051
|
type PaymentCaptureOption = (io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual);
|
|
12892
13052
|
type PaymentForm = (io.flow.v0.models.MerchantOfRecordPaymentForm);
|
|
12893
13053
|
type PaymentMethodCard = (io.flow.v0.models.PaymentMethodCardPciDetails | io.flow.v0.models.PaymentMethodCardToken);
|
|
12894
|
-
type PaymentMethodData = (io.flow.v0.models.PaymentMethodDataInitKlarna | io.flow.v0.models.PaymentMethodDataInitAfterpay | io.flow.v0.models.PaymentMethodDataInitApplepay | io.flow.v0.models.PaymentMethodDataInitGooglepay | io.flow.v0.models.PaymentMethodDataInitPaypal | io.flow.v0.models.PaymentMethodDataInitIdeal | io.flow.v0.models.PaymentMethodDataInitSofort | io.flow.v0.models.PaymentMethodDataInitBancontact | io.flow.v0.models.PaymentMethodDataValidateApplepay | io.flow.v0.models.PaymentMethodDataAuthorizeCard | io.flow.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.v0.models.PaymentMethodDataCompleteAuthorizationCard);
|
|
13054
|
+
type PaymentMethodData = (io.flow.v0.models.PaymentMethodDataInitKlarna | io.flow.v0.models.PaymentMethodDataInitAfterpay | io.flow.v0.models.PaymentMethodDataInitApplepay | io.flow.v0.models.PaymentMethodDataInitGooglepay | io.flow.v0.models.PaymentMethodDataInitPaypal | io.flow.v0.models.PaymentMethodDataInitIdeal | io.flow.v0.models.PaymentMethodDataInitSofort | io.flow.v0.models.PaymentMethodDataInitTwint | io.flow.v0.models.PaymentMethodDataInitPrzelewy24 | io.flow.v0.models.PaymentMethodDataInitBancontact | io.flow.v0.models.PaymentMethodDataValidateApplepay | io.flow.v0.models.PaymentMethodDataAuthorizeCard | io.flow.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.v0.models.PaymentMethodDataCompleteAuthorizationCard);
|
|
12895
13055
|
type PaymentMethodDataAuthorizeApplepayResult = (io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure);
|
|
12896
13056
|
type PaymentMethodDataAuthorizeKlarnaResult = (io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure);
|
|
12897
13057
|
type PaymentMethodDataOptionLogo = (io.flow.v0.models.PaymentMethodDataOptionLogoSvg);
|
|
12898
13058
|
type PaymentMethodStoredDetailsCard = (io.flow.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.v0.models.PaymentMethodStoredDetailsCardSubsequent);
|
|
12899
|
-
type PaymentMethodSummary = (io.flow.v0.models.PaymentMethodSummaryCard | io.flow.v0.models.PaymentMethodSummaryKlarna | io.flow.v0.models.PaymentMethodSummaryAfterpay | io.flow.v0.models.PaymentMethodSummaryApplepay | io.flow.v0.models.PaymentMethodSummaryGooglepay | io.flow.v0.models.PaymentMethodSummaryPaypal | io.flow.v0.models.PaymentMethodSummaryIdeal | io.flow.v0.models.PaymentMethodSummarySofort | io.flow.v0.models.PaymentMethodSummaryBancontact);
|
|
13059
|
+
type PaymentMethodSummary = (io.flow.v0.models.PaymentMethodSummaryCard | io.flow.v0.models.PaymentMethodSummaryKlarna | io.flow.v0.models.PaymentMethodSummaryAfterpay | io.flow.v0.models.PaymentMethodSummaryApplepay | io.flow.v0.models.PaymentMethodSummaryGooglepay | io.flow.v0.models.PaymentMethodSummaryPaypal | io.flow.v0.models.PaymentMethodSummaryIdeal | io.flow.v0.models.PaymentMethodSummaryTwint | io.flow.v0.models.PaymentMethodSummaryPrzelewy24 | io.flow.v0.models.PaymentMethodSummarySofort | io.flow.v0.models.PaymentMethodSummaryBancontact);
|
|
12900
13060
|
|
|
12901
13061
|
type PaymentMethodTag = ({
|
|
12902
13062
|
discriminator: 'organization_payment_method_tag',
|
|
@@ -14082,7 +14242,9 @@ export const paymentMethodDataInitGooglepay: PropTypes.Requireable<io.flow.v0.mo
|
|
|
14082
14242
|
export const paymentMethodDataInitIdeal: PropTypes.Requireable<io.flow.v0.models.PaymentMethodDataInitIdeal>;
|
|
14083
14243
|
export const paymentMethodDataInitKlarna: PropTypes.Requireable<io.flow.v0.models.PaymentMethodDataInitKlarna>;
|
|
14084
14244
|
export const paymentMethodDataInitPaypal: PropTypes.Requireable<io.flow.v0.models.PaymentMethodDataInitPaypal>;
|
|
14245
|
+
export const paymentMethodDataInitPrzelewy24: PropTypes.Requireable<io.flow.v0.models.PaymentMethodDataInitPrzelewy24>;
|
|
14085
14246
|
export const paymentMethodDataInitSofort: PropTypes.Requireable<io.flow.v0.models.PaymentMethodDataInitSofort>;
|
|
14247
|
+
export const paymentMethodDataInitTwint: PropTypes.Requireable<io.flow.v0.models.PaymentMethodDataInitTwint>;
|
|
14086
14248
|
export const paymentMethodDataOptionLogoSvg: PropTypes.Requireable<io.flow.v0.models.PaymentMethodDataOptionLogoSvg>;
|
|
14087
14249
|
export const paymentMethodDataPaymentOption: PropTypes.Requireable<io.flow.v0.models.PaymentMethodDataPaymentOption>;
|
|
14088
14250
|
export const paymentMethodDataSelectedPaymentOption: PropTypes.Requireable<io.flow.v0.models.PaymentMethodDataSelectedPaymentOption>;
|
|
@@ -14102,7 +14264,9 @@ export const paymentMethodSummaryGooglepay: PropTypes.Requireable<io.flow.v0.mod
|
|
|
14102
14264
|
export const paymentMethodSummaryIdeal: PropTypes.Requireable<io.flow.v0.models.PaymentMethodSummaryIdeal>;
|
|
14103
14265
|
export const paymentMethodSummaryKlarna: PropTypes.Requireable<io.flow.v0.models.PaymentMethodSummaryKlarna>;
|
|
14104
14266
|
export const paymentMethodSummaryPaypal: PropTypes.Requireable<io.flow.v0.models.PaymentMethodSummaryPaypal>;
|
|
14267
|
+
export const paymentMethodSummaryPrzelewy24: PropTypes.Requireable<io.flow.v0.models.PaymentMethodSummaryPrzelewy24>;
|
|
14105
14268
|
export const paymentMethodSummarySofort: PropTypes.Requireable<io.flow.v0.models.PaymentMethodSummarySofort>;
|
|
14269
|
+
export const paymentMethodSummaryTwint: PropTypes.Requireable<io.flow.v0.models.PaymentMethodSummaryTwint>;
|
|
14106
14270
|
export const paymentOrderDetailsLineItem: PropTypes.Requireable<io.flow.v0.models.PaymentOrderDetailsLineItem>;
|
|
14107
14271
|
export const paymentPaymentMethod: PropTypes.Requireable<io.flow.v0.models.PaymentPaymentMethod>;
|
|
14108
14272
|
export const paymentPaymentRequestReference: PropTypes.Requireable<io.flow.v0.models.PaymentPaymentRequestReference>;
|