@flowio/api-internal-prop-types 9.24.62 → 9.24.63
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 +92 -12
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +92 -12
- package/src/api-internal.js +119 -25
package/lib/api-internal.d.ts
CHANGED
|
@@ -3973,9 +3973,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
3973
3973
|
type Contract = 'RECURRING';
|
|
3974
3974
|
type DeviceChannel = 'app' | 'browser';
|
|
3975
3975
|
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';
|
|
3976
|
-
type
|
|
3976
|
+
type HttpRedirectMethod = 'GET' | 'POST';
|
|
3977
3977
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
3978
|
-
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';
|
|
3978
|
+
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';
|
|
3979
3979
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
3980
3980
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
3981
3981
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -3997,6 +3997,11 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3997
3997
|
readonly 'currency': string;
|
|
3998
3998
|
}
|
|
3999
3999
|
|
|
4000
|
+
interface Applepay {
|
|
4001
|
+
readonly 'type': 'applepay';
|
|
4002
|
+
readonly 'applePayToken': string;
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4000
4005
|
interface Authentication {
|
|
4001
4006
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
4002
4007
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -4024,6 +4029,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4024
4029
|
readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4025
4030
|
readonly 'threeDS2RequestData'?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
4026
4031
|
readonly 'recurringProcessingModel'?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
4032
|
+
readonly 'mcc'?: string;
|
|
4033
|
+
readonly 'metadata'?: any/*object*/;
|
|
4027
4034
|
}
|
|
4028
4035
|
|
|
4029
4036
|
interface AuthorizeRequest3D {
|
|
@@ -4180,6 +4187,14 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4180
4187
|
readonly 'paymentData'?: string;
|
|
4181
4188
|
}
|
|
4182
4189
|
|
|
4190
|
+
interface PaymentDetailsV663Ds2Challenge {
|
|
4191
|
+
readonly 'threeds2.challengeResult': string;
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
interface PaymentDetailsV663Ds2Fingerprint {
|
|
4195
|
+
readonly 'threeds2.fingerprint': string;
|
|
4196
|
+
}
|
|
4197
|
+
|
|
4183
4198
|
interface PaymentRequest {
|
|
4184
4199
|
readonly 'reference': string;
|
|
4185
4200
|
readonly 'merchantAccount': string;
|
|
@@ -4201,7 +4216,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4201
4216
|
readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4202
4217
|
readonly 'origin'?: string;
|
|
4203
4218
|
readonly 'channel'?: io.flow.adyen.v0.enums.Channel;
|
|
4204
|
-
readonly '
|
|
4219
|
+
readonly 'returnUrl'?: string;
|
|
4220
|
+
readonly 'mcc'?: string;
|
|
4221
|
+
readonly 'metadata'?: any/*object*/;
|
|
4222
|
+
readonly 'redirectToIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4223
|
+
readonly 'redirectFromIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4224
|
+
readonly 'storePaymentMethod'?: boolean;
|
|
4205
4225
|
}
|
|
4206
4226
|
|
|
4207
4227
|
interface PaymentResponse {
|
|
@@ -4218,12 +4238,54 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4218
4238
|
interface PaymentResponseAdditionalData {
|
|
4219
4239
|
readonly 'authCode'?: string;
|
|
4220
4240
|
readonly 'avsResultRaw'?: string;
|
|
4241
|
+
readonly 'avsResult'?: string;
|
|
4221
4242
|
readonly 'cvcResultRaw'?: string;
|
|
4243
|
+
readonly 'cvcResult'?: string;
|
|
4244
|
+
readonly 'refusalReasonRaw'?: string;
|
|
4222
4245
|
readonly 'liabilityShift'?: string;
|
|
4223
4246
|
readonly 'threeDAuthenticated'?: string;
|
|
4224
4247
|
readonly 'threeDAuthenticatedResponse'?: string;
|
|
4225
4248
|
readonly 'threeDOffered'?: string;
|
|
4226
4249
|
readonly 'threeDOfferedResponse'?: string;
|
|
4250
|
+
readonly 'threeDSVersion'?: string;
|
|
4251
|
+
readonly 'eci'?: string;
|
|
4252
|
+
readonly 'cavv'?: string;
|
|
4253
|
+
readonly 'scaExemptionRequested'?: string;
|
|
4254
|
+
readonly 'paymentMethod'?: string;
|
|
4255
|
+
readonly 'paymentMethodVariant'?: string;
|
|
4256
|
+
readonly 'tokenTxVariant'?: string;
|
|
4257
|
+
readonly 'acquirerCode'?: string;
|
|
4258
|
+
readonly 'acquirerAccountCode'?: string;
|
|
4259
|
+
readonly 'cardPaymentMethod'?: string;
|
|
4260
|
+
readonly 'coBrandedWith'?: string;
|
|
4261
|
+
readonly 'cardIssuingCountry'?: string;
|
|
4262
|
+
readonly 'cardIssuingCurrency'?: string;
|
|
4263
|
+
readonly 'cardIssuingBank'?: string;
|
|
4264
|
+
readonly 'cardBin'?: string;
|
|
4265
|
+
readonly 'issuerBin'?: string;
|
|
4266
|
+
readonly 'cardSummary'?: string;
|
|
4267
|
+
readonly 'untokenisedCardSummary'?: string;
|
|
4268
|
+
readonly 'expiryDate'?: string;
|
|
4269
|
+
readonly 'cardHolderName'?: string;
|
|
4270
|
+
readonly 'fundingSource'?: string;
|
|
4271
|
+
readonly 'ownerName'?: string;
|
|
4272
|
+
readonly 'bankName'?: string;
|
|
4273
|
+
readonly 'issuerCountry'?: string;
|
|
4274
|
+
readonly 'iban'?: string;
|
|
4275
|
+
readonly 'bic'?: string;
|
|
4276
|
+
readonly 'iDealConsumerAccountNumber'?: string;
|
|
4277
|
+
readonly 'iDealConsumerBIC'?: string;
|
|
4278
|
+
readonly 'iDealConsumerCity'?: string;
|
|
4279
|
+
readonly 'iDealConsumerIBAN'?: string;
|
|
4280
|
+
readonly 'iDealConsumerName'?: string;
|
|
4281
|
+
readonly 'iDealTransactionId'?: string;
|
|
4282
|
+
readonly 'recurring.recurringDetailReference'?: string;
|
|
4283
|
+
readonly 'recurring.shopperReference'?: string;
|
|
4284
|
+
readonly 'networkTxReference'?: string;
|
|
4285
|
+
readonly 'PaymentAccountReference'?: string;
|
|
4286
|
+
readonly 'networkToken.available'?: string;
|
|
4287
|
+
readonly 'networkToken.bin'?: string;
|
|
4288
|
+
readonly 'networkToken.tokenSummary'?: string;
|
|
4227
4289
|
}
|
|
4228
4290
|
|
|
4229
4291
|
interface Recurring {
|
|
@@ -4232,7 +4294,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4232
4294
|
|
|
4233
4295
|
interface Redirect {
|
|
4234
4296
|
readonly 'data'?: io.flow.adyen.v0.models.RedirectData;
|
|
4235
|
-
readonly 'method'?: io.flow.adyen.v0.enums.
|
|
4297
|
+
readonly 'method'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4236
4298
|
readonly 'url'?: string;
|
|
4237
4299
|
}
|
|
4238
4300
|
|
|
@@ -4255,6 +4317,17 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4255
4317
|
readonly 'holderName': string;
|
|
4256
4318
|
readonly 'number': string;
|
|
4257
4319
|
readonly 'cvc'?: string;
|
|
4320
|
+
readonly 'storedPaymentMethodId'?: string;
|
|
4321
|
+
readonly 'networkPaymentReference'?: string;
|
|
4322
|
+
}
|
|
4323
|
+
|
|
4324
|
+
interface SdkV3OnCompleteData {
|
|
4325
|
+
readonly 'details': any/*object*/;
|
|
4326
|
+
readonly 'payment_data'?: string;
|
|
4327
|
+
}
|
|
4328
|
+
|
|
4329
|
+
interface SdkV3OnCompleteResult {
|
|
4330
|
+
readonly 'data': io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
4258
4331
|
}
|
|
4259
4332
|
|
|
4260
4333
|
interface ThreeDSecureData {
|
|
@@ -4286,7 +4359,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4286
4359
|
|
|
4287
4360
|
declare namespace io.flow.adyen.v0.unions {
|
|
4288
4361
|
type BrowserInfo = (io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2);
|
|
4289
|
-
type PaymentMethodData = (io.flow.adyen.v0.models.Scheme);
|
|
4362
|
+
type PaymentMethodData = (io.flow.adyen.v0.models.Scheme | io.flow.adyen.v0.models.Applepay);
|
|
4290
4363
|
}
|
|
4291
4364
|
|
|
4292
4365
|
declare namespace io.flow.order.management.v0.enums {
|
|
@@ -11483,10 +11556,10 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
11483
11556
|
}
|
|
11484
11557
|
|
|
11485
11558
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
11486
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
11559
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
11487
11560
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
11488
11561
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
11489
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
11562
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
11490
11563
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
11491
11564
|
}
|
|
11492
11565
|
|
|
@@ -11494,7 +11567,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11494
11567
|
interface ApplePayLineItem {
|
|
11495
11568
|
readonly 'label': string;
|
|
11496
11569
|
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
11497
|
-
readonly 'amount':
|
|
11570
|
+
readonly 'amount': string;
|
|
11498
11571
|
}
|
|
11499
11572
|
|
|
11500
11573
|
interface ApplePayPaymentContact {
|
|
@@ -11545,7 +11618,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11545
11618
|
interface ApplePayShippingMethod {
|
|
11546
11619
|
readonly 'label': string;
|
|
11547
11620
|
readonly 'detail': string;
|
|
11548
|
-
readonly 'amount':
|
|
11621
|
+
readonly 'amount': string;
|
|
11549
11622
|
readonly 'identifier': string;
|
|
11550
11623
|
}
|
|
11551
11624
|
}
|
|
@@ -11629,6 +11702,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
11629
11702
|
}
|
|
11630
11703
|
|
|
11631
11704
|
interface OnboardingStateTransition {
|
|
11705
|
+
readonly 'id': string;
|
|
11632
11706
|
readonly 'state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
11633
11707
|
readonly 'started_at': string;
|
|
11634
11708
|
}
|
|
@@ -12173,10 +12247,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12173
12247
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
12174
12248
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
12175
12249
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
12176
|
-
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'miscellaneous';
|
|
12250
|
+
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
12177
12251
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
12178
12252
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
12179
|
-
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
12253
|
+
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
12180
12254
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
12181
12255
|
type OrderAttributeIntent = 'discount_code';
|
|
12182
12256
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
@@ -20633,6 +20707,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20633
20707
|
readonly 'organization_id': string;
|
|
20634
20708
|
readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
20635
20709
|
readonly 'setup_completed_at'?: string;
|
|
20710
|
+
readonly 'activated_at'?: string;
|
|
20636
20711
|
readonly 'gmv': number;
|
|
20637
20712
|
readonly 'health_score': number;
|
|
20638
20713
|
readonly 'blocked_since'?: string;
|
|
@@ -21092,6 +21167,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21092
21167
|
readonly 'to': string;
|
|
21093
21168
|
}
|
|
21094
21169
|
|
|
21170
|
+
interface OrganizationOnboardingStateAdjustmentResult {
|
|
21171
|
+
readonly 'organization_onboarding_state'?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
21172
|
+
}
|
|
21173
|
+
|
|
21095
21174
|
interface OrganizationPaymentSetting {
|
|
21096
21175
|
readonly 'id': string;
|
|
21097
21176
|
readonly 'organization_id': string;
|
|
@@ -22542,7 +22621,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22542
22621
|
interface RestrictionRuleDecisionForm {
|
|
22543
22622
|
readonly 'rule_id': string;
|
|
22544
22623
|
readonly 'decision': io.flow.internal.v0.enums.RestrictionDecision;
|
|
22545
|
-
readonly 'product_id'
|
|
22624
|
+
readonly 'product_id': string;
|
|
22546
22625
|
}
|
|
22547
22626
|
|
|
22548
22627
|
interface RestrictionRuleForm {
|
|
@@ -26050,6 +26129,7 @@ export const organizationDebugTransaction: PropTypes.Requireable<io.flow.interna
|
|
|
26050
26129
|
export const organizationInvitationAcceptForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationInvitationAcceptForm>;
|
|
26051
26130
|
export const organizationMembershipCopy: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopy>;
|
|
26052
26131
|
export const organizationMembershipCopyForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopyForm>;
|
|
26132
|
+
export const organizationOnboardingStateAdjustmentResult: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult>;
|
|
26053
26133
|
export const organizationPaymentSetting: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSetting>;
|
|
26054
26134
|
export const organizationPaymentSettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingDeleted>;
|
|
26055
26135
|
export const organizationPaymentSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingForm>;
|