@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/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: string | null;
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 };
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "registry": "https://registry.npmjs.org",
5
5
  "access": "public"
6
6
  },
7
- "version": "0.0.19",
7
+ "version": "0.0.21",
8
8
  "main": "./fesm2022/miden-npm-angular.mjs",
9
9
  "module": "fesm2022/miden-npm-angular.mjs",
10
10
  "types": "./index.d.ts",