@flowio/api-internal-prop-types 9.24.48 → 9.24.49
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-internal.d.ts +93 -12
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +93 -12
- package/src/api-internal.js +121 -24
package/lib/api-internal.d.ts
CHANGED
|
@@ -4390,9 +4390,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
4390
4390
|
type Contract = 'RECURRING';
|
|
4391
4391
|
type DeviceChannel = 'app' | 'browser';
|
|
4392
4392
|
type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST';
|
|
4393
|
-
type
|
|
4393
|
+
type HttpRedirectMethod = 'GET' | 'POST';
|
|
4394
4394
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
4395
|
-
type PaymentMethod = 'ach' | 'alipay' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mc' | 'molpay_points' | 'multibanco' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
4395
|
+
type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
4396
4396
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
4397
4397
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
4398
4398
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -4414,6 +4414,11 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4414
4414
|
readonly 'currency': string;
|
|
4415
4415
|
}
|
|
4416
4416
|
|
|
4417
|
+
interface Applepay {
|
|
4418
|
+
readonly 'type': 'applepay';
|
|
4419
|
+
readonly 'applePayToken': string;
|
|
4420
|
+
}
|
|
4421
|
+
|
|
4417
4422
|
interface Authentication {
|
|
4418
4423
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
4419
4424
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -4441,6 +4446,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4441
4446
|
readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4442
4447
|
readonly 'threeDS2RequestData'?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
4443
4448
|
readonly 'recurringProcessingModel'?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
4449
|
+
readonly 'mcc'?: string;
|
|
4450
|
+
readonly 'metadata'?: any/*object*/;
|
|
4444
4451
|
}
|
|
4445
4452
|
|
|
4446
4453
|
interface AuthorizeRequest3D {
|
|
@@ -4597,6 +4604,14 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4597
4604
|
readonly 'paymentData'?: string;
|
|
4598
4605
|
}
|
|
4599
4606
|
|
|
4607
|
+
interface PaymentDetailsV663Ds2Challenge {
|
|
4608
|
+
readonly 'threeds2.challengeResult': string;
|
|
4609
|
+
}
|
|
4610
|
+
|
|
4611
|
+
interface PaymentDetailsV663Ds2Fingerprint {
|
|
4612
|
+
readonly 'threeds2.fingerprint': string;
|
|
4613
|
+
}
|
|
4614
|
+
|
|
4600
4615
|
interface PaymentRequest {
|
|
4601
4616
|
readonly 'reference': string;
|
|
4602
4617
|
readonly 'merchantAccount': string;
|
|
@@ -4618,7 +4633,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4618
4633
|
readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4619
4634
|
readonly 'origin'?: string;
|
|
4620
4635
|
readonly 'channel'?: io.flow.adyen.v0.enums.Channel;
|
|
4621
|
-
readonly '
|
|
4636
|
+
readonly 'returnUrl'?: string;
|
|
4637
|
+
readonly 'mcc'?: string;
|
|
4638
|
+
readonly 'metadata'?: any/*object*/;
|
|
4639
|
+
readonly 'redirectToIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4640
|
+
readonly 'redirectFromIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4641
|
+
readonly 'storePaymentMethod'?: boolean;
|
|
4622
4642
|
}
|
|
4623
4643
|
|
|
4624
4644
|
interface PaymentResponse {
|
|
@@ -4635,12 +4655,50 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4635
4655
|
interface PaymentResponseAdditionalData {
|
|
4636
4656
|
readonly 'authCode'?: string;
|
|
4637
4657
|
readonly 'avsResultRaw'?: string;
|
|
4658
|
+
readonly 'avsResult'?: string;
|
|
4638
4659
|
readonly 'cvcResultRaw'?: string;
|
|
4660
|
+
readonly 'cvcResult'?: string;
|
|
4661
|
+
readonly 'refusalReasonRaw'?: string;
|
|
4639
4662
|
readonly 'liabilityShift'?: string;
|
|
4640
4663
|
readonly 'threeDAuthenticated'?: string;
|
|
4641
4664
|
readonly 'threeDAuthenticatedResponse'?: string;
|
|
4642
4665
|
readonly 'threeDOffered'?: string;
|
|
4643
4666
|
readonly 'threeDOfferedResponse'?: string;
|
|
4667
|
+
readonly 'threeDSVersion'?: string;
|
|
4668
|
+
readonly 'eci'?: string;
|
|
4669
|
+
readonly 'scaExemptionRequested'?: string;
|
|
4670
|
+
readonly 'paymentMethod'?: string;
|
|
4671
|
+
readonly 'paymentMethodVariant'?: string;
|
|
4672
|
+
readonly 'tokenTxVariant'?: string;
|
|
4673
|
+
readonly 'acquirerCode'?: string;
|
|
4674
|
+
readonly 'acquirerAccountCode'?: string;
|
|
4675
|
+
readonly 'cardPaymentMethod'?: string;
|
|
4676
|
+
readonly 'coBrandedWith'?: string;
|
|
4677
|
+
readonly 'cardIssuingCountry'?: string;
|
|
4678
|
+
readonly 'cardIssuingCurrency'?: string;
|
|
4679
|
+
readonly 'cardIssuingBank'?: string;
|
|
4680
|
+
readonly 'cardBin'?: string;
|
|
4681
|
+
readonly 'issuerBin'?: string;
|
|
4682
|
+
readonly 'cardSummary'?: string;
|
|
4683
|
+
readonly 'untokenisedCardSummary'?: string;
|
|
4684
|
+
readonly 'ownerName'?: string;
|
|
4685
|
+
readonly 'bankName'?: string;
|
|
4686
|
+
readonly 'issuerCountry'?: string;
|
|
4687
|
+
readonly 'iban'?: string;
|
|
4688
|
+
readonly 'bic'?: string;
|
|
4689
|
+
readonly 'iDealConsumerAccountNumber'?: string;
|
|
4690
|
+
readonly 'iDealConsumerBIC'?: string;
|
|
4691
|
+
readonly 'iDealConsumerCity'?: string;
|
|
4692
|
+
readonly 'iDealConsumerIBAN'?: string;
|
|
4693
|
+
readonly 'iDealConsumerName'?: string;
|
|
4694
|
+
readonly 'iDealTransactionId'?: string;
|
|
4695
|
+
readonly 'recurring.recurringDetailReference'?: string;
|
|
4696
|
+
readonly 'recurring.shopperReference'?: string;
|
|
4697
|
+
readonly 'networkTxReference'?: string;
|
|
4698
|
+
readonly 'PaymentAccountReference'?: string;
|
|
4699
|
+
readonly 'networkToken.available'?: string;
|
|
4700
|
+
readonly 'networkToken.bin'?: string;
|
|
4701
|
+
readonly 'networkToken.tokenSummary'?: string;
|
|
4644
4702
|
}
|
|
4645
4703
|
|
|
4646
4704
|
interface Recurring {
|
|
@@ -4649,7 +4707,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4649
4707
|
|
|
4650
4708
|
interface Redirect {
|
|
4651
4709
|
readonly 'data'?: io.flow.adyen.v0.models.RedirectData;
|
|
4652
|
-
readonly 'method'?: io.flow.adyen.v0.enums.
|
|
4710
|
+
readonly 'method'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4653
4711
|
readonly 'url'?: string;
|
|
4654
4712
|
}
|
|
4655
4713
|
|
|
@@ -4672,6 +4730,17 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4672
4730
|
readonly 'holderName': string;
|
|
4673
4731
|
readonly 'number': string;
|
|
4674
4732
|
readonly 'cvc'?: string;
|
|
4733
|
+
readonly 'storedPaymentMethodId'?: string;
|
|
4734
|
+
readonly 'networkPaymentReference'?: string;
|
|
4735
|
+
}
|
|
4736
|
+
|
|
4737
|
+
interface SdkV3OnCompleteData {
|
|
4738
|
+
readonly 'details': any/*object*/;
|
|
4739
|
+
readonly 'payment_data'?: string;
|
|
4740
|
+
}
|
|
4741
|
+
|
|
4742
|
+
interface SdkV3OnCompleteResult {
|
|
4743
|
+
readonly 'data': io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
4675
4744
|
}
|
|
4676
4745
|
|
|
4677
4746
|
interface ThreeDSecureData {
|
|
@@ -4703,7 +4772,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4703
4772
|
|
|
4704
4773
|
declare namespace io.flow.adyen.v0.unions {
|
|
4705
4774
|
type BrowserInfo = (io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2);
|
|
4706
|
-
type PaymentMethodData = (io.flow.adyen.v0.models.Scheme);
|
|
4775
|
+
type PaymentMethodData = (io.flow.adyen.v0.models.Scheme | io.flow.adyen.v0.models.Applepay);
|
|
4707
4776
|
}
|
|
4708
4777
|
|
|
4709
4778
|
declare namespace io.flow.order.management.v0.enums {
|
|
@@ -5982,7 +6051,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5982
6051
|
|
|
5983
6052
|
interface ShopifyOrderAttribute {
|
|
5984
6053
|
readonly 'name': string;
|
|
5985
|
-
readonly 'value':
|
|
6054
|
+
readonly 'value': string;
|
|
5986
6055
|
}
|
|
5987
6056
|
|
|
5988
6057
|
interface ShopifyOrderCancellationForm {
|
|
@@ -6220,7 +6289,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6220
6289
|
interface ShopifyOrderShippingLine {
|
|
6221
6290
|
readonly 'code'?: string;
|
|
6222
6291
|
readonly 'price': string;
|
|
6223
|
-
readonly 'source'
|
|
6292
|
+
readonly 'source': string;
|
|
6224
6293
|
readonly 'title': string;
|
|
6225
6294
|
readonly 'tax_lines': io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
6226
6295
|
readonly 'carrier_identifier'?: string;
|
|
@@ -6883,6 +6952,16 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6883
6952
|
|
|
6884
6953
|
interface PaymentMethodDataAuthorizeApplepay {
|
|
6885
6954
|
readonly 'type': 'authorize_applepay';
|
|
6955
|
+
readonly 'result': io.flow.payment.gateway.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
|
|
6956
|
+
}
|
|
6957
|
+
|
|
6958
|
+
interface PaymentMethodDataAuthorizeApplepayResultFailure {
|
|
6959
|
+
readonly 'type': 'failure';
|
|
6960
|
+
readonly 'placeholder'?: string;
|
|
6961
|
+
}
|
|
6962
|
+
|
|
6963
|
+
interface PaymentMethodDataAuthorizeApplepayResultSuccess {
|
|
6964
|
+
readonly 'type': 'success';
|
|
6886
6965
|
readonly 'token': string;
|
|
6887
6966
|
}
|
|
6888
6967
|
|
|
@@ -7163,6 +7242,7 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
7163
7242
|
type PaymentCaptureOption = (io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual);
|
|
7164
7243
|
type PaymentMethodCard = (io.flow.payment.gateway.v0.models.PaymentMethodCardPciDetails | io.flow.payment.gateway.v0.models.PaymentMethodCardToken);
|
|
7165
7244
|
type PaymentMethodData = (io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard);
|
|
7245
|
+
type PaymentMethodDataAuthorizeApplepayResult = (io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure);
|
|
7166
7246
|
type PaymentMethodDataAuthorizeKlarnaResult = (io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure);
|
|
7167
7247
|
type PaymentMethodDataOptionLogo = (io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg);
|
|
7168
7248
|
type PaymentMethodSummary = (io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact);
|
|
@@ -18620,8 +18700,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18620
18700
|
readonly 'url': string;
|
|
18621
18701
|
}
|
|
18622
18702
|
|
|
18623
|
-
interface
|
|
18624
|
-
readonly '
|
|
18703
|
+
interface Hs6 {
|
|
18704
|
+
readonly 'code': string;
|
|
18625
18705
|
readonly 'description': string;
|
|
18626
18706
|
}
|
|
18627
18707
|
|
|
@@ -19206,6 +19286,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19206
19286
|
}
|
|
19207
19287
|
|
|
19208
19288
|
interface LabelSummary {
|
|
19289
|
+
readonly 'id': string;
|
|
19209
19290
|
readonly 'commercial_invoice'?: string;
|
|
19210
19291
|
readonly 'pdf'?: string;
|
|
19211
19292
|
readonly 'png'?: string;
|
|
@@ -23202,8 +23283,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23202
23283
|
|
|
23203
23284
|
interface TransactionAdjustment {
|
|
23204
23285
|
readonly 'id': string;
|
|
23205
|
-
readonly 'original_transaction': io.flow.internal.v0.models.
|
|
23206
|
-
readonly 'adjustment_transaction'
|
|
23286
|
+
readonly 'original_transaction': io.flow.internal.v0.models.TransactionReference;
|
|
23287
|
+
readonly 'adjustment_transaction'?: io.flow.internal.v0.models.TransactionReference;
|
|
23207
23288
|
readonly 'description': string;
|
|
23208
23289
|
readonly 'details': io.flow.internal.v0.unions.AdjustmentDetails;
|
|
23209
23290
|
}
|
|
@@ -24893,7 +24974,7 @@ export const heapWebsocketRequest: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
24893
24974
|
export const heapWebsocketResponse: PropTypes.Requireable<io.flow.internal.v0.models.HeapWebsocketResponse>;
|
|
24894
24975
|
export const heapWebsocketRetry: PropTypes.Requireable<io.flow.internal.v0.models.HeapWebsocketRetry>;
|
|
24895
24976
|
export const href: PropTypes.Requireable<io.flow.internal.v0.models.Href>;
|
|
24896
|
-
export const
|
|
24977
|
+
export const hs6: PropTypes.Requireable<io.flow.internal.v0.models.Hs6>;
|
|
24897
24978
|
export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
|
|
24898
24979
|
export const hybrisCatalogItemsImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequest>;
|
|
24899
24980
|
export const hybrisCatalogItemsImportRequestData: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData>;
|