@miden-npm/angular 0.0.19 → 0.0.21
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/buzapay-checkout/index.d.ts +6 -3
- package/fesm2022/miden-npm-angular-buzapay-checkout.mjs +24 -12
- package/fesm2022/miden-npm-angular-buzapay-checkout.mjs.map +1 -1
- package/fesm2022/miden-npm-angular.mjs +2 -0
- package/fesm2022/miden-npm-angular.mjs.map +1 -1
- package/index.d.ts +11 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -230,6 +230,13 @@ interface IAuthorizeCardPaymentPayload {
|
|
|
230
230
|
paymentReference: string;
|
|
231
231
|
isCheckout: boolean;
|
|
232
232
|
}
|
|
233
|
+
interface ThreeDsHtml {
|
|
234
|
+
paReq?: string;
|
|
235
|
+
termUrl?: string;
|
|
236
|
+
action?: string;
|
|
237
|
+
acsUrl?: string;
|
|
238
|
+
md?: string;
|
|
239
|
+
}
|
|
233
240
|
interface ICheckoutApiResponse {
|
|
234
241
|
transactionReference: string | null;
|
|
235
242
|
amount: string | null;
|
|
@@ -245,7 +252,9 @@ interface ICheckoutApiResponse {
|
|
|
245
252
|
isSuccessful: boolean;
|
|
246
253
|
responseMessage: string;
|
|
247
254
|
responseCode: string;
|
|
248
|
-
data:
|
|
255
|
+
data: any;
|
|
256
|
+
threeDsInteractionRequired: boolean;
|
|
257
|
+
threeDsHtml: ThreeDsHtml;
|
|
249
258
|
}
|
|
250
259
|
interface IGeneratePaymentAccountPayload {
|
|
251
260
|
paymentReference: string;
|
|
@@ -548,4 +557,4 @@ declare function cardType(cardNumber: string): string;
|
|
|
548
557
|
declare function detect(cardNumber: string): CardSchemes;
|
|
549
558
|
|
|
550
559
|
export { BZP_CONFIG, BZP_CORRELATION_ID, BackComponent, ButtonComponent, CardComponent, CardSchemes, CheckoutService, CopyComponent, CurrencyAmountComponent, EncryptService, HintComponent, IconArrowSwapComponent, IconBuzapayIconComponent, IconCheckCircleComponent, IconChevronDownComponent, IconChevronLeftComponent, IconChevronUpComponent, IconCopySuccessComponent, IconLoaderComponent, IconUsdcComponent, IconUsdtComponent, ImageComponent, InputComponent, InputErrorComponent, LabelInfoComponent, MidenPGAngular, RadioGroupComponent, ResourceService, SelectComponent, SuccessComponent, apiBaseUrl, cardType, checkObjectTruthy, currencySign, detect, formatAmount, getBaseUrl, getQueryParams, getValidationErrorMessage, provideMidenPG, restrictToNumericKeys, truncateString, urlValidator };
|
|
551
|
-
export type { BzpConfig, BzpEnvironment, IApiResponse, IAuthorizeCardPaymentPayload, IBillingDetails, ICardDetails, ICheckoutApiResponse, ICountry, IGeneratePaymentAccountPayload, IGenerateStableCoinAddress, IGenerateStableCoinAddressResponse, IPagination, IPaymentAccountResponse, IPaymentObject, IPaymentReferenceDetail, ISelectOption, IState, ISuccessObject };
|
|
560
|
+
export type { BzpConfig, BzpEnvironment, IApiResponse, IAuthorizeCardPaymentPayload, IBillingDetails, ICardDetails, ICheckoutApiResponse, ICountry, IGeneratePaymentAccountPayload, IGenerateStableCoinAddress, IGenerateStableCoinAddressResponse, IPagination, IPaymentAccountResponse, IPaymentObject, IPaymentReferenceDetail, ISelectOption, IState, ISuccessObject, ThreeDsHtml };
|