cashfree-pg 4.2.2 → 4.2.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.
package/api.ts CHANGED
@@ -568,61 +568,6 @@ export interface BanktransferPaymentMethod {
568
568
  */
569
569
  'banktransfer': Banktransfer;
570
570
  }
571
- /**
572
- * payment method card.
573
- * @export
574
- * @interface CARD
575
- */
576
- export interface CARD {
577
- /**
578
- * Channel. can be link
579
- * @type {string}
580
- * @memberof CARD
581
- */
582
- 'channel'?: string;
583
- /**
584
- * Card number
585
- * @type {string}
586
- * @memberof CARD
587
- */
588
- 'card_number'?: string;
589
- /**
590
- * Card holder name
591
- * @type {string}
592
- * @memberof CARD
593
- */
594
- 'card_holder_name'?: string;
595
- /**
596
- * Card expiry month
597
- * @type {string}
598
- * @memberof CARD
599
- */
600
- 'card_expiry_mm'?: string;
601
- /**
602
- * Card expiry year
603
- * @type {string}
604
- * @memberof CARD
605
- */
606
- 'card_expiry_yy'?: string;
607
- /**
608
- * Card CVV
609
- * @type {string}
610
- * @memberof CARD
611
- */
612
- 'card_cvv'?: string;
613
- /**
614
- * Card network
615
- * @type {string}
616
- * @memberof CARD
617
- */
618
- 'card_network'?: string;
619
- /**
620
- * Card type
621
- * @type {string}
622
- * @memberof CARD
623
- */
624
- 'card_type'?: string;
625
- }
626
571
  /**
627
572
  * Card Payment method
628
573
  * @export
@@ -1423,13 +1368,172 @@ export interface CreateSubscriptionPaymentRequest {
1423
1368
  */
1424
1369
  'payment_method'?: CreateSubscriptionPaymentRequestPaymentMethod;
1425
1370
  }
1371
+ /**
1372
+ * payment method card.
1373
+ * @export
1374
+ * @interface CreateSubscriptionPaymentRequestCard
1375
+ */
1376
+ export interface CreateSubscriptionPaymentRequestCard {
1377
+ /**
1378
+ * Channel. can be link
1379
+ * @type {string}
1380
+ * @memberof CreateSubscriptionPaymentRequestCard
1381
+ */
1382
+ 'channel'?: string;
1383
+ /**
1384
+ * Card number
1385
+ * @type {string}
1386
+ * @memberof CreateSubscriptionPaymentRequestCard
1387
+ */
1388
+ 'card_number'?: string;
1389
+ /**
1390
+ * Card holder name
1391
+ * @type {string}
1392
+ * @memberof CreateSubscriptionPaymentRequestCard
1393
+ */
1394
+ 'card_holder_name'?: string;
1395
+ /**
1396
+ * Card expiry month
1397
+ * @type {string}
1398
+ * @memberof CreateSubscriptionPaymentRequestCard
1399
+ */
1400
+ 'card_expiry_mm'?: string;
1401
+ /**
1402
+ * Card expiry year
1403
+ * @type {string}
1404
+ * @memberof CreateSubscriptionPaymentRequestCard
1405
+ */
1406
+ 'card_expiry_yy'?: string;
1407
+ /**
1408
+ * Card CVV
1409
+ * @type {string}
1410
+ * @memberof CreateSubscriptionPaymentRequestCard
1411
+ */
1412
+ 'card_cvv'?: string;
1413
+ /**
1414
+ * Card network
1415
+ * @type {string}
1416
+ * @memberof CreateSubscriptionPaymentRequestCard
1417
+ */
1418
+ 'card_network'?: string;
1419
+ /**
1420
+ * Card type
1421
+ * @type {string}
1422
+ * @memberof CreateSubscriptionPaymentRequestCard
1423
+ */
1424
+ 'card_type'?: string;
1425
+ }
1426
+ /**
1427
+ * payment method enach.
1428
+ * @export
1429
+ * @interface CreateSubscriptionPaymentRequestEnack
1430
+ */
1431
+ export interface CreateSubscriptionPaymentRequestEnack {
1432
+ /**
1433
+ * Channel. can be link
1434
+ * @type {string}
1435
+ * @memberof CreateSubscriptionPaymentRequestEnack
1436
+ */
1437
+ 'channel'?: string;
1438
+ /**
1439
+ * Authentication mode. can be debit_card, aadhaar, or net_banking
1440
+ * @type {string}
1441
+ * @memberof CreateSubscriptionPaymentRequestEnack
1442
+ */
1443
+ 'auth_mode'?: string;
1444
+ /**
1445
+ * Account holder name
1446
+ * @type {string}
1447
+ * @memberof CreateSubscriptionPaymentRequestEnack
1448
+ */
1449
+ 'account_holder_name'?: string;
1450
+ /**
1451
+ * Account number
1452
+ * @type {string}
1453
+ * @memberof CreateSubscriptionPaymentRequestEnack
1454
+ */
1455
+ 'account_number'?: string;
1456
+ /**
1457
+ * Account bank code (required without AccountIFSC)
1458
+ * @type {string}
1459
+ * @memberof CreateSubscriptionPaymentRequestEnack
1460
+ */
1461
+ 'account_bank_code'?: string;
1462
+ /**
1463
+ * Account type
1464
+ * @type {string}
1465
+ * @memberof CreateSubscriptionPaymentRequestEnack
1466
+ */
1467
+ 'account_type'?: string;
1468
+ /**
1469
+ * Account IFSC
1470
+ * @type {string}
1471
+ * @memberof CreateSubscriptionPaymentRequestEnack
1472
+ */
1473
+ 'account_ifsc'?: string;
1474
+ }
1426
1475
  /**
1427
1476
  * @type CreateSubscriptionPaymentRequestPaymentMethod
1428
1477
  * Payment method. Can be one of [\"upi\", \"enach\", \"pnach\", \"card\"]
1429
1478
  * @export
1430
1479
  */
1431
- export type CreateSubscriptionPaymentRequestPaymentMethod = CARD | ENACH | PNACH | UPI;
1480
+ export type CreateSubscriptionPaymentRequestPaymentMethod = CreateSubscriptionPaymentRequestCard | CreateSubscriptionPaymentRequestEnack | CreateSubscriptionPaymentRequestPnach | CreateSubscriptonPaymentRequestUpi;
1432
1481
 
1482
+ /**
1483
+ * payment method pnach.
1484
+ * @export
1485
+ * @interface CreateSubscriptionPaymentRequestPnach
1486
+ */
1487
+ export interface CreateSubscriptionPaymentRequestPnach {
1488
+ /**
1489
+ * Channel. can be post
1490
+ * @type {string}
1491
+ * @memberof CreateSubscriptionPaymentRequestPnach
1492
+ */
1493
+ 'channel'?: string;
1494
+ /**
1495
+ * Account holder name
1496
+ * @type {string}
1497
+ * @memberof CreateSubscriptionPaymentRequestPnach
1498
+ */
1499
+ 'account_holder_name'?: string;
1500
+ /**
1501
+ * Account number
1502
+ * @type {string}
1503
+ * @memberof CreateSubscriptionPaymentRequestPnach
1504
+ */
1505
+ 'account_number'?: string;
1506
+ /**
1507
+ * Account bank code
1508
+ * @type {string}
1509
+ * @memberof CreateSubscriptionPaymentRequestPnach
1510
+ */
1511
+ 'account_bank_code'?: string;
1512
+ /**
1513
+ * Account type
1514
+ * @type {string}
1515
+ * @memberof CreateSubscriptionPaymentRequestPnach
1516
+ */
1517
+ 'account_type'?: string;
1518
+ /**
1519
+ * Account IFSC
1520
+ * @type {string}
1521
+ * @memberof CreateSubscriptionPaymentRequestPnach
1522
+ */
1523
+ 'account_ifsc'?: string;
1524
+ /**
1525
+ * Mandate creation date
1526
+ * @type {string}
1527
+ * @memberof CreateSubscriptionPaymentRequestPnach
1528
+ */
1529
+ 'mandate_creation_date'?: string;
1530
+ /**
1531
+ * Mandate start date
1532
+ * @type {string}
1533
+ * @memberof CreateSubscriptionPaymentRequestPnach
1534
+ */
1535
+ 'mandate_start_date'?: string;
1536
+ }
1433
1537
  /**
1434
1538
  * The response returned is Create Subscription Auth or Charge APIs.
1435
1539
  * @export
@@ -1718,6 +1822,25 @@ export interface CreateSubscriptionRequestSubscriptionMeta {
1718
1822
  */
1719
1823
  'notification_channel'?: Array<string>;
1720
1824
  }
1825
+ /**
1826
+ * payment method upi.
1827
+ * @export
1828
+ * @interface CreateSubscriptonPaymentRequestUpi
1829
+ */
1830
+ export interface CreateSubscriptonPaymentRequestUpi {
1831
+ /**
1832
+ *
1833
+ * @type {string}
1834
+ * @memberof CreateSubscriptonPaymentRequestUpi
1835
+ */
1836
+ 'upi_id'?: string;
1837
+ /**
1838
+ * Channel. can be link, qrcode, or collect
1839
+ * @type {string}
1840
+ * @memberof CreateSubscriptonPaymentRequestUpi
1841
+ */
1842
+ 'channel'?: string;
1843
+ }
1721
1844
  /**
1722
1845
  * Request body to create a terminal
1723
1846
  * @export
@@ -2274,55 +2397,6 @@ export interface EMIPlansArray {
2274
2397
  */
2275
2398
  'total_amount'?: number;
2276
2399
  }
2277
- /**
2278
- * payment method enach.
2279
- * @export
2280
- * @interface ENACH
2281
- */
2282
- export interface ENACH {
2283
- /**
2284
- * Channel. can be link
2285
- * @type {string}
2286
- * @memberof ENACH
2287
- */
2288
- 'channel'?: string;
2289
- /**
2290
- * Authentication mode. can be debit_card, aadhaar, or net_banking
2291
- * @type {string}
2292
- * @memberof ENACH
2293
- */
2294
- 'auth_mode'?: string;
2295
- /**
2296
- * Account holder name
2297
- * @type {string}
2298
- * @memberof ENACH
2299
- */
2300
- 'account_holder_name'?: string;
2301
- /**
2302
- * Account number
2303
- * @type {string}
2304
- * @memberof ENACH
2305
- */
2306
- 'account_number'?: string;
2307
- /**
2308
- * Account bank code (required without AccountIFSC)
2309
- * @type {string}
2310
- * @memberof ENACH
2311
- */
2312
- 'account_bank_code'?: string;
2313
- /**
2314
- * Account type
2315
- * @type {string}
2316
- * @memberof ENACH
2317
- */
2318
- 'account_type'?: string;
2319
- /**
2320
- * Account IFSC
2321
- * @type {string}
2322
- * @memberof ENACH
2323
- */
2324
- 'account_ifsc'?: string;
2325
- }
2326
2400
  /**
2327
2401
  * ES Order Recon Request
2328
2402
  * @export
@@ -4364,61 +4438,6 @@ export interface OrderPayData {
4364
4438
  */
4365
4439
  'method'?: string;
4366
4440
  }
4367
- /**
4368
- * payment method pnach.
4369
- * @export
4370
- * @interface PNACH
4371
- */
4372
- export interface PNACH {
4373
- /**
4374
- * Channel. can be post
4375
- * @type {string}
4376
- * @memberof PNACH
4377
- */
4378
- 'channel'?: string;
4379
- /**
4380
- * Account holder name
4381
- * @type {string}
4382
- * @memberof PNACH
4383
- */
4384
- 'account_holder_name'?: string;
4385
- /**
4386
- * Account number
4387
- * @type {string}
4388
- * @memberof PNACH
4389
- */
4390
- 'account_number'?: string;
4391
- /**
4392
- * Account bank code
4393
- * @type {string}
4394
- * @memberof PNACH
4395
- */
4396
- 'account_bank_code'?: string;
4397
- /**
4398
- * Account type
4399
- * @type {string}
4400
- * @memberof PNACH
4401
- */
4402
- 'account_type'?: string;
4403
- /**
4404
- * Account IFSC
4405
- * @type {string}
4406
- * @memberof PNACH
4407
- */
4408
- 'account_ifsc'?: string;
4409
- /**
4410
- * Mandate creation date
4411
- * @type {string}
4412
- * @memberof PNACH
4413
- */
4414
- 'mandate_creation_date'?: string;
4415
- /**
4416
- * Mandate start date
4417
- * @type {string}
4418
- * @memberof PNACH
4419
- */
4420
- 'mandate_start_date'?: string;
4421
- }
4422
4441
  /**
4423
4442
  * Order Pay response once you create a transaction for that order
4424
4443
  * @export
@@ -7660,25 +7679,6 @@ export interface TransferDetailsTagsInner {
7660
7679
  */
7661
7680
  'size'?: number;
7662
7681
  }
7663
- /**
7664
- * payment method upi.
7665
- * @export
7666
- * @interface UPI
7667
- */
7668
- export interface UPI {
7669
- /**
7670
- *
7671
- * @type {string}
7672
- * @memberof UPI
7673
- */
7674
- 'upi_id'?: string;
7675
- /**
7676
- * Channel. can be link, qrcode, or collect
7677
- * @type {string}
7678
- * @memberof UPI
7679
- */
7680
- 'channel'?: string;
7681
- }
7682
7682
  /**
7683
7683
  * object when you are using preauth in UPI in order pay
7684
7684
  * @export
@@ -8556,7 +8556,7 @@ const CustomersApiAxiosParamCreator = function (configuration?: Configuration) {
8556
8556
 
8557
8557
  localVarHeaderParameter['Content-Type'] = 'application/json';
8558
8558
 
8559
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
8559
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
8560
8560
  if (x_api_version != null && x_api_version != undefined) {
8561
8561
  localVarHeaderParameter['x-api-version'] = x_api_version;
8562
8562
  }
@@ -8678,7 +8678,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
8678
8678
 
8679
8679
  localVarHeaderParameter['Content-Type'] = 'application/json';
8680
8680
 
8681
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
8681
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
8682
8682
  if (x_api_version != null && x_api_version != undefined) {
8683
8683
  localVarHeaderParameter['x-api-version'] = x_api_version;
8684
8684
  }
@@ -8750,7 +8750,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
8750
8750
 
8751
8751
  localVarHeaderParameter['Content-Type'] = 'application/json';
8752
8752
 
8753
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
8753
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
8754
8754
  if (x_api_version != null && x_api_version != undefined) {
8755
8755
  localVarHeaderParameter['x-api-version'] = x_api_version;
8756
8756
  }
@@ -8827,7 +8827,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
8827
8827
 
8828
8828
 
8829
8829
 
8830
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
8830
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
8831
8831
  if (x_api_version != null && x_api_version != undefined) {
8832
8832
  localVarHeaderParameter['x-api-version'] = x_api_version;
8833
8833
  }
@@ -8899,7 +8899,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
8899
8899
 
8900
8900
 
8901
8901
 
8902
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
8902
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
8903
8903
  if (x_api_version != null && x_api_version != undefined) {
8904
8904
  localVarHeaderParameter['x-api-version'] = x_api_version;
8905
8905
  }
@@ -8971,7 +8971,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
8971
8971
 
8972
8972
 
8973
8973
 
8974
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
8974
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
8975
8975
  if (x_api_version != null && x_api_version != undefined) {
8976
8976
  localVarHeaderParameter['x-api-version'] = x_api_version;
8977
8977
  }
@@ -9050,7 +9050,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
9050
9050
 
9051
9051
 
9052
9052
 
9053
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9053
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9054
9054
  if (x_api_version != null && x_api_version != undefined) {
9055
9055
  localVarHeaderParameter['x-api-version'] = x_api_version;
9056
9056
  }
@@ -9122,7 +9122,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
9122
9122
 
9123
9123
 
9124
9124
 
9125
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9125
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9126
9126
  if (x_api_version != null && x_api_version != undefined) {
9127
9127
  localVarHeaderParameter['x-api-version'] = x_api_version;
9128
9128
  }
@@ -9193,7 +9193,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
9193
9193
 
9194
9194
  localVarHeaderParameter['Content-Type'] = 'application/json';
9195
9195
 
9196
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9196
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9197
9197
  if (x_api_version != null && x_api_version != undefined) {
9198
9198
  localVarHeaderParameter['x-api-version'] = x_api_version;
9199
9199
  }
@@ -9269,7 +9269,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
9269
9269
 
9270
9270
  localVarHeaderParameter['Content-Type'] = 'application/json';
9271
9271
 
9272
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9272
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9273
9273
  if (x_api_version != null && x_api_version != undefined) {
9274
9274
  localVarHeaderParameter['x-api-version'] = x_api_version;
9275
9275
  }
@@ -9360,7 +9360,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
9360
9360
 
9361
9361
  localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
9362
9362
 
9363
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9363
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9364
9364
  if (x_api_version != null && x_api_version != undefined) {
9365
9365
  localVarHeaderParameter['x-api-version'] = x_api_version;
9366
9366
  }
@@ -9436,7 +9436,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
9436
9436
 
9437
9437
  localVarHeaderParameter['Content-Type'] = 'application/json';
9438
9438
 
9439
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9439
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9440
9440
  if (x_api_version != null && x_api_version != undefined) {
9441
9441
  localVarHeaderParameter['x-api-version'] = x_api_version;
9442
9442
  }
@@ -9508,7 +9508,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
9508
9508
 
9509
9509
  localVarHeaderParameter['Content-Type'] = 'application/json';
9510
9510
 
9511
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9511
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9512
9512
  if (x_api_version != null && x_api_version != undefined) {
9513
9513
  localVarHeaderParameter['x-api-version'] = x_api_version;
9514
9514
  }
@@ -9834,7 +9834,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
9834
9834
 
9835
9835
  localVarHeaderParameter['Content-Type'] = 'application/json';
9836
9836
 
9837
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9837
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9838
9838
  if (x_api_version != null && x_api_version != undefined) {
9839
9839
  localVarHeaderParameter['x-api-version'] = x_api_version;
9840
9840
  }
@@ -9908,7 +9908,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
9908
9908
 
9909
9909
  localVarHeaderParameter['Content-Type'] = 'application/json';
9910
9910
 
9911
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9911
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9912
9912
  if (x_api_version != null && x_api_version != undefined) {
9913
9913
  localVarHeaderParameter['x-api-version'] = x_api_version;
9914
9914
  }
@@ -9982,7 +9982,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
9982
9982
 
9983
9983
  localVarHeaderParameter['Content-Type'] = 'application/json';
9984
9984
 
9985
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
9985
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
9986
9986
  if (x_api_version != null && x_api_version != undefined) {
9987
9987
  localVarHeaderParameter['x-api-version'] = x_api_version;
9988
9988
  }
@@ -10056,7 +10056,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
10056
10056
 
10057
10057
  localVarHeaderParameter['Content-Type'] = 'application/json';
10058
10058
 
10059
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
10059
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
10060
10060
  if (x_api_version != null && x_api_version != undefined) {
10061
10061
  localVarHeaderParameter['x-api-version'] = x_api_version;
10062
10062
  }
@@ -10230,7 +10230,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
10230
10230
 
10231
10231
  localVarHeaderParameter['Content-Type'] = 'application/json';
10232
10232
 
10233
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
10233
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
10234
10234
  if (x_api_version != null && x_api_version != undefined) {
10235
10235
  localVarHeaderParameter['x-api-version'] = x_api_version;
10236
10236
  }
@@ -10303,7 +10303,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
10303
10303
 
10304
10304
 
10305
10305
 
10306
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
10306
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
10307
10307
  if (x_api_version != null && x_api_version != undefined) {
10308
10308
  localVarHeaderParameter['x-api-version'] = x_api_version;
10309
10309
  }
@@ -10440,7 +10440,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
10440
10440
 
10441
10441
  localVarHeaderParameter['Content-Type'] = 'application/json';
10442
10442
 
10443
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
10443
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
10444
10444
  if (x_api_version != null && x_api_version != undefined) {
10445
10445
  localVarHeaderParameter['x-api-version'] = x_api_version;
10446
10446
  }
@@ -10513,7 +10513,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
10513
10513
 
10514
10514
 
10515
10515
 
10516
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
10516
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
10517
10517
  if (x_api_version != null && x_api_version != undefined) {
10518
10518
  localVarHeaderParameter['x-api-version'] = x_api_version;
10519
10519
  }
@@ -10590,7 +10590,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
10590
10590
 
10591
10591
  localVarHeaderParameter['Content-Type'] = 'application/json';
10592
10592
 
10593
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
10593
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
10594
10594
  if (x_api_version != null && x_api_version != undefined) {
10595
10595
  localVarHeaderParameter['x-api-version'] = x_api_version;
10596
10596
  }
@@ -10749,7 +10749,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura
10749
10749
 
10750
10750
  localVarHeaderParameter['Content-Type'] = 'application/json';
10751
10751
 
10752
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
10752
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
10753
10753
  if (x_api_version != null && x_api_version != undefined) {
10754
10754
  localVarHeaderParameter['x-api-version'] = x_api_version;
10755
10755
  }
@@ -10870,7 +10870,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
10870
10870
 
10871
10871
 
10872
10872
 
10873
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
10873
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
10874
10874
  if (x_api_version != null && x_api_version != undefined) {
10875
10875
  localVarHeaderParameter['x-api-version'] = x_api_version;
10876
10876
  }
@@ -10943,7 +10943,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
10943
10943
 
10944
10944
  localVarHeaderParameter['Content-Type'] = 'application/json';
10945
10945
 
10946
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
10946
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
10947
10947
  if (x_api_version != null && x_api_version != undefined) {
10948
10948
  localVarHeaderParameter['x-api-version'] = x_api_version;
10949
10949
  }
@@ -11016,7 +11016,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
11016
11016
 
11017
11017
 
11018
11018
 
11019
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11019
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11020
11020
  if (x_api_version != null && x_api_version != undefined) {
11021
11021
  localVarHeaderParameter['x-api-version'] = x_api_version;
11022
11022
  }
@@ -11093,7 +11093,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
11093
11093
 
11094
11094
 
11095
11095
 
11096
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11096
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11097
11097
  if (x_api_version != null && x_api_version != undefined) {
11098
11098
  localVarHeaderParameter['x-api-version'] = x_api_version;
11099
11099
  }
@@ -11271,7 +11271,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
11271
11271
 
11272
11272
  localVarHeaderParameter['Content-Type'] = 'application/json';
11273
11273
 
11274
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11274
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11275
11275
  if (x_api_version != null && x_api_version != undefined) {
11276
11276
  localVarHeaderParameter['x-api-version'] = x_api_version;
11277
11277
  }
@@ -11334,7 +11334,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
11334
11334
 
11335
11335
  localVarHeaderParameter['Content-Type'] = 'application/json';
11336
11336
 
11337
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11337
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11338
11338
  if (x_api_version != null && x_api_version != undefined) {
11339
11339
  localVarHeaderParameter['x-api-version'] = x_api_version;
11340
11340
  }
@@ -11411,7 +11411,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
11411
11411
 
11412
11412
 
11413
11413
 
11414
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11414
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11415
11415
  if (x_api_version != null && x_api_version != undefined) {
11416
11416
  localVarHeaderParameter['x-api-version'] = x_api_version;
11417
11417
  }
@@ -11483,7 +11483,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
11483
11483
 
11484
11484
 
11485
11485
 
11486
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11486
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11487
11487
  if (x_api_version != null && x_api_version != undefined) {
11488
11488
  localVarHeaderParameter['x-api-version'] = x_api_version;
11489
11489
  }
@@ -11541,7 +11541,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
11541
11541
 
11542
11542
  localVarHeaderParameter['Content-Type'] = 'application/json';
11543
11543
 
11544
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11544
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11545
11545
  if (x_api_version != null && x_api_version != undefined) {
11546
11546
  localVarHeaderParameter['x-api-version'] = x_api_version;
11547
11547
  }
@@ -11740,7 +11740,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
11740
11740
 
11741
11741
  localVarHeaderParameter['Content-Type'] = 'application/json';
11742
11742
 
11743
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11743
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11744
11744
  if (x_api_version != null && x_api_version != undefined) {
11745
11745
  localVarHeaderParameter['x-api-version'] = x_api_version;
11746
11746
  }
@@ -11817,7 +11817,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
11817
11817
 
11818
11818
 
11819
11819
 
11820
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11820
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11821
11821
  if (x_api_version != null && x_api_version != undefined) {
11822
11822
  localVarHeaderParameter['x-api-version'] = x_api_version;
11823
11823
  }
@@ -11889,7 +11889,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
11889
11889
 
11890
11890
 
11891
11891
 
11892
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
11892
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
11893
11893
  if (x_api_version != null && x_api_version != undefined) {
11894
11894
  localVarHeaderParameter['x-api-version'] = x_api_version;
11895
11895
  }
@@ -12048,7 +12048,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
12048
12048
 
12049
12049
  localVarHeaderParameter['Content-Type'] = 'application/json';
12050
12050
 
12051
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12051
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12052
12052
  if (x_api_version != null && x_api_version != undefined) {
12053
12053
  localVarHeaderParameter['x-api-version'] = x_api_version;
12054
12054
  }
@@ -12124,7 +12124,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
12124
12124
 
12125
12125
  localVarHeaderParameter['Content-Type'] = 'application/json';
12126
12126
 
12127
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12127
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12128
12128
  if (x_api_version != null && x_api_version != undefined) {
12129
12129
  localVarHeaderParameter['x-api-version'] = x_api_version;
12130
12130
  }
@@ -12264,7 +12264,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
12264
12264
 
12265
12265
  localVarHeaderParameter['Content-Type'] = 'application/json';
12266
12266
 
12267
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12267
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12268
12268
  if (x_api_version != null && x_api_version != undefined) {
12269
12269
  localVarHeaderParameter['x-api-version'] = x_api_version;
12270
12270
  }
@@ -12337,7 +12337,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
12337
12337
 
12338
12338
 
12339
12339
 
12340
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12340
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12341
12341
  if (x_api_version != null && x_api_version != undefined) {
12342
12342
  localVarHeaderParameter['x-api-version'] = x_api_version;
12343
12343
  }
@@ -12473,7 +12473,7 @@ const SimulationApiAxiosParamCreator = function (configuration?: Configuration)
12473
12473
 
12474
12474
 
12475
12475
 
12476
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12476
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12477
12477
  if (x_api_version != null && x_api_version != undefined) {
12478
12478
  localVarHeaderParameter['x-api-version'] = x_api_version;
12479
12479
  }
@@ -12546,7 +12546,7 @@ const SimulationApiAxiosParamCreator = function (configuration?: Configuration)
12546
12546
 
12547
12547
  localVarHeaderParameter['Content-Type'] = 'application/json';
12548
12548
 
12549
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12549
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12550
12550
  if (x_api_version != null && x_api_version != undefined) {
12551
12551
  localVarHeaderParameter['x-api-version'] = x_api_version;
12552
12552
  }
@@ -12684,7 +12684,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
12684
12684
 
12685
12685
  localVarHeaderParameter['Content-Type'] = 'application/json';
12686
12686
 
12687
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12687
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12688
12688
  if (x_api_version != null && x_api_version != undefined) {
12689
12689
  localVarHeaderParameter['x-api-version'] = x_api_version;
12690
12690
  }
@@ -12758,7 +12758,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
12758
12758
 
12759
12759
  localVarHeaderParameter['Content-Type'] = 'application/json';
12760
12760
 
12761
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12761
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12762
12762
  if (x_api_version != null && x_api_version != undefined) {
12763
12763
  localVarHeaderParameter['x-api-version'] = x_api_version;
12764
12764
  }
@@ -12831,7 +12831,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
12831
12831
 
12832
12832
 
12833
12833
 
12834
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12834
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12835
12835
  if (x_api_version != null && x_api_version != undefined) {
12836
12836
  localVarHeaderParameter['x-api-version'] = x_api_version;
12837
12837
  }
@@ -12913,7 +12913,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
12913
12913
 
12914
12914
 
12915
12915
 
12916
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12916
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12917
12917
  if (x_api_version != null && x_api_version != undefined) {
12918
12918
  localVarHeaderParameter['x-api-version'] = x_api_version;
12919
12919
  }
@@ -12992,7 +12992,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
12992
12992
 
12993
12993
 
12994
12994
 
12995
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
12995
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
12996
12996
  if (x_api_version != null && x_api_version != undefined) {
12997
12997
  localVarHeaderParameter['x-api-version'] = x_api_version;
12998
12998
  }
@@ -13069,7 +13069,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
13069
13069
 
13070
13070
  localVarHeaderParameter['Content-Type'] = 'application/json';
13071
13071
 
13072
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13072
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13073
13073
  if (x_api_version != null && x_api_version != undefined) {
13074
13074
  localVarHeaderParameter['x-api-version'] = x_api_version;
13075
13075
  }
@@ -13147,7 +13147,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
13147
13147
 
13148
13148
  localVarHeaderParameter['Content-Type'] = 'application/json';
13149
13149
 
13150
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13150
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13151
13151
  if (x_api_version != null && x_api_version != undefined) {
13152
13152
  localVarHeaderParameter['x-api-version'] = x_api_version;
13153
13153
  }
@@ -13225,7 +13225,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
13225
13225
 
13226
13226
  localVarHeaderParameter['Content-Type'] = 'application/json';
13227
13227
 
13228
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13228
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13229
13229
  if (x_api_version != null && x_api_version != undefined) {
13230
13230
  localVarHeaderParameter['x-api-version'] = x_api_version;
13231
13231
  }
@@ -13476,7 +13476,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
13476
13476
 
13477
13477
  localVarHeaderParameter['Content-Type'] = 'application/json';
13478
13478
 
13479
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13479
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13480
13480
  if (x_api_version != null && x_api_version != undefined) {
13481
13481
  localVarHeaderParameter['x-api-version'] = x_api_version;
13482
13482
  }
@@ -13550,7 +13550,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
13550
13550
 
13551
13551
  localVarHeaderParameter['Content-Type'] = 'application/json';
13552
13552
 
13553
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13553
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13554
13554
  if (x_api_version != null && x_api_version != undefined) {
13555
13555
  localVarHeaderParameter['x-api-version'] = x_api_version;
13556
13556
  }
@@ -13628,7 +13628,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
13628
13628
 
13629
13629
  localVarHeaderParameter['Content-Type'] = 'application/json';
13630
13630
 
13631
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13631
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13632
13632
  if (x_api_version != null && x_api_version != undefined) {
13633
13633
  localVarHeaderParameter['x-api-version'] = x_api_version;
13634
13634
  }
@@ -13702,7 +13702,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
13702
13702
 
13703
13703
  localVarHeaderParameter['Content-Type'] = 'application/json';
13704
13704
 
13705
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13705
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13706
13706
  if (x_api_version != null && x_api_version != undefined) {
13707
13707
  localVarHeaderParameter['x-api-version'] = x_api_version;
13708
13708
  }
@@ -13775,7 +13775,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
13775
13775
 
13776
13776
 
13777
13777
 
13778
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13778
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13779
13779
  if (x_api_version != null && x_api_version != undefined) {
13780
13780
  localVarHeaderParameter['x-api-version'] = x_api_version;
13781
13781
  }
@@ -13847,7 +13847,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
13847
13847
 
13848
13848
 
13849
13849
 
13850
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13850
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13851
13851
  if (x_api_version != null && x_api_version != undefined) {
13852
13852
  localVarHeaderParameter['x-api-version'] = x_api_version;
13853
13853
  }
@@ -13923,7 +13923,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
13923
13923
 
13924
13924
 
13925
13925
 
13926
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13926
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13927
13927
  if (x_api_version != null && x_api_version != undefined) {
13928
13928
  localVarHeaderParameter['x-api-version'] = x_api_version;
13929
13929
  }
@@ -13995,7 +13995,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
13995
13995
 
13996
13996
 
13997
13997
 
13998
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
13998
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
13999
13999
  if (x_api_version != null && x_api_version != undefined) {
14000
14000
  localVarHeaderParameter['x-api-version'] = x_api_version;
14001
14001
  }
@@ -14071,7 +14071,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
14071
14071
 
14072
14072
 
14073
14073
 
14074
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
14074
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
14075
14075
  if (x_api_version != null && x_api_version != undefined) {
14076
14076
  localVarHeaderParameter['x-api-version'] = x_api_version;
14077
14077
  }
@@ -14148,7 +14148,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
14148
14148
 
14149
14149
  localVarHeaderParameter['Content-Type'] = 'application/json';
14150
14150
 
14151
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
14151
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
14152
14152
  if (x_api_version != null && x_api_version != undefined) {
14153
14153
  localVarHeaderParameter['x-api-version'] = x_api_version;
14154
14154
  }
@@ -14230,7 +14230,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
14230
14230
 
14231
14231
  localVarHeaderParameter['Content-Type'] = 'application/json';
14232
14232
 
14233
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
14233
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
14234
14234
  if (x_api_version != null && x_api_version != undefined) {
14235
14235
  localVarHeaderParameter['x-api-version'] = x_api_version;
14236
14236
  }
@@ -14327,7 +14327,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
14327
14327
 
14328
14328
  localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
14329
14329
 
14330
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
14330
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
14331
14331
  if (x_api_version != null && x_api_version != undefined) {
14332
14332
  localVarHeaderParameter['x-api-version'] = x_api_version;
14333
14333
  }
@@ -14401,7 +14401,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration
14401
14401
 
14402
14402
  localVarHeaderParameter['Content-Type'] = 'application/json';
14403
14403
 
14404
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
14404
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
14405
14405
  if (x_api_version != null && x_api_version != undefined) {
14406
14406
  localVarHeaderParameter['x-api-version'] = x_api_version;
14407
14407
  }
@@ -14749,7 +14749,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
14749
14749
 
14750
14750
 
14751
14751
 
14752
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
14752
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
14753
14753
  if (x_api_version != null && x_api_version != undefined) {
14754
14754
  localVarHeaderParameter['x-api-version'] = x_api_version;
14755
14755
  }
@@ -14825,7 +14825,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
14825
14825
 
14826
14826
 
14827
14827
 
14828
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
14828
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
14829
14829
  if (x_api_version != null && x_api_version != undefined) {
14830
14830
  localVarHeaderParameter['x-api-version'] = x_api_version;
14831
14831
  }
@@ -14904,7 +14904,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
14904
14904
 
14905
14905
 
14906
14906
 
14907
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
14907
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
14908
14908
  if (x_api_version != null && x_api_version != undefined) {
14909
14909
  localVarHeaderParameter['x-api-version'] = x_api_version;
14910
14910
  }
@@ -14980,7 +14980,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
14980
14980
 
14981
14981
 
14982
14982
 
14983
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2';
14983
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3';
14984
14984
  if (x_api_version != null && x_api_version != undefined) {
14985
14985
  localVarHeaderParameter['x-api-version'] = x_api_version;
14986
14986
  }
@@ -15208,7 +15208,7 @@ export class Cashfree {
15208
15208
  } else {
15209
15209
  scope.setExtra('environment', 'production');
15210
15210
  }
15211
- scope.setExtra('release', "4.2.2");
15211
+ scope.setExtra('release', "4.2.3");
15212
15212
  });
15213
15213
  }
15214
15214
  try {
@@ -15269,7 +15269,7 @@ export class Cashfree {
15269
15269
  } else {
15270
15270
  scope.setExtra('environment', 'production');
15271
15271
  }
15272
- scope.setExtra('release', "4.2.2");
15272
+ scope.setExtra('release', "4.2.3");
15273
15273
  });
15274
15274
  }
15275
15275
  try {
@@ -15329,7 +15329,7 @@ export class Cashfree {
15329
15329
  } else {
15330
15330
  scope.setExtra('environment', 'production');
15331
15331
  }
15332
- scope.setExtra('release', "4.2.2");
15332
+ scope.setExtra('release', "4.2.3");
15333
15333
  });
15334
15334
  }
15335
15335
  try {
@@ -15390,7 +15390,7 @@ export class Cashfree {
15390
15390
  } else {
15391
15391
  scope.setExtra('environment', 'production');
15392
15392
  }
15393
- scope.setExtra('release', "4.2.2");
15393
+ scope.setExtra('release', "4.2.3");
15394
15394
  });
15395
15395
  }
15396
15396
  try {
@@ -15450,7 +15450,7 @@ export class Cashfree {
15450
15450
  } else {
15451
15451
  scope.setExtra('environment', 'production');
15452
15452
  }
15453
- scope.setExtra('release', "4.2.2");
15453
+ scope.setExtra('release', "4.2.3");
15454
15454
  });
15455
15455
  }
15456
15456
  try {
@@ -15510,7 +15510,7 @@ export class Cashfree {
15510
15510
  } else {
15511
15511
  scope.setExtra('environment', 'production');
15512
15512
  }
15513
- scope.setExtra('release', "4.2.2");
15513
+ scope.setExtra('release', "4.2.3");
15514
15514
  });
15515
15515
  }
15516
15516
  try {
@@ -15571,7 +15571,7 @@ export class Cashfree {
15571
15571
  } else {
15572
15572
  scope.setExtra('environment', 'production');
15573
15573
  }
15574
- scope.setExtra('release', "4.2.2");
15574
+ scope.setExtra('release', "4.2.3");
15575
15575
  });
15576
15576
  }
15577
15577
  try {
@@ -15631,7 +15631,7 @@ export class Cashfree {
15631
15631
  } else {
15632
15632
  scope.setExtra('environment', 'production');
15633
15633
  }
15634
- scope.setExtra('release', "4.2.2");
15634
+ scope.setExtra('release', "4.2.3");
15635
15635
  });
15636
15636
  }
15637
15637
  try {
@@ -15691,7 +15691,7 @@ export class Cashfree {
15691
15691
  } else {
15692
15692
  scope.setExtra('environment', 'production');
15693
15693
  }
15694
- scope.setExtra('release', "4.2.2");
15694
+ scope.setExtra('release', "4.2.3");
15695
15695
  });
15696
15696
  }
15697
15697
  try {
@@ -15752,7 +15752,7 @@ export class Cashfree {
15752
15752
  } else {
15753
15753
  scope.setExtra('environment', 'production');
15754
15754
  }
15755
- scope.setExtra('release', "4.2.2");
15755
+ scope.setExtra('release', "4.2.3");
15756
15756
  });
15757
15757
  }
15758
15758
  try {
@@ -15815,7 +15815,7 @@ export class Cashfree {
15815
15815
  } else {
15816
15816
  scope.setExtra('environment', 'production');
15817
15817
  }
15818
- scope.setExtra('release', "4.2.2");
15818
+ scope.setExtra('release', "4.2.3");
15819
15819
  });
15820
15820
  }
15821
15821
  try {
@@ -15876,7 +15876,7 @@ export class Cashfree {
15876
15876
  } else {
15877
15877
  scope.setExtra('environment', 'production');
15878
15878
  }
15879
- scope.setExtra('release', "4.2.2");
15879
+ scope.setExtra('release', "4.2.3");
15880
15880
  });
15881
15881
  }
15882
15882
  try {
@@ -15936,7 +15936,7 @@ export class Cashfree {
15936
15936
  } else {
15937
15937
  scope.setExtra('environment', 'production');
15938
15938
  }
15939
- scope.setExtra('release', "4.2.2");
15939
+ scope.setExtra('release', "4.2.3");
15940
15940
  });
15941
15941
  }
15942
15942
  try {
@@ -15996,7 +15996,7 @@ export class Cashfree {
15996
15996
  } else {
15997
15997
  scope.setExtra('environment', 'production');
15998
15998
  }
15999
- scope.setExtra('release', "4.2.2");
15999
+ scope.setExtra('release', "4.2.3");
16000
16000
  });
16001
16001
  }
16002
16002
  try {
@@ -16056,7 +16056,7 @@ export class Cashfree {
16056
16056
  } else {
16057
16057
  scope.setExtra('environment', 'production');
16058
16058
  }
16059
- scope.setExtra('release', "4.2.2");
16059
+ scope.setExtra('release', "4.2.3");
16060
16060
  });
16061
16061
  }
16062
16062
  try {
@@ -16116,7 +16116,7 @@ export class Cashfree {
16116
16116
  } else {
16117
16117
  scope.setExtra('environment', 'production');
16118
16118
  }
16119
- scope.setExtra('release', "4.2.2");
16119
+ scope.setExtra('release', "4.2.3");
16120
16120
  });
16121
16121
  }
16122
16122
  try {
@@ -16176,7 +16176,7 @@ export class Cashfree {
16176
16176
  } else {
16177
16177
  scope.setExtra('environment', 'production');
16178
16178
  }
16179
- scope.setExtra('release', "4.2.2");
16179
+ scope.setExtra('release', "4.2.3");
16180
16180
  });
16181
16181
  }
16182
16182
  try {
@@ -16236,7 +16236,7 @@ export class Cashfree {
16236
16236
  } else {
16237
16237
  scope.setExtra('environment', 'production');
16238
16238
  }
16239
- scope.setExtra('release', "4.2.2");
16239
+ scope.setExtra('release', "4.2.3");
16240
16240
  });
16241
16241
  }
16242
16242
  try {
@@ -16296,7 +16296,7 @@ export class Cashfree {
16296
16296
  } else {
16297
16297
  scope.setExtra('environment', 'production');
16298
16298
  }
16299
- scope.setExtra('release', "4.2.2");
16299
+ scope.setExtra('release', "4.2.3");
16300
16300
  });
16301
16301
  }
16302
16302
  try {
@@ -16356,7 +16356,7 @@ export class Cashfree {
16356
16356
  } else {
16357
16357
  scope.setExtra('environment', 'production');
16358
16358
  }
16359
- scope.setExtra('release', "4.2.2");
16359
+ scope.setExtra('release', "4.2.3");
16360
16360
  });
16361
16361
  }
16362
16362
  try {
@@ -16416,7 +16416,7 @@ export class Cashfree {
16416
16416
  } else {
16417
16417
  scope.setExtra('environment', 'production');
16418
16418
  }
16419
- scope.setExtra('release', "4.2.2");
16419
+ scope.setExtra('release', "4.2.3");
16420
16420
  });
16421
16421
  }
16422
16422
  try {
@@ -16477,7 +16477,7 @@ export class Cashfree {
16477
16477
  } else {
16478
16478
  scope.setExtra('environment', 'production');
16479
16479
  }
16480
- scope.setExtra('release', "4.2.2");
16480
+ scope.setExtra('release', "4.2.3");
16481
16481
  });
16482
16482
  }
16483
16483
  try {
@@ -16539,7 +16539,7 @@ export class Cashfree {
16539
16539
  } else {
16540
16540
  scope.setExtra('environment', 'production');
16541
16541
  }
16542
- scope.setExtra('release', "4.2.2");
16542
+ scope.setExtra('release', "4.2.3");
16543
16543
  });
16544
16544
  }
16545
16545
  try {
@@ -16599,7 +16599,7 @@ export class Cashfree {
16599
16599
  } else {
16600
16600
  scope.setExtra('environment', 'production');
16601
16601
  }
16602
- scope.setExtra('release', "4.2.2");
16602
+ scope.setExtra('release', "4.2.3");
16603
16603
  });
16604
16604
  }
16605
16605
  try {
@@ -16659,7 +16659,7 @@ export class Cashfree {
16659
16659
  } else {
16660
16660
  scope.setExtra('environment', 'production');
16661
16661
  }
16662
- scope.setExtra('release', "4.2.2");
16662
+ scope.setExtra('release', "4.2.3");
16663
16663
  });
16664
16664
  }
16665
16665
  try {
@@ -16719,7 +16719,7 @@ export class Cashfree {
16719
16719
  } else {
16720
16720
  scope.setExtra('environment', 'production');
16721
16721
  }
16722
- scope.setExtra('release', "4.2.2");
16722
+ scope.setExtra('release', "4.2.3");
16723
16723
  });
16724
16724
  }
16725
16725
  try {
@@ -16780,7 +16780,7 @@ export class Cashfree {
16780
16780
  } else {
16781
16781
  scope.setExtra('environment', 'production');
16782
16782
  }
16783
- scope.setExtra('release', "4.2.2");
16783
+ scope.setExtra('release', "4.2.3");
16784
16784
  });
16785
16785
  }
16786
16786
  try {
@@ -16841,7 +16841,7 @@ export class Cashfree {
16841
16841
  } else {
16842
16842
  scope.setExtra('environment', 'production');
16843
16843
  }
16844
- scope.setExtra('release', "4.2.2");
16844
+ scope.setExtra('release', "4.2.3");
16845
16845
  });
16846
16846
  }
16847
16847
  try {
@@ -16902,7 +16902,7 @@ export class Cashfree {
16902
16902
  } else {
16903
16903
  scope.setExtra('environment', 'production');
16904
16904
  }
16905
- scope.setExtra('release', "4.2.2");
16905
+ scope.setExtra('release', "4.2.3");
16906
16906
  });
16907
16907
  }
16908
16908
  try {
@@ -16963,7 +16963,7 @@ export class Cashfree {
16963
16963
  } else {
16964
16964
  scope.setExtra('environment', 'production');
16965
16965
  }
16966
- scope.setExtra('release', "4.2.2");
16966
+ scope.setExtra('release', "4.2.3");
16967
16967
  });
16968
16968
  }
16969
16969
  try {
@@ -17023,7 +17023,7 @@ export class Cashfree {
17023
17023
  } else {
17024
17024
  scope.setExtra('environment', 'production');
17025
17025
  }
17026
- scope.setExtra('release', "4.2.2");
17026
+ scope.setExtra('release', "4.2.3");
17027
17027
  });
17028
17028
  }
17029
17029
  try {
@@ -17083,7 +17083,7 @@ export class Cashfree {
17083
17083
  } else {
17084
17084
  scope.setExtra('environment', 'production');
17085
17085
  }
17086
- scope.setExtra('release', "4.2.2");
17086
+ scope.setExtra('release', "4.2.3");
17087
17087
  });
17088
17088
  }
17089
17089
  try {
@@ -17144,7 +17144,7 @@ export class Cashfree {
17144
17144
  } else {
17145
17145
  scope.setExtra('environment', 'production');
17146
17146
  }
17147
- scope.setExtra('release', "4.2.2");
17147
+ scope.setExtra('release', "4.2.3");
17148
17148
  });
17149
17149
  }
17150
17150
  try {
@@ -17205,7 +17205,7 @@ export class Cashfree {
17205
17205
  } else {
17206
17206
  scope.setExtra('environment', 'production');
17207
17207
  }
17208
- scope.setExtra('release', "4.2.2");
17208
+ scope.setExtra('release', "4.2.3");
17209
17209
  });
17210
17210
  }
17211
17211
  try {
@@ -17265,7 +17265,7 @@ export class Cashfree {
17265
17265
  } else {
17266
17266
  scope.setExtra('environment', 'production');
17267
17267
  }
17268
- scope.setExtra('release', "4.2.2");
17268
+ scope.setExtra('release', "4.2.3");
17269
17269
  });
17270
17270
  }
17271
17271
  try {
@@ -17327,7 +17327,7 @@ export class Cashfree {
17327
17327
  } else {
17328
17328
  scope.setExtra('environment', 'production');
17329
17329
  }
17330
- scope.setExtra('release', "4.2.2");
17330
+ scope.setExtra('release', "4.2.3");
17331
17331
  });
17332
17332
  }
17333
17333
  try {
@@ -17389,7 +17389,7 @@ export class Cashfree {
17389
17389
  } else {
17390
17390
  scope.setExtra('environment', 'production');
17391
17391
  }
17392
- scope.setExtra('release', "4.2.2");
17392
+ scope.setExtra('release', "4.2.3");
17393
17393
  });
17394
17394
  }
17395
17395
  try {
@@ -17449,7 +17449,7 @@ export class Cashfree {
17449
17449
  } else {
17450
17450
  scope.setExtra('environment', 'production');
17451
17451
  }
17452
- scope.setExtra('release', "4.2.2");
17452
+ scope.setExtra('release', "4.2.3");
17453
17453
  });
17454
17454
  }
17455
17455
  try {
@@ -17509,7 +17509,7 @@ export class Cashfree {
17509
17509
  } else {
17510
17510
  scope.setExtra('environment', 'production');
17511
17511
  }
17512
- scope.setExtra('release', "4.2.2");
17512
+ scope.setExtra('release', "4.2.3");
17513
17513
  });
17514
17514
  }
17515
17515
  try {
@@ -17569,7 +17569,7 @@ export class Cashfree {
17569
17569
  } else {
17570
17570
  scope.setExtra('environment', 'production');
17571
17571
  }
17572
- scope.setExtra('release', "4.2.2");
17572
+ scope.setExtra('release', "4.2.3");
17573
17573
  });
17574
17574
  }
17575
17575
  try {
@@ -17629,7 +17629,7 @@ export class Cashfree {
17629
17629
  } else {
17630
17630
  scope.setExtra('environment', 'production');
17631
17631
  }
17632
- scope.setExtra('release', "4.2.2");
17632
+ scope.setExtra('release', "4.2.3");
17633
17633
  });
17634
17634
  }
17635
17635
  try {
@@ -17689,7 +17689,7 @@ export class Cashfree {
17689
17689
  } else {
17690
17690
  scope.setExtra('environment', 'production');
17691
17691
  }
17692
- scope.setExtra('release', "4.2.2");
17692
+ scope.setExtra('release', "4.2.3");
17693
17693
  });
17694
17694
  }
17695
17695
  try {
@@ -17749,7 +17749,7 @@ export class Cashfree {
17749
17749
  } else {
17750
17750
  scope.setExtra('environment', 'production');
17751
17751
  }
17752
- scope.setExtra('release', "4.2.2");
17752
+ scope.setExtra('release', "4.2.3");
17753
17753
  });
17754
17754
  }
17755
17755
  try {
@@ -17809,7 +17809,7 @@ export class Cashfree {
17809
17809
  } else {
17810
17810
  scope.setExtra('environment', 'production');
17811
17811
  }
17812
- scope.setExtra('release', "4.2.2");
17812
+ scope.setExtra('release', "4.2.3");
17813
17813
  });
17814
17814
  }
17815
17815
  try {
@@ -17870,7 +17870,7 @@ export class Cashfree {
17870
17870
  } else {
17871
17871
  scope.setExtra('environment', 'production');
17872
17872
  }
17873
- scope.setExtra('release', "4.2.2");
17873
+ scope.setExtra('release', "4.2.3");
17874
17874
  });
17875
17875
  }
17876
17876
  try {
@@ -17931,7 +17931,7 @@ export class Cashfree {
17931
17931
  } else {
17932
17932
  scope.setExtra('environment', 'production');
17933
17933
  }
17934
- scope.setExtra('release', "4.2.2");
17934
+ scope.setExtra('release', "4.2.3");
17935
17935
  });
17936
17936
  }
17937
17937
  try {
@@ -17992,7 +17992,7 @@ export class Cashfree {
17992
17992
  } else {
17993
17993
  scope.setExtra('environment', 'production');
17994
17994
  }
17995
- scope.setExtra('release', "4.2.2");
17995
+ scope.setExtra('release', "4.2.3");
17996
17996
  });
17997
17997
  }
17998
17998
  try {
@@ -18053,7 +18053,7 @@ export class Cashfree {
18053
18053
  } else {
18054
18054
  scope.setExtra('environment', 'production');
18055
18055
  }
18056
- scope.setExtra('release', "4.2.2");
18056
+ scope.setExtra('release', "4.2.3");
18057
18057
  });
18058
18058
  }
18059
18059
  try {
@@ -18114,7 +18114,7 @@ export class Cashfree {
18114
18114
  } else {
18115
18115
  scope.setExtra('environment', 'production');
18116
18116
  }
18117
- scope.setExtra('release', "4.2.2");
18117
+ scope.setExtra('release', "4.2.3");
18118
18118
  });
18119
18119
  }
18120
18120
  try {
@@ -18174,7 +18174,7 @@ export class Cashfree {
18174
18174
  } else {
18175
18175
  scope.setExtra('environment', 'production');
18176
18176
  }
18177
- scope.setExtra('release', "4.2.2");
18177
+ scope.setExtra('release', "4.2.3");
18178
18178
  });
18179
18179
  }
18180
18180
  try {
@@ -18234,7 +18234,7 @@ export class Cashfree {
18234
18234
  } else {
18235
18235
  scope.setExtra('environment', 'production');
18236
18236
  }
18237
- scope.setExtra('release', "4.2.2");
18237
+ scope.setExtra('release', "4.2.3");
18238
18238
  });
18239
18239
  }
18240
18240
  try {
@@ -18295,7 +18295,7 @@ export class Cashfree {
18295
18295
  } else {
18296
18296
  scope.setExtra('environment', 'production');
18297
18297
  }
18298
- scope.setExtra('release', "4.2.2");
18298
+ scope.setExtra('release', "4.2.3");
18299
18299
  });
18300
18300
  }
18301
18301
  try {
@@ -18355,7 +18355,7 @@ export class Cashfree {
18355
18355
  } else {
18356
18356
  scope.setExtra('environment', 'production');
18357
18357
  }
18358
- scope.setExtra('release', "4.2.2");
18358
+ scope.setExtra('release', "4.2.3");
18359
18359
  });
18360
18360
  }
18361
18361
  try {
@@ -18415,7 +18415,7 @@ export class Cashfree {
18415
18415
  } else {
18416
18416
  scope.setExtra('environment', 'production');
18417
18417
  }
18418
- scope.setExtra('release', "4.2.2");
18418
+ scope.setExtra('release', "4.2.3");
18419
18419
  });
18420
18420
  }
18421
18421
  try {
@@ -18475,7 +18475,7 @@ export class Cashfree {
18475
18475
  } else {
18476
18476
  scope.setExtra('environment', 'production');
18477
18477
  }
18478
- scope.setExtra('release', "4.2.2");
18478
+ scope.setExtra('release', "4.2.3");
18479
18479
  });
18480
18480
  }
18481
18481
  try {
@@ -18536,7 +18536,7 @@ export class Cashfree {
18536
18536
  } else {
18537
18537
  scope.setExtra('environment', 'production');
18538
18538
  }
18539
- scope.setExtra('release', "4.2.2");
18539
+ scope.setExtra('release', "4.2.3");
18540
18540
  });
18541
18541
  }
18542
18542
  try {
@@ -18596,7 +18596,7 @@ export class Cashfree {
18596
18596
  } else {
18597
18597
  scope.setExtra('environment', 'production');
18598
18598
  }
18599
- scope.setExtra('release', "4.2.2");
18599
+ scope.setExtra('release', "4.2.3");
18600
18600
  });
18601
18601
  }
18602
18602
  try {
@@ -18657,7 +18657,7 @@ export class Cashfree {
18657
18657
  } else {
18658
18658
  scope.setExtra('environment', 'production');
18659
18659
  }
18660
- scope.setExtra('release', "4.2.2");
18660
+ scope.setExtra('release', "4.2.3");
18661
18661
  });
18662
18662
  }
18663
18663
  try {
@@ -18718,7 +18718,7 @@ export class Cashfree {
18718
18718
  } else {
18719
18719
  scope.setExtra('environment', 'production');
18720
18720
  }
18721
- scope.setExtra('release', "4.2.2");
18721
+ scope.setExtra('release', "4.2.3");
18722
18722
  });
18723
18723
  }
18724
18724
  try {
@@ -18780,7 +18780,7 @@ export class Cashfree {
18780
18780
  } else {
18781
18781
  scope.setExtra('environment', 'production');
18782
18782
  }
18783
- scope.setExtra('release', "4.2.2");
18783
+ scope.setExtra('release', "4.2.3");
18784
18784
  });
18785
18785
  }
18786
18786
  try {
@@ -18843,7 +18843,7 @@ export class Cashfree {
18843
18843
  } else {
18844
18844
  scope.setExtra('environment', 'production');
18845
18845
  }
18846
- scope.setExtra('release', "4.2.2");
18846
+ scope.setExtra('release', "4.2.3");
18847
18847
  });
18848
18848
  }
18849
18849
  try {
@@ -18903,7 +18903,7 @@ export class Cashfree {
18903
18903
  } else {
18904
18904
  scope.setExtra('environment', 'production');
18905
18905
  }
18906
- scope.setExtra('release', "4.2.2");
18906
+ scope.setExtra('release', "4.2.3");
18907
18907
  });
18908
18908
  }
18909
18909
  try {
@@ -18964,7 +18964,7 @@ export class Cashfree {
18964
18964
  } else {
18965
18965
  scope.setExtra('environment', 'production');
18966
18966
  }
18967
- scope.setExtra('release', "4.2.2");
18967
+ scope.setExtra('release', "4.2.3");
18968
18968
  });
18969
18969
  }
18970
18970
  try {
@@ -19025,7 +19025,7 @@ export class Cashfree {
19025
19025
  } else {
19026
19026
  scope.setExtra('environment', 'production');
19027
19027
  }
19028
- scope.setExtra('release', "4.2.2");
19028
+ scope.setExtra('release', "4.2.3");
19029
19029
  });
19030
19030
  }
19031
19031
  try {
@@ -19086,7 +19086,7 @@ export class Cashfree {
19086
19086
  } else {
19087
19087
  scope.setExtra('environment', 'production');
19088
19088
  }
19089
- scope.setExtra('release', "4.2.2");
19089
+ scope.setExtra('release', "4.2.3");
19090
19090
  });
19091
19091
  }
19092
19092
  try {
@@ -19147,7 +19147,7 @@ export class Cashfree {
19147
19147
  } else {
19148
19148
  scope.setExtra('environment', 'production');
19149
19149
  }
19150
- scope.setExtra('release', "4.2.2");
19150
+ scope.setExtra('release', "4.2.3");
19151
19151
  });
19152
19152
  }
19153
19153
  try {