@commercengine/storefront-sdk 0.12.2 → 0.12.3

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +14 -4
  2. package/package.json +1 -1
package/dist/index.d.mts CHANGED
@@ -4286,17 +4286,21 @@ interface components {
4286
4286
  expiry_month?: string;
4287
4287
  token_supported_gateways?: string[];
4288
4288
  card_fingerprint?: string;
4289
- cvv_less_details?: {
4289
+ cvv_less_details?: ({
4290
4290
  gateway?: string;
4291
4291
  gateway_reference_ids?: string[];
4292
- }[];
4292
+ } & {
4293
+ [key: string]: unknown;
4294
+ })[];
4293
4295
  cvv_less_supported_gateways?: string[];
4294
4296
  provision_token_id?: string;
4295
4297
  card_isin?: string;
4296
4298
  expiry_year?: string;
4299
+ } & {
4300
+ [key: string]: unknown;
4297
4301
  };
4298
4302
  extended_card_type: string;
4299
- tokens?: {
4303
+ tokens?: ({
4300
4304
  tokenization_status?: string;
4301
4305
  last_four_digits?: string;
4302
4306
  provider_category?: string;
@@ -4309,7 +4313,9 @@ interface components {
4309
4313
  provision_token_id?: string;
4310
4314
  card_isin?: string;
4311
4315
  expiry_year?: string;
4312
- }[];
4316
+ } & {
4317
+ [key: string]: unknown;
4318
+ })[];
4313
4319
  nickname: string;
4314
4320
  provider_category: string;
4315
4321
  vault_provider: string;
@@ -4336,10 +4342,13 @@ interface components {
4336
4342
  name_on_card: string;
4337
4343
  country_code: string;
4338
4344
  atm_pin_auth_support?: boolean;
4345
+ direct_otp_support?: boolean;
4339
4346
  card_number: string;
4340
4347
  card_isin: string;
4341
4348
  card_brand: string;
4342
4349
  card_issuer_country: string;
4350
+ } & {
4351
+ [key: string]: unknown;
4343
4352
  };
4344
4353
  /** JuspayCardPaymentMethod */
4345
4354
  JuspayCardPaymentMethod: {
@@ -4545,6 +4554,7 @@ interface components {
4545
4554
  };
4546
4555
  /** JusPayNewCard */
4547
4556
  JusPayNewCard: components["schemas"]["JusPayExpressCheckoutCommonField"] & {
4557
+ /** @description Whether to save the card to the locker. If true, the card will be saved to the locker and can be used for future payments as per RBI regulations. */
4548
4558
  save_to_locker: boolean;
4549
4559
  /** @constant */
4550
4560
  payment_method_type: "CARD";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercengine/storefront-sdk",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "description": "TypeScript SDK for the Storefront API",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",