cashfree-pg 3.0.8 → 3.1.0

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
@@ -876,7 +876,7 @@ export interface CreateOrderRequest {
876
876
  * @type {string}
877
877
  * @memberof CreateOrderRequest
878
878
  */
879
- 'order_id'?: string | null;
879
+ 'order_id'?: string;
880
880
  /**
881
881
  * Bill amount for the order. Provide upto two decimals. 10.15 means Rs 10 and 15 paisa
882
882
  * @type {number}
@@ -897,16 +897,16 @@ export interface CreateOrderRequest {
897
897
  'customer_details': CustomerDetails;
898
898
  /**
899
899
  *
900
- * @type {CreateOrderRequestTerminal}
900
+ * @type {TerminalDetails}
901
901
  * @memberof CreateOrderRequest
902
902
  */
903
- 'terminal'?: CreateOrderRequestTerminal | null;
903
+ 'terminal'?: TerminalDetails;
904
904
  /**
905
905
  *
906
- * @type {CreateOrderRequestOrderMeta}
906
+ * @type {OrderMeta}
907
907
  * @memberof CreateOrderRequest
908
908
  */
909
- 'order_meta'?: CreateOrderRequestOrderMeta | null;
909
+ 'order_meta'?: OrderMeta;
910
910
  /**
911
911
  * Time after which the order expires. Customers will not be able to make the payment beyond the time specified here. We store timestamps in IST, but you can provide them in a valid ISO 8601 time format. Example 2021-07-02T10:20:12+05:30 for IST, 2021-07-02T10:20:12Z for UTC
912
912
  * @type {string}
@@ -918,111 +918,19 @@ export interface CreateOrderRequest {
918
918
  * @type {string}
919
919
  * @memberof CreateOrderRequest
920
920
  */
921
- 'order_note'?: string | null;
921
+ 'order_note'?: string;
922
922
  /**
923
923
  * Custom Tags in thr form of {\"key\":\"value\"} which can be passed for an order. A maximum of 10 tags can be added
924
924
  * @type {{ [key: string]: string; }}
925
925
  * @memberof CreateOrderRequest
926
926
  */
927
- 'order_tags'?: { [key: string]: string; } | null;
927
+ 'order_tags'?: { [key: string]: string; };
928
928
  /**
929
929
  * If you have Easy split enabled in your Cashfree account then you can use this option to split the order amount.
930
930
  * @type {Array<VendorSplit>}
931
931
  * @memberof CreateOrderRequest
932
932
  */
933
- 'order_splits'?: Array<VendorSplit> | null;
934
- }
935
- /**
936
- *
937
- * @export
938
- * @interface CreateOrderRequestOrderMeta
939
- */
940
- export interface CreateOrderRequestOrderMeta {
941
- /**
942
- * The URL to which user will be redirected to after the payment on bank OTP page. Maximum length: 250. The return_url must contain placeholder {order_id}. When redirecting the customer back to the return url from the bank’s OTP page, Cashfree will replace this placeholder with the actual value for that order.
943
- * @type {string}
944
- * @memberof CreateOrderRequestOrderMeta
945
- */
946
- 'return_url'?: string | null;
947
- /**
948
- * Notification URL for server-server communication. Useful when user\'s connection drops while re-directing. NotifyUrl should be an https URL. Maximum length: 250.
949
- * @type {string}
950
- * @memberof CreateOrderRequestOrderMeta
951
- */
952
- 'notify_url'?: string | null;
953
- /**
954
- * Allowed payment modes for this order. Pass comma-separated values among following options - \"cc\", \"dc\", \"ccc\", \"ppc\",\"nb\",\"upi\",\"paypal\",\"app\",\"paylater\",\"cardlessemi\",\"dcemi\",\"ccemi\",\"banktransfer\". Leave it blank to show all available payment methods
955
- * @type {any}
956
- * @memberof CreateOrderRequestOrderMeta
957
- */
958
- 'payment_methods'?: any | null;
959
- }
960
- /**
961
- *
962
- * @export
963
- * @interface CreateOrderRequestTerminal
964
- */
965
- export interface CreateOrderRequestTerminal {
966
- /**
967
- * date time at which terminal is added
968
- * @type {string}
969
- * @memberof CreateOrderRequestTerminal
970
- */
971
- 'added_on'?: string;
972
- /**
973
- * cashfree terminal id
974
- * @type {number}
975
- * @memberof CreateOrderRequestTerminal
976
- */
977
- 'cf_terminal_id'?: number;
978
- /**
979
- * last instant when this terminal was updated
980
- * @type {string}
981
- * @memberof CreateOrderRequestTerminal
982
- */
983
- 'last_updated_on'?: string;
984
- /**
985
- * location of terminal
986
- * @type {string}
987
- * @memberof CreateOrderRequestTerminal
988
- */
989
- 'terminal_address'?: string;
990
- /**
991
- * terminal id for merchant reference
992
- * @type {string}
993
- * @memberof CreateOrderRequestTerminal
994
- */
995
- 'terminal_id': string;
996
- /**
997
- * name of terminal/agent/storefront
998
- * @type {string}
999
- * @memberof CreateOrderRequestTerminal
1000
- */
1001
- 'terminal_name'?: string;
1002
- /**
1003
- * note given by merchant while creating the terminal
1004
- * @type {string}
1005
- * @memberof CreateOrderRequestTerminal
1006
- */
1007
- 'terminal_note'?: string;
1008
- /**
1009
- * mobile num of the terminal/agent/storefront
1010
- * @type {string}
1011
- * @memberof CreateOrderRequestTerminal
1012
- */
1013
- 'terminal_phone_no': string;
1014
- /**
1015
- * status of terminal active/inactive
1016
- * @type {string}
1017
- * @memberof CreateOrderRequestTerminal
1018
- */
1019
- 'terminal_status'?: string;
1020
- /**
1021
- * To identify the type of terminal product in use, in this case it is SPOS.
1022
- * @type {string}
1023
- * @memberof CreateOrderRequestTerminal
1024
- */
1025
- 'terminal_type': string;
933
+ 'order_splits'?: Array<VendorSplit>;
1026
934
  }
1027
935
  /**
1028
936
  * Request body to create a terminal
@@ -1189,7 +1097,7 @@ export interface CustomerDetails {
1189
1097
  * @type {string}
1190
1098
  * @memberof CustomerDetails
1191
1099
  */
1192
- 'customer_email'?: string | null;
1100
+ 'customer_email'?: string;
1193
1101
  /**
1194
1102
  * Customer phone number.
1195
1103
  * @type {string}
@@ -1201,25 +1109,25 @@ export interface CustomerDetails {
1201
1109
  * @type {string}
1202
1110
  * @memberof CustomerDetails
1203
1111
  */
1204
- 'customer_name'?: string | null;
1112
+ 'customer_name'?: string;
1205
1113
  /**
1206
1114
  * Customer bank account. Required if you want to do a bank account check (TPV)
1207
1115
  * @type {string}
1208
1116
  * @memberof CustomerDetails
1209
1117
  */
1210
- 'customer_bank_account_number'?: string | null;
1118
+ 'customer_bank_account_number'?: string;
1211
1119
  /**
1212
1120
  * Customer bank IFSC. Required if you want to do a bank account check (TPV)
1213
1121
  * @type {string}
1214
1122
  * @memberof CustomerDetails
1215
1123
  */
1216
- 'customer_bank_ifsc'?: string | null;
1124
+ 'customer_bank_ifsc'?: string;
1217
1125
  /**
1218
1126
  * Customer bank code. Required for net banking payments, if you want to do a bank account check (TPV)
1219
1127
  * @type {number}
1220
1128
  * @memberof CustomerDetails
1221
1129
  */
1222
- 'customer_bank_code'?: number | null;
1130
+ 'customer_bank_code'?: number;
1223
1131
  }
1224
1132
  /**
1225
1133
  * Details of the customer for whom eligibility is being checked.
@@ -1641,7 +1549,7 @@ export interface FetchReconRequestPagination {
1641
1549
  * @type {string}
1642
1550
  * @memberof FetchReconRequestPagination
1643
1551
  */
1644
- 'cursor'?: string | null;
1552
+ 'cursor'?: string;
1645
1553
  }
1646
1554
  /**
1647
1555
  * Request to fetch settlement
@@ -2582,7 +2490,7 @@ export interface OrderEntity {
2582
2490
  * @type {string}
2583
2491
  * @memberof OrderEntity
2584
2492
  */
2585
- 'order_note'?: string | null;
2493
+ 'order_note'?: string;
2586
2494
  /**
2587
2495
  * When the order was created at cashfree\'s server
2588
2496
  * @type {string}
@@ -2630,7 +2538,7 @@ export interface OrderEntity {
2630
2538
  * @type {{ [key: string]: string; }}
2631
2539
  * @memberof OrderEntity
2632
2540
  */
2633
- 'order_tags'?: { [key: string]: string; } | null;
2541
+ 'order_tags'?: { [key: string]: string; };
2634
2542
  }
2635
2543
  /**
2636
2544
  * Optional meta details to control how the customer pays and how payment journey completes
@@ -2643,19 +2551,19 @@ export interface OrderMeta {
2643
2551
  * @type {string}
2644
2552
  * @memberof OrderMeta
2645
2553
  */
2646
- 'return_url'?: string | null;
2554
+ 'return_url'?: string;
2647
2555
  /**
2648
2556
  * Notification URL for server-server communication. Useful when user\'s connection drops while re-directing. NotifyUrl should be an https URL. Maximum length: 250.
2649
2557
  * @type {string}
2650
2558
  * @memberof OrderMeta
2651
2559
  */
2652
- 'notify_url'?: string | null;
2560
+ 'notify_url'?: string;
2653
2561
  /**
2654
2562
  * Allowed payment modes for this order. Pass comma-separated values among following options - \"cc\", \"dc\", \"ccc\", \"ppc\",\"nb\",\"upi\",\"paypal\",\"app\",\"paylater\",\"cardlessemi\",\"dcemi\",\"ccemi\",\"banktransfer\". Leave it blank to show all available payment methods
2655
2563
  * @type {any}
2656
2564
  * @memberof OrderMeta
2657
2565
  */
2658
- 'payment_methods'?: any | null;
2566
+ 'payment_methods'?: any;
2659
2567
  }
2660
2568
  /**
2661
2569
  * the data object pay api
@@ -2668,25 +2576,25 @@ export interface OrderPayData {
2668
2576
  * @type {string}
2669
2577
  * @memberof OrderPayData
2670
2578
  */
2671
- 'url'?: string | null;
2579
+ 'url'?: string;
2672
2580
  /**
2673
2581
  *
2674
2582
  * @type {object}
2675
2583
  * @memberof OrderPayData
2676
2584
  */
2677
- 'payload'?: object | null;
2585
+ 'payload'?: object;
2678
2586
  /**
2679
2587
  *
2680
2588
  * @type {string}
2681
2589
  * @memberof OrderPayData
2682
2590
  */
2683
- 'content_type'?: string | null;
2591
+ 'content_type'?: string;
2684
2592
  /**
2685
2593
  *
2686
2594
  * @type {string}
2687
2595
  * @memberof OrderPayData
2688
2596
  */
2689
- 'method'?: string | null;
2597
+ 'method'?: string;
2690
2598
  }
2691
2599
  /**
2692
2600
  * Order Pay response once you create a transaction for that order
@@ -2979,7 +2887,7 @@ export interface PaymentEntity {
2979
2887
  * @type {AuthorizationInPaymentsEntity}
2980
2888
  * @memberof PaymentEntity
2981
2889
  */
2982
- 'authorization'?: AuthorizationInPaymentsEntity | null;
2890
+ 'authorization'?: AuthorizationInPaymentsEntity;
2983
2891
  /**
2984
2892
  *
2985
2893
  * @type {PaymentMethodInPaymentsEntity}
@@ -3333,7 +3241,7 @@ export interface ReconEntity {
3333
3241
  * @type {string}
3334
3242
  * @memberof ReconEntity
3335
3243
  */
3336
- 'cursor'?: string | null;
3244
+ 'cursor'?: string;
3337
3245
  /**
3338
3246
  * Number of settlements you want to fetch in the next iteration.
3339
3247
  * @type {number}
@@ -3382,13 +3290,13 @@ export interface ReconEntityDataInner {
3382
3290
  * @type {string}
3383
3291
  * @memberof ReconEntityDataInner
3384
3292
  */
3385
- 'sale_type'?: string | null;
3293
+ 'sale_type'?: string;
3386
3294
  /**
3387
3295
  * Status of the event. Example - SUCCESS, FAILED, PENDING, CANCELLED.
3388
3296
  * @type {string}
3389
3297
  * @memberof ReconEntityDataInner
3390
3298
  */
3391
- 'event_status'?: string | null;
3299
+ 'event_status'?: string;
3392
3300
  /**
3393
3301
  * Recon
3394
3302
  * @type {string}
@@ -3406,235 +3314,235 @@ export interface ReconEntityDataInner {
3406
3314
  * @type {string}
3407
3315
  * @memberof ReconEntityDataInner
3408
3316
  */
3409
- 'event_currency'?: string | null;
3317
+ 'event_currency'?: string;
3410
3318
  /**
3411
3319
  * Unique order ID. Alphanumeric and only \'-\' and \'_\' allowed.
3412
3320
  * @type {string}
3413
3321
  * @memberof ReconEntityDataInner
3414
3322
  */
3415
- 'order_id'?: string | null;
3323
+ 'order_id'?: string;
3416
3324
  /**
3417
3325
  * The amount which was passed at the order creation time.
3418
3326
  * @type {number}
3419
3327
  * @memberof ReconEntityDataInner
3420
3328
  */
3421
- 'order_amount'?: number | null;
3329
+ 'order_amount'?: number;
3422
3330
  /**
3423
3331
  * Customer phone number.
3424
3332
  * @type {string}
3425
3333
  * @memberof ReconEntityDataInner
3426
3334
  */
3427
- 'customer_phone'?: string | null;
3335
+ 'customer_phone'?: string;
3428
3336
  /**
3429
3337
  * Customer email.
3430
3338
  * @type {string}
3431
3339
  * @memberof ReconEntityDataInner
3432
3340
  */
3433
- 'customer_email'?: string | null;
3341
+ 'customer_email'?: string;
3434
3342
  /**
3435
3343
  * Customer name.
3436
3344
  * @type {string}
3437
3345
  * @memberof ReconEntityDataInner
3438
3346
  */
3439
- 'customer_name'?: string | null;
3347
+ 'customer_name'?: string;
3440
3348
  /**
3441
3349
  * Payment amount captured.
3442
3350
  * @type {number}
3443
3351
  * @memberof ReconEntityDataInner
3444
3352
  */
3445
- 'payment_amount'?: number | null;
3353
+ 'payment_amount'?: number;
3446
3354
  /**
3447
3355
  * Unique transaction reference number of the payment.
3448
3356
  * @type {string}
3449
3357
  * @memberof ReconEntityDataInner
3450
3358
  */
3451
- 'payment_utr'?: string | null;
3359
+ 'payment_utr'?: string;
3452
3360
  /**
3453
3361
  * Date and time when the payment was initiated.
3454
3362
  * @type {string}
3455
3363
  * @memberof ReconEntityDataInner
3456
3364
  */
3457
- 'payment_time'?: string | null;
3365
+ 'payment_time'?: string;
3458
3366
  /**
3459
3367
  * Service charge applicable for the payment.
3460
3368
  * @type {number}
3461
3369
  * @memberof ReconEntityDataInner
3462
3370
  */
3463
- 'payment_service_charge'?: number | null;
3371
+ 'payment_service_charge'?: number;
3464
3372
  /**
3465
3373
  * Service tax applicable on the payment.
3466
3374
  * @type {number}
3467
3375
  * @memberof ReconEntityDataInner
3468
3376
  */
3469
- 'payment_service_tax'?: number | null;
3377
+ 'payment_service_tax'?: number;
3470
3378
  /**
3471
3379
  * Cashfree Payments unique ID to identify a payment.
3472
3380
  * @type {number}
3473
3381
  * @memberof ReconEntityDataInner
3474
3382
  */
3475
- 'cf_payment_id'?: number | null;
3383
+ 'cf_payment_id'?: number;
3476
3384
  /**
3477
3385
  * Unique ID to identify the settlement.
3478
3386
  * @type {number}
3479
3387
  * @memberof ReconEntityDataInner
3480
3388
  */
3481
- 'cf_settlement_id'?: number | null;
3389
+ 'cf_settlement_id'?: number;
3482
3390
  /**
3483
3391
  * Date and time when the settlement was processed.
3484
3392
  * @type {string}
3485
3393
  * @memberof ReconEntityDataInner
3486
3394
  */
3487
- 'settlement_date'?: string | null;
3395
+ 'settlement_date'?: string;
3488
3396
  /**
3489
3397
  * Unique transaction reference number of the settlement.
3490
3398
  * @type {string}
3491
3399
  * @memberof ReconEntityDataInner
3492
3400
  */
3493
- 'settlement_utr'?: string | null;
3401
+ 'settlement_utr'?: string;
3494
3402
  /**
3495
3403
  * Service charge that is applicable for splitting the payment.
3496
3404
  * @type {number}
3497
3405
  * @memberof ReconEntityDataInner
3498
3406
  */
3499
- 'split_service_charge'?: number | null;
3407
+ 'split_service_charge'?: number;
3500
3408
  /**
3501
3409
  * Service tax applicable for splitting the amount to vendors.
3502
3410
  * @type {number}
3503
3411
  * @memberof ReconEntityDataInner
3504
3412
  */
3505
- 'split_service_tax'?: number | null;
3413
+ 'split_service_tax'?: number;
3506
3414
  /**
3507
3415
  * Vendor commission applicable for this transaction.
3508
3416
  * @type {number}
3509
3417
  * @memberof ReconEntityDataInner
3510
3418
  */
3511
- 'vendor_commission'?: number | null;
3419
+ 'vendor_commission'?: number;
3512
3420
  /**
3513
3421
  * Specifies whether the dispute was closed in favor of the merchant or customer. /n Possible values - Merchant, Customer
3514
3422
  * @type {string}
3515
3423
  * @memberof ReconEntityDataInner
3516
3424
  */
3517
- 'closed_in_favor_of'?: string | null;
3425
+ 'closed_in_favor_of'?: string;
3518
3426
  /**
3519
3427
  * Date and time when the dispute was resolved.
3520
3428
  * @type {string}
3521
3429
  * @memberof ReconEntityDataInner
3522
3430
  */
3523
- 'dispute_resolved_on'?: string | null;
3431
+ 'dispute_resolved_on'?: string;
3524
3432
  /**
3525
3433
  * Category of the dispute - Dispute code and the reason for dispute is shown.
3526
3434
  * @type {string}
3527
3435
  * @memberof ReconEntityDataInner
3528
3436
  */
3529
- 'dispute_category'?: string | null;
3437
+ 'dispute_category'?: string;
3530
3438
  /**
3531
3439
  * Note regarding the dispute.
3532
3440
  * @type {string}
3533
3441
  * @memberof ReconEntityDataInner
3534
3442
  */
3535
- 'dispute_note'?: string | null;
3443
+ 'dispute_note'?: string;
3536
3444
  /**
3537
3445
  * Date and time when the refund was processed.
3538
3446
  * @type {string}
3539
3447
  * @memberof ReconEntityDataInner
3540
3448
  */
3541
- 'refund_processed_at'?: string | null;
3449
+ 'refund_processed_at'?: string;
3542
3450
  /**
3543
3451
  * The bank reference number for the refund.
3544
3452
  * @type {string}
3545
3453
  * @memberof ReconEntityDataInner
3546
3454
  */
3547
- 'refund_arn'?: string | null;
3455
+ 'refund_arn'?: string;
3548
3456
  /**
3549
3457
  * A refund note for your reference.
3550
3458
  * @type {string}
3551
3459
  * @memberof ReconEntityDataInner
3552
3460
  */
3553
- 'refund_note'?: string | null;
3461
+ 'refund_note'?: string;
3554
3462
  /**
3555
3463
  * An unique ID to associate the refund with.
3556
3464
  * @type {string}
3557
3465
  * @memberof ReconEntityDataInner
3558
3466
  */
3559
- 'refund_id'?: string | null;
3467
+ 'refund_id'?: string;
3560
3468
  /**
3561
3469
  * Other adjustment remarks.
3562
3470
  * @type {string}
3563
3471
  * @memberof ReconEntityDataInner
3564
3472
  */
3565
- 'adjustment_remarks'?: string | null;
3473
+ 'adjustment_remarks'?: string;
3566
3474
  /**
3567
3475
  * Amount that is adjusted from the settlement amount because of any credit/debit event such as refund, refund_reverse etc.
3568
3476
  * @type {number}
3569
3477
  * @memberof ReconEntityDataInner
3570
3478
  */
3571
- 'adjustment'?: number | null;
3479
+ 'adjustment'?: number;
3572
3480
  /**
3573
3481
  * Service tax applicable on the settlement amount.
3574
3482
  * @type {number}
3575
3483
  * @memberof ReconEntityDataInner
3576
3484
  */
3577
- 'service_tax'?: number | null;
3485
+ 'service_tax'?: number;
3578
3486
  /**
3579
3487
  * Service charge applicable on the settlement amount.
3580
3488
  * @type {number}
3581
3489
  * @memberof ReconEntityDataInner
3582
3490
  */
3583
- 'service_charge'?: number | null;
3491
+ 'service_charge'?: number;
3584
3492
  /**
3585
3493
  * Net amount that is settled after considering the adjustments, settlement charge and tax.
3586
3494
  * @type {number}
3587
3495
  * @memberof ReconEntityDataInner
3588
3496
  */
3589
- 'amount_settled'?: number | null;
3497
+ 'amount_settled'?: number;
3590
3498
  /**
3591
3499
  * The start time of the time range of the payments considered for the settlement.
3592
3500
  * @type {string}
3593
3501
  * @memberof ReconEntityDataInner
3594
3502
  */
3595
- 'payment_from'?: string | null;
3503
+ 'payment_from'?: string;
3596
3504
  /**
3597
3505
  * The end time of time range of the payments considered for the settlement.
3598
3506
  * @type {string}
3599
3507
  * @memberof ReconEntityDataInner
3600
3508
  */
3601
- 'payment_till'?: string | null;
3509
+ 'payment_till'?: string;
3602
3510
  /**
3603
3511
  * Reason for settlement failure.
3604
3512
  * @type {string}
3605
3513
  * @memberof ReconEntityDataInner
3606
3514
  */
3607
- 'reason'?: string | null;
3515
+ 'reason'?: string;
3608
3516
  /**
3609
3517
  * Date and time when the settlement was initiated.
3610
3518
  * @type {string}
3611
3519
  * @memberof ReconEntityDataInner
3612
3520
  */
3613
- 'settlement_initiated_on'?: string | null;
3521
+ 'settlement_initiated_on'?: string;
3614
3522
  /**
3615
3523
  * Type of settlement. Possible values - Standard, Instant, On demand.
3616
3524
  * @type {string}
3617
3525
  * @memberof ReconEntityDataInner
3618
3526
  */
3619
- 'settlement_type'?: string | null;
3527
+ 'settlement_type'?: string;
3620
3528
  /**
3621
3529
  * Settlement charges applicable on the settlement.
3622
3530
  * @type {number}
3623
3531
  * @memberof ReconEntityDataInner
3624
3532
  */
3625
- 'settlement_charge'?: number | null;
3533
+ 'settlement_charge'?: number;
3626
3534
  /**
3627
3535
  * Settlement tax applicable on the settlement.
3628
3536
  * @type {number}
3629
3537
  * @memberof ReconEntityDataInner
3630
3538
  */
3631
- 'settlement_tax'?: number | null;
3539
+ 'settlement_tax'?: number;
3632
3540
  /**
3633
3541
  * Remarks on the settlement.
3634
3542
  * @type {string}
3635
3543
  * @memberof ReconEntityDataInner
3636
3544
  */
3637
- 'remarks'?: string | null;
3545
+ 'remarks'?: string;
3638
3546
  }
3639
3547
  /**
3640
3548
  * The refund entity
@@ -3719,7 +3627,7 @@ export interface RefundEntity {
3719
3627
  * @type {object}
3720
3628
  * @memberof RefundEntity
3721
3629
  */
3722
- 'metadata'?: object | null;
3630
+ 'metadata'?: object;
3723
3631
  /**
3724
3632
  *
3725
3633
  * @type {Array<VendorSplit>}
@@ -3868,7 +3776,7 @@ export interface SavedInstrumentMeta {
3868
3776
  * @type {object}
3869
3777
  * @memberof SavedInstrumentMeta
3870
3778
  */
3871
- 'card_token_details'?: object | null;
3779
+ 'card_token_details'?: object;
3872
3780
  }
3873
3781
  /**
3874
3782
  * Settlement entity object
@@ -4656,7 +4564,7 @@ export interface WHorder {
4656
4564
  * @type {{ [key: string]: string; }}
4657
4565
  * @memberof WHorder
4658
4566
  */
4659
- 'order_tags'?: { [key: string]: string; } | null;
4567
+ 'order_tags'?: { [key: string]: string; };
4660
4568
  }
4661
4569
  /**
4662
4570
  *
@@ -4685,7 +4593,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4685
4593
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
4686
4594
  * @param {EligibilityFetchCardlessEMIRequest} EligibilityFetchCardlessEMIRequest Request Body to get eligible cardless emi options for a customer and order
4687
4595
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
4688
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
4596
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
4689
4597
  * @param {*} [options] Override http request option.
4690
4598
  * @throws {RequiredError}
4691
4599
  * x_idempotency_key?: string,
@@ -4730,7 +4638,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4730
4638
 
4731
4639
  localVarHeaderParameter['Content-Type'] = 'application/json';
4732
4640
 
4733
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
4641
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
4734
4642
  if (x_api_version != null && x_api_version != undefined) {
4735
4643
  localVarHeaderParameter['x-api-version'] = x_api_version;
4736
4644
  }
@@ -4759,7 +4667,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4759
4667
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
4760
4668
  * @param {EligibilityFetchOffersRequest} EligibilityFetchOffersRequest Request Body to get eligible offers for a customer and order
4761
4669
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
4762
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
4670
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
4763
4671
  * @param {*} [options] Override http request option.
4764
4672
  * @throws {RequiredError}
4765
4673
  * x_idempotency_key?: string,
@@ -4804,7 +4712,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4804
4712
 
4805
4713
  localVarHeaderParameter['Content-Type'] = 'application/json';
4806
4714
 
4807
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
4715
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
4808
4716
  if (x_api_version != null && x_api_version != undefined) {
4809
4717
  localVarHeaderParameter['x-api-version'] = x_api_version;
4810
4718
  }
@@ -4833,7 +4741,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4833
4741
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
4834
4742
  * @param {EligibilityFetchPaylaterRequest} EligibilityFetchPaylaterRequest Request Body to get eligible paylater options for a customer and order
4835
4743
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
4836
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
4744
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
4837
4745
  * @param {*} [options] Override http request option.
4838
4746
  * @throws {RequiredError}
4839
4747
  * x_idempotency_key?: string,
@@ -4878,7 +4786,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4878
4786
 
4879
4787
  localVarHeaderParameter['Content-Type'] = 'application/json';
4880
4788
 
4881
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
4789
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
4882
4790
  if (x_api_version != null && x_api_version != undefined) {
4883
4791
  localVarHeaderParameter['x-api-version'] = x_api_version;
4884
4792
  }
@@ -4907,7 +4815,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4907
4815
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
4908
4816
  * @param {EligibilityFetchPaymentMethodsRequest} EligibilityFetchPaymentMethodsRequest Request Body to get eligible payment methods for an account and order
4909
4817
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
4910
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
4818
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
4911
4819
  * @param {*} [options] Override http request option.
4912
4820
  * @throws {RequiredError}
4913
4821
  * x_idempotency_key?: string,
@@ -4952,7 +4860,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4952
4860
 
4953
4861
  localVarHeaderParameter['Content-Type'] = 'application/json';
4954
4862
 
4955
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
4863
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
4956
4864
  if (x_api_version != null && x_api_version != undefined) {
4957
4865
  localVarHeaderParameter['x-api-version'] = x_api_version;
4958
4866
  }
@@ -4990,7 +4898,7 @@ const EligibilityApiFp = function(configuration?: Configuration) {
4990
4898
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
4991
4899
  * @param {EligibilityFetchCardlessEMIRequest} EligibilityFetchCardlessEMIRequest Request Body to get eligible cardless emi options for a customer and order
4992
4900
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
4993
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
4901
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
4994
4902
  * @param {*} [options] Override http request option.
4995
4903
  * @throws {RequiredError}
4996
4904
  */
@@ -5008,7 +4916,7 @@ const EligibilityApiFp = function(configuration?: Configuration) {
5008
4916
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5009
4917
  * @param {EligibilityFetchOffersRequest} EligibilityFetchOffersRequest Request Body to get eligible offers for a customer and order
5010
4918
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5011
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
4919
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5012
4920
  * @param {*} [options] Override http request option.
5013
4921
  * @throws {RequiredError}
5014
4922
  */
@@ -5026,7 +4934,7 @@ const EligibilityApiFp = function(configuration?: Configuration) {
5026
4934
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5027
4935
  * @param {EligibilityFetchPaylaterRequest} EligibilityFetchPaylaterRequest Request Body to get eligible paylater options for a customer and order
5028
4936
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5029
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
4937
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5030
4938
  * @param {*} [options] Override http request option.
5031
4939
  * @throws {RequiredError}
5032
4940
  */
@@ -5044,7 +4952,7 @@ const EligibilityApiFp = function(configuration?: Configuration) {
5044
4952
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5045
4953
  * @param {EligibilityFetchPaymentMethodsRequest} EligibilityFetchPaymentMethodsRequest Request Body to get eligible payment methods for an account and order
5046
4954
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5047
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
4955
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5048
4956
  * @param {*} [options] Override http request option.
5049
4957
  * @throws {RequiredError}
5050
4958
  */
@@ -5081,7 +4989,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
5081
4989
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5082
4990
  * @param {CreateOfferRequest} CreateOfferRequest Request body to create an offer at Cashfree
5083
4991
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5084
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
4992
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5085
4993
  * @param {*} [options] Override http request option.
5086
4994
  * @throws {RequiredError}
5087
4995
  * x_idempotency_key?: string,
@@ -5126,7 +5034,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
5126
5034
 
5127
5035
  localVarHeaderParameter['Content-Type'] = 'application/json';
5128
5036
 
5129
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5037
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
5130
5038
  if (x_api_version != null && x_api_version != undefined) {
5131
5039
  localVarHeaderParameter['x-api-version'] = x_api_version;
5132
5040
  }
@@ -5155,7 +5063,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
5155
5063
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5156
5064
  * @param {string} offer_id The offer ID for which you want to view the offer details.
5157
5065
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5158
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5066
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5159
5067
  * @param {*} [options] Override http request option.
5160
5068
  * @throws {RequiredError}
5161
5069
  * x_idempotency_key?: string,
@@ -5199,7 +5107,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
5199
5107
 
5200
5108
 
5201
5109
 
5202
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5110
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
5203
5111
  if (x_api_version != null && x_api_version != undefined) {
5204
5112
  localVarHeaderParameter['x-api-version'] = x_api_version;
5205
5113
  }
@@ -5236,7 +5144,7 @@ const OffersApiFp = function(configuration?: Configuration) {
5236
5144
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5237
5145
  * @param {CreateOfferRequest} CreateOfferRequest Request body to create an offer at Cashfree
5238
5146
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5239
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5147
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5240
5148
  * @param {*} [options] Override http request option.
5241
5149
  * @throws {RequiredError}
5242
5150
  */
@@ -5254,7 +5162,7 @@ const OffersApiFp = function(configuration?: Configuration) {
5254
5162
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5255
5163
  * @param {string} offer_id The offer ID for which you want to view the offer details.
5256
5164
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5257
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5165
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5258
5166
  * @param {*} [options] Override http request option.
5259
5167
  * @throws {RequiredError}
5260
5168
  */
@@ -5291,7 +5199,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
5291
5199
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5292
5200
  * @param {CreateOrderRequest} CreateOrderRequest Request body to create an order at cashfree
5293
5201
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5294
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5202
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5295
5203
  * @param {*} [options] Override http request option.
5296
5204
  * @throws {RequiredError}
5297
5205
  * x_idempotency_key?: string,
@@ -5336,7 +5244,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
5336
5244
 
5337
5245
  localVarHeaderParameter['Content-Type'] = 'application/json';
5338
5246
 
5339
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5247
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
5340
5248
  if (x_api_version != null && x_api_version != undefined) {
5341
5249
  localVarHeaderParameter['x-api-version'] = x_api_version;
5342
5250
  }
@@ -5365,7 +5273,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
5365
5273
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5366
5274
  * @param {string} order_id The id which uniquely identifies your order
5367
5275
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5368
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5276
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5369
5277
  * @param {*} [options] Override http request option.
5370
5278
  * @throws {RequiredError}
5371
5279
  * x_idempotency_key?: string,
@@ -5409,7 +5317,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
5409
5317
 
5410
5318
 
5411
5319
 
5412
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5320
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
5413
5321
  if (x_api_version != null && x_api_version != undefined) {
5414
5322
  localVarHeaderParameter['x-api-version'] = x_api_version;
5415
5323
  }
@@ -5446,7 +5354,7 @@ const OrdersApiFp = function(configuration?: Configuration) {
5446
5354
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5447
5355
  * @param {CreateOrderRequest} CreateOrderRequest Request body to create an order at cashfree
5448
5356
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5449
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5357
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5450
5358
  * @param {*} [options] Override http request option.
5451
5359
  * @throws {RequiredError}
5452
5360
  */
@@ -5464,7 +5372,7 @@ const OrdersApiFp = function(configuration?: Configuration) {
5464
5372
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5465
5373
  * @param {string} order_id The id which uniquely identifies your order
5466
5374
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5467
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5375
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5468
5376
  * @param {*} [options] Override http request option.
5469
5377
  * @throws {RequiredError}
5470
5378
  */
@@ -5502,7 +5410,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura
5502
5410
  * @param {FetchReconRequest} FetchReconRequest Request Body for the reconciliation
5503
5411
  * @param {string} [Content_Type] application/json
5504
5412
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5505
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5413
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5506
5414
  * @param {string} [Accept] application/json
5507
5415
  * @param {*} [options] Override http request option.
5508
5416
  * @throws {RequiredError}
@@ -5548,7 +5456,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura
5548
5456
 
5549
5457
  localVarHeaderParameter['Content-Type'] = 'application/json';
5550
5458
 
5551
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5459
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
5552
5460
  if (x_api_version != null && x_api_version != undefined) {
5553
5461
  localVarHeaderParameter['x-api-version'] = x_api_version;
5554
5462
  }
@@ -5587,7 +5495,7 @@ const PGReconciliationApiFp = function(configuration?: Configuration) {
5587
5495
  * @param {FetchReconRequest} FetchReconRequest Request Body for the reconciliation
5588
5496
  * @param {string} [Content_Type] application/json
5589
5497
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5590
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5498
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5591
5499
  * @param {string} [Accept] application/json
5592
5500
  * @param {*} [options] Override http request option.
5593
5501
  * @throws {RequiredError}
@@ -5625,7 +5533,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5625
5533
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5626
5534
  * @param {string} link_id The payment link ID for which you want to view the details.
5627
5535
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5628
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5536
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5629
5537
  * @param {*} [options] Override http request option.
5630
5538
  * @throws {RequiredError}
5631
5539
  * x_idempotency_key?: string,
@@ -5669,7 +5577,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5669
5577
 
5670
5578
 
5671
5579
 
5672
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5580
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
5673
5581
  if (x_api_version != null && x_api_version != undefined) {
5674
5582
  localVarHeaderParameter['x-api-version'] = x_api_version;
5675
5583
  }
@@ -5697,7 +5605,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5697
5605
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5698
5606
  * @param {CreateLinkRequest} CreateLinkRequest Request Body to Create Payment Links
5699
5607
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5700
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5608
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5701
5609
  * @param {*} [options] Override http request option.
5702
5610
  * @throws {RequiredError}
5703
5611
  * x_idempotency_key?: string,
@@ -5742,7 +5650,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5742
5650
 
5743
5651
  localVarHeaderParameter['Content-Type'] = 'application/json';
5744
5652
 
5745
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5653
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
5746
5654
  if (x_api_version != null && x_api_version != undefined) {
5747
5655
  localVarHeaderParameter['x-api-version'] = x_api_version;
5748
5656
  }
@@ -5771,7 +5679,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5771
5679
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5772
5680
  * @param {string} link_id The payment link ID for which you want to view the details.
5773
5681
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5774
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5682
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5775
5683
  * @param {*} [options] Override http request option.
5776
5684
  * @throws {RequiredError}
5777
5685
  * x_idempotency_key?: string,
@@ -5815,7 +5723,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5815
5723
 
5816
5724
 
5817
5725
 
5818
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5726
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
5819
5727
  if (x_api_version != null && x_api_version != undefined) {
5820
5728
  localVarHeaderParameter['x-api-version'] = x_api_version;
5821
5729
  }
@@ -5843,7 +5751,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5843
5751
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5844
5752
  * @param {string} link_id The payment link ID for which you want to view the details.
5845
5753
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5846
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5754
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5847
5755
  * @param {*} [options] Override http request option.
5848
5756
  * @throws {RequiredError}
5849
5757
  * x_idempotency_key?: string,
@@ -5887,7 +5795,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5887
5795
 
5888
5796
 
5889
5797
 
5890
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5798
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
5891
5799
  if (x_api_version != null && x_api_version != undefined) {
5892
5800
  localVarHeaderParameter['x-api-version'] = x_api_version;
5893
5801
  }
@@ -5924,7 +5832,7 @@ const PaymentLinksApiFp = function(configuration?: Configuration) {
5924
5832
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5925
5833
  * @param {string} link_id The payment link ID for which you want to view the details.
5926
5834
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5927
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5835
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5928
5836
  * @param {*} [options] Override http request option.
5929
5837
  * @throws {RequiredError}
5930
5838
  */
@@ -5942,7 +5850,7 @@ const PaymentLinksApiFp = function(configuration?: Configuration) {
5942
5850
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5943
5851
  * @param {CreateLinkRequest} CreateLinkRequest Request Body to Create Payment Links
5944
5852
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5945
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5853
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5946
5854
  * @param {*} [options] Override http request option.
5947
5855
  * @throws {RequiredError}
5948
5856
  */
@@ -5960,7 +5868,7 @@ const PaymentLinksApiFp = function(configuration?: Configuration) {
5960
5868
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5961
5869
  * @param {string} link_id The payment link ID for which you want to view the details.
5962
5870
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5963
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5871
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5964
5872
  * @param {*} [options] Override http request option.
5965
5873
  * @throws {RequiredError}
5966
5874
  */
@@ -5978,7 +5886,7 @@ const PaymentLinksApiFp = function(configuration?: Configuration) {
5978
5886
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
5979
5887
  * @param {string} link_id The payment link ID for which you want to view the details.
5980
5888
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
5981
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5889
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
5982
5890
  * @param {*} [options] Override http request option.
5983
5891
  * @throws {RequiredError}
5984
5892
  */
@@ -6016,7 +5924,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6016
5924
  * @param {string} order_id The id which uniquely identifies your order
6017
5925
  * @param {AuthorizeOrderRequest} AuthorizeOrderRequest Request to Capture or Void Transactions
6018
5926
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6019
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
5927
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6020
5928
  * @param {*} [options] Override http request option.
6021
5929
  * @throws {RequiredError}
6022
5930
  * x_request_id?: string,
@@ -6064,7 +5972,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6064
5972
 
6065
5973
  localVarHeaderParameter['Content-Type'] = 'application/json';
6066
5974
 
6067
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
5975
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6068
5976
  if (x_api_version != null && x_api_version != undefined) {
6069
5977
  localVarHeaderParameter['x-api-version'] = x_api_version;
6070
5978
  }
@@ -6094,7 +6002,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6094
6002
  * @param {string} cf_payment_id The Cashfree payment or transaction ID.
6095
6003
  * @param {OrderAuthenticatePaymentRequest} OrderAuthenticatePaymentRequest Request body to submit/resend headless OTP. To use this API make sure you have headless OTP enabled for your account
6096
6004
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6097
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6005
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6098
6006
  * @param {*} [options] Override http request option.
6099
6007
  * @throws {RequiredError}
6100
6008
  * x_request_id?: string,
@@ -6127,7 +6035,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6127
6035
 
6128
6036
  localVarHeaderParameter['Content-Type'] = 'application/json';
6129
6037
 
6130
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6038
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6131
6039
  if (x_api_version != null && x_api_version != undefined) {
6132
6040
  localVarHeaderParameter['x-api-version'] = x_api_version;
6133
6041
  }
@@ -6157,7 +6065,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6157
6065
  * @param {string} order_id The id which uniquely identifies your order
6158
6066
  * @param {string} cf_payment_id The Cashfree payment or transaction ID.
6159
6067
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6160
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6068
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6161
6069
  * @param {*} [options] Override http request option.
6162
6070
  * @throws {RequiredError}
6163
6071
  * x_request_id?: string,
@@ -6204,7 +6112,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6204
6112
 
6205
6113
 
6206
6114
 
6207
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6115
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6208
6116
  if (x_api_version != null && x_api_version != undefined) {
6209
6117
  localVarHeaderParameter['x-api-version'] = x_api_version;
6210
6118
  }
@@ -6232,7 +6140,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6232
6140
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
6233
6141
  * @param {string} order_id The id which uniquely identifies your order
6234
6142
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6235
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6143
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6236
6144
  * @param {*} [options] Override http request option.
6237
6145
  * @throws {RequiredError}
6238
6146
  * x_idempotency_key?: string,
@@ -6276,7 +6184,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6276
6184
 
6277
6185
 
6278
6186
 
6279
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6187
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6280
6188
  if (x_api_version != null && x_api_version != undefined) {
6281
6189
  localVarHeaderParameter['x-api-version'] = x_api_version;
6282
6190
  }
@@ -6304,7 +6212,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6304
6212
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
6305
6213
  * @param {PayOrderRequest} PayOrderRequest Request body to create a transaction at cashfree using &#x60;payment_session_id&#x60;
6306
6214
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6307
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6215
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6308
6216
  * @param {*} [options] Override http request option.
6309
6217
  * @throws {RequiredError}
6310
6218
  * x_idempotency_key?: string,
@@ -6334,7 +6242,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6334
6242
 
6335
6243
  localVarHeaderParameter['Content-Type'] = 'application/json';
6336
6244
 
6337
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6245
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6338
6246
  if (x_api_version != null && x_api_version != undefined) {
6339
6247
  localVarHeaderParameter['x-api-version'] = x_api_version;
6340
6248
  }
@@ -6373,7 +6281,7 @@ const PaymentsApiFp = function(configuration?: Configuration) {
6373
6281
  * @param {string} order_id The id which uniquely identifies your order
6374
6282
  * @param {AuthorizeOrderRequest} AuthorizeOrderRequest Request to Capture or Void Transactions
6375
6283
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6376
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6284
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6377
6285
  * @param {*} [options] Override http request option.
6378
6286
  * @throws {RequiredError}
6379
6287
  */
@@ -6392,7 +6300,7 @@ const PaymentsApiFp = function(configuration?: Configuration) {
6392
6300
  * @param {string} cf_payment_id The Cashfree payment or transaction ID.
6393
6301
  * @param {OrderAuthenticatePaymentRequest} OrderAuthenticatePaymentRequest Request body to submit/resend headless OTP. To use this API make sure you have headless OTP enabled for your account
6394
6302
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6395
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6303
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6396
6304
  * @param {*} [options] Override http request option.
6397
6305
  * @throws {RequiredError}
6398
6306
  */
@@ -6411,7 +6319,7 @@ const PaymentsApiFp = function(configuration?: Configuration) {
6411
6319
  * @param {string} order_id The id which uniquely identifies your order
6412
6320
  * @param {string} cf_payment_id The Cashfree payment or transaction ID.
6413
6321
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6414
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6322
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6415
6323
  * @param {*} [options] Override http request option.
6416
6324
  * @throws {RequiredError}
6417
6325
  */
@@ -6429,7 +6337,7 @@ const PaymentsApiFp = function(configuration?: Configuration) {
6429
6337
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
6430
6338
  * @param {string} order_id The id which uniquely identifies your order
6431
6339
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6432
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6340
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6433
6341
  * @param {*} [options] Override http request option.
6434
6342
  * @throws {RequiredError}
6435
6343
  */
@@ -6447,7 +6355,7 @@ const PaymentsApiFp = function(configuration?: Configuration) {
6447
6355
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
6448
6356
  * @param {PayOrderRequest} PayOrderRequest Request body to create a transaction at cashfree using &#x60;payment_session_id&#x60;
6449
6357
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6450
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6358
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6451
6359
  * @param {*} [options] Override http request option.
6452
6360
  * @throws {RequiredError}
6453
6361
  */
@@ -6485,7 +6393,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6485
6393
  * @param {string} order_id The id which uniquely identifies your order
6486
6394
  * @param {OrderCreateRefundRequest} OrderCreateRefundRequest Request Body to Create Refunds
6487
6395
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6488
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6396
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6489
6397
  * @param {*} [options] Override http request option.
6490
6398
  * @throws {RequiredError}
6491
6399
  * x_request_id?: string,
@@ -6533,7 +6441,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6533
6441
 
6534
6442
  localVarHeaderParameter['Content-Type'] = 'application/json';
6535
6443
 
6536
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6444
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6537
6445
  if (x_api_version != null && x_api_version != undefined) {
6538
6446
  localVarHeaderParameter['x-api-version'] = x_api_version;
6539
6447
  }
@@ -6563,7 +6471,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6563
6471
  * @param {string} order_id The id which uniquely identifies your order
6564
6472
  * @param {string} refund_id Refund Id of the refund you want to fetch.
6565
6473
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6566
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6474
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6567
6475
  * @param {*} [options] Override http request option.
6568
6476
  * @throws {RequiredError}
6569
6477
  * x_request_id?: string,
@@ -6610,7 +6518,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6610
6518
 
6611
6519
 
6612
6520
 
6613
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6521
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6614
6522
  if (x_api_version != null && x_api_version != undefined) {
6615
6523
  localVarHeaderParameter['x-api-version'] = x_api_version;
6616
6524
  }
@@ -6638,7 +6546,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6638
6546
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
6639
6547
  * @param {string} order_id The id which uniquely identifies your order
6640
6548
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6641
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6549
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6642
6550
  * @param {*} [options] Override http request option.
6643
6551
  * @throws {RequiredError}
6644
6552
  * x_idempotency_key?: string,
@@ -6682,7 +6590,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6682
6590
 
6683
6591
 
6684
6592
 
6685
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6593
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6686
6594
  if (x_api_version != null && x_api_version != undefined) {
6687
6595
  localVarHeaderParameter['x-api-version'] = x_api_version;
6688
6596
  }
@@ -6720,7 +6628,7 @@ const RefundsApiFp = function(configuration?: Configuration) {
6720
6628
  * @param {string} order_id The id which uniquely identifies your order
6721
6629
  * @param {OrderCreateRefundRequest} OrderCreateRefundRequest Request Body to Create Refunds
6722
6630
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6723
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6631
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6724
6632
  * @param {*} [options] Override http request option.
6725
6633
  * @throws {RequiredError}
6726
6634
  */
@@ -6739,7 +6647,7 @@ const RefundsApiFp = function(configuration?: Configuration) {
6739
6647
  * @param {string} order_id The id which uniquely identifies your order
6740
6648
  * @param {string} refund_id Refund Id of the refund you want to fetch.
6741
6649
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6742
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6650
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6743
6651
  * @param {*} [options] Override http request option.
6744
6652
  * @throws {RequiredError}
6745
6653
  */
@@ -6757,7 +6665,7 @@ const RefundsApiFp = function(configuration?: Configuration) {
6757
6665
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
6758
6666
  * @param {string} order_id The id which uniquely identifies your order
6759
6667
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6760
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6668
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6761
6669
  * @param {*} [options] Override http request option.
6762
6670
  * @throws {RequiredError}
6763
6671
  */
@@ -6795,7 +6703,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
6795
6703
  * @param {FetchSettlementsRequest} FetchSettlementsRequest Request Body to get the settlements
6796
6704
  * @param {string} [Content_Type] application/json
6797
6705
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6798
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6706
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6799
6707
  * @param {string} [Accept] application/json
6800
6708
  * @param {*} [options] Override http request option.
6801
6709
  * @throws {RequiredError}
@@ -6841,7 +6749,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
6841
6749
 
6842
6750
  localVarHeaderParameter['Content-Type'] = 'application/json';
6843
6751
 
6844
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6752
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6845
6753
  if (x_api_version != null && x_api_version != undefined) {
6846
6754
  localVarHeaderParameter['x-api-version'] = x_api_version;
6847
6755
  }
@@ -6871,7 +6779,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
6871
6779
  * @param {SettlementFetchReconRequest} SettlementFetchReconRequest Request Body for the settlement reconciliation
6872
6780
  * @param {string} [Content_Type] application/json
6873
6781
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6874
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6782
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6875
6783
  * @param {string} [Accept] application/json
6876
6784
  * @param {*} [options] Override http request option.
6877
6785
  * @throws {RequiredError}
@@ -6917,7 +6825,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
6917
6825
 
6918
6826
  localVarHeaderParameter['Content-Type'] = 'application/json';
6919
6827
 
6920
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6828
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
6921
6829
  if (x_api_version != null && x_api_version != undefined) {
6922
6830
  localVarHeaderParameter['x-api-version'] = x_api_version;
6923
6831
  }
@@ -6956,7 +6864,7 @@ const SettlementReconciliationApiFp = function(configuration?: Configuration) {
6956
6864
  * @param {FetchSettlementsRequest} FetchSettlementsRequest Request Body to get the settlements
6957
6865
  * @param {string} [Content_Type] application/json
6958
6866
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6959
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6867
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6960
6868
  * @param {string} [Accept] application/json
6961
6869
  * @param {*} [options] Override http request option.
6962
6870
  * @throws {RequiredError}
@@ -6976,7 +6884,7 @@ const SettlementReconciliationApiFp = function(configuration?: Configuration) {
6976
6884
  * @param {SettlementFetchReconRequest} SettlementFetchReconRequest Request Body for the settlement reconciliation
6977
6885
  * @param {string} [Content_Type] application/json
6978
6886
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
6979
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6887
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
6980
6888
  * @param {string} [Accept] application/json
6981
6889
  * @param {*} [options] Override http request option.
6982
6890
  * @throws {RequiredError}
@@ -7014,7 +6922,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
7014
6922
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
7015
6923
  * @param {string} order_id The id which uniquely identifies your order
7016
6924
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7017
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
6925
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7018
6926
  * @param {*} [options] Override http request option.
7019
6927
  * @throws {RequiredError}
7020
6928
  * x_idempotency_key?: string,
@@ -7058,7 +6966,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
7058
6966
 
7059
6967
 
7060
6968
 
7061
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
6969
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
7062
6970
  if (x_api_version != null && x_api_version != undefined) {
7063
6971
  localVarHeaderParameter['x-api-version'] = x_api_version;
7064
6972
  }
@@ -7095,7 +7003,7 @@ const SettlementsApiFp = function(configuration?: Configuration) {
7095
7003
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
7096
7004
  * @param {string} order_id The id which uniquely identifies your order
7097
7005
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7098
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7006
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7099
7007
  * @param {*} [options] Override http request option.
7100
7008
  * @throws {RequiredError}
7101
7009
  */
@@ -7132,7 +7040,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7132
7040
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
7133
7041
  * @param {CreateTerminalRequest} CreateTerminalRequest Request Body to Create Terminal for SPOS
7134
7042
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7135
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7043
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7136
7044
  * @param {*} [options] Override http request option.
7137
7045
  * @throws {RequiredError}
7138
7046
  * x_idempotency_key?: string,
@@ -7177,7 +7085,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7177
7085
 
7178
7086
  localVarHeaderParameter['Content-Type'] = 'application/json';
7179
7087
 
7180
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
7088
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
7181
7089
  if (x_api_version != null && x_api_version != undefined) {
7182
7090
  localVarHeaderParameter['x-api-version'] = x_api_version;
7183
7091
  }
@@ -7206,7 +7114,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7206
7114
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
7207
7115
  * @param {CreateTerminalTransactionRequest} CreateTerminalTransactionRequest Request body to create a terminal transaction
7208
7116
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7209
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7117
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7210
7118
  * @param {*} [options] Override http request option.
7211
7119
  * @throws {RequiredError}
7212
7120
  * x_idempotency_key?: string,
@@ -7251,7 +7159,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7251
7159
 
7252
7160
  localVarHeaderParameter['Content-Type'] = 'application/json';
7253
7161
 
7254
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
7162
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
7255
7163
  if (x_api_version != null && x_api_version != undefined) {
7256
7164
  localVarHeaderParameter['x-api-version'] = x_api_version;
7257
7165
  }
@@ -7280,7 +7188,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7280
7188
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
7281
7189
  * @param {string} terminal_phone_no The terminal for which you want to view the order details.
7282
7190
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7283
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7191
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7284
7192
  * @param {*} [options] Override http request option.
7285
7193
  * @throws {RequiredError}
7286
7194
  * x_idempotency_key?: string,
@@ -7324,7 +7232,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7324
7232
 
7325
7233
 
7326
7234
 
7327
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
7235
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
7328
7236
  if (x_api_version != null && x_api_version != undefined) {
7329
7237
  localVarHeaderParameter['x-api-version'] = x_api_version;
7330
7238
  }
@@ -7353,7 +7261,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7353
7261
  * @param {string} terminal_phone_no Phone number assigned to the terminal. Required if you are not providing the cf_terminal_id in the request.
7354
7262
  * @param {string} cf_terminal_id Cashfree terminal id for which you want to get staticQRs. Required if you are not providing the terminal_phone_number in the request.
7355
7263
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7356
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7264
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7357
7265
  * @param {*} [options] Override http request option.
7358
7266
  * @throws {RequiredError}
7359
7267
  * x_request_id?: string,
@@ -7406,7 +7314,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7406
7314
 
7407
7315
 
7408
7316
 
7409
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
7317
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
7410
7318
  if (x_api_version != null && x_api_version != undefined) {
7411
7319
  localVarHeaderParameter['x-api-version'] = x_api_version;
7412
7320
  }
@@ -7443,7 +7351,7 @@ const SoftPOSApiFp = function(configuration?: Configuration) {
7443
7351
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
7444
7352
  * @param {CreateTerminalRequest} CreateTerminalRequest Request Body to Create Terminal for SPOS
7445
7353
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7446
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7354
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7447
7355
  * @param {*} [options] Override http request option.
7448
7356
  * @throws {RequiredError}
7449
7357
  */
@@ -7461,7 +7369,7 @@ const SoftPOSApiFp = function(configuration?: Configuration) {
7461
7369
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
7462
7370
  * @param {CreateTerminalTransactionRequest} CreateTerminalTransactionRequest Request body to create a terminal transaction
7463
7371
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7464
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7372
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7465
7373
  * @param {*} [options] Override http request option.
7466
7374
  * @throws {RequiredError}
7467
7375
  */
@@ -7479,7 +7387,7 @@ const SoftPOSApiFp = function(configuration?: Configuration) {
7479
7387
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
7480
7388
  * @param {string} terminal_phone_no The terminal for which you want to view the order details.
7481
7389
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7482
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7390
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7483
7391
  * @param {*} [options] Override http request option.
7484
7392
  * @throws {RequiredError}
7485
7393
  */
@@ -7498,7 +7406,7 @@ const SoftPOSApiFp = function(configuration?: Configuration) {
7498
7406
  * @param {string} terminal_phone_no Phone number assigned to the terminal. Required if you are not providing the cf_terminal_id in the request.
7499
7407
  * @param {string} cf_terminal_id Cashfree terminal id for which you want to get staticQRs. Required if you are not providing the terminal_phone_number in the request.
7500
7408
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7501
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7409
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7502
7410
  * @param {*} [options] Override http request option.
7503
7411
  * @throws {RequiredError}
7504
7412
  */
@@ -7536,7 +7444,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7536
7444
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
7537
7445
  * @param {string} instrument_id The instrument_id which needs to be deleted
7538
7446
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7539
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7447
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7540
7448
  * @param {*} [options] Override http request option.
7541
7449
  * @throws {RequiredError}
7542
7450
  * x_request_id?: string,
@@ -7583,7 +7491,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7583
7491
 
7584
7492
 
7585
7493
 
7586
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
7494
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
7587
7495
  if (x_api_version != null && x_api_version != undefined) {
7588
7496
  localVarHeaderParameter['x-api-version'] = x_api_version;
7589
7497
  }
@@ -7612,7 +7520,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7612
7520
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
7613
7521
  * @param {string} instrument_id The instrument_id of the saved instrument which needs to be queried
7614
7522
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7615
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7523
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7616
7524
  * @param {*} [options] Override http request option.
7617
7525
  * @throws {RequiredError}
7618
7526
  * x_request_id?: string,
@@ -7659,7 +7567,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7659
7567
 
7660
7568
 
7661
7569
 
7662
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
7570
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
7663
7571
  if (x_api_version != null && x_api_version != undefined) {
7664
7572
  localVarHeaderParameter['x-api-version'] = x_api_version;
7665
7573
  }
@@ -7688,7 +7596,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7688
7596
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
7689
7597
  * @param {PGCustomerFetchInstrumentsInstrumentTypeEnum} instrument_type Payment mode or type of saved instrument
7690
7598
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7691
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7599
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7692
7600
  * @param {*} [options] Override http request option.
7693
7601
  * @throws {RequiredError}
7694
7602
  * x_request_id?: string,
@@ -7738,7 +7646,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7738
7646
 
7739
7647
 
7740
7648
 
7741
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
7649
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
7742
7650
  if (x_api_version != null && x_api_version != undefined) {
7743
7651
  localVarHeaderParameter['x-api-version'] = x_api_version;
7744
7652
  }
@@ -7767,7 +7675,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7767
7675
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
7768
7676
  * @param {string} instrument_id The instrument_id of the saved card instrument which needs to be queried
7769
7677
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7770
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7678
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7771
7679
  * @param {*} [options] Override http request option.
7772
7680
  * @throws {RequiredError}
7773
7681
  * x_request_id?: string,
@@ -7814,7 +7722,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7814
7722
 
7815
7723
 
7816
7724
 
7817
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.0.8';
7725
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.0';
7818
7726
  if (x_api_version != null && x_api_version != undefined) {
7819
7727
  localVarHeaderParameter['x-api-version'] = x_api_version;
7820
7728
  }
@@ -7852,7 +7760,7 @@ const TokenVaultApiFp = function(configuration?: Configuration) {
7852
7760
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
7853
7761
  * @param {string} instrument_id The instrument_id which needs to be deleted
7854
7762
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7855
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7763
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7856
7764
  * @param {*} [options] Override http request option.
7857
7765
  * @throws {RequiredError}
7858
7766
  */
@@ -7871,7 +7779,7 @@ const TokenVaultApiFp = function(configuration?: Configuration) {
7871
7779
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
7872
7780
  * @param {string} instrument_id The instrument_id of the saved instrument which needs to be queried
7873
7781
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7874
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7782
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7875
7783
  * @param {*} [options] Override http request option.
7876
7784
  * @throws {RequiredError}
7877
7785
  */
@@ -7890,7 +7798,7 @@ const TokenVaultApiFp = function(configuration?: Configuration) {
7890
7798
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
7891
7799
  * @param {PGCustomerFetchInstrumentsInstrumentTypeEnum} instrument_type Payment mode or type of saved instrument
7892
7800
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7893
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7801
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7894
7802
  * @param {*} [options] Override http request option.
7895
7803
  * @throws {RequiredError}
7896
7804
  */
@@ -7909,7 +7817,7 @@ const TokenVaultApiFp = function(configuration?: Configuration) {
7909
7817
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
7910
7818
  * @param {string} instrument_id The instrument_id of the saved card instrument which needs to be queried
7911
7819
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7912
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7820
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7913
7821
  * @param {*} [options] Override http request option.
7914
7822
  * @throws {RequiredError}
7915
7823
  */
@@ -7967,7 +7875,7 @@ export class Cashfree {
7967
7875
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
7968
7876
  * @param {EligibilityFetchCardlessEMIRequest} EligibilityFetchCardlessEMIRequest Request Body to get eligible cardless emi options for a customer and order
7969
7877
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
7970
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7878
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
7971
7879
  * @param {*} [options] Override http request option.
7972
7880
  * @throws {RequiredError}
7973
7881
  * @memberof EligibilityApi
@@ -8004,7 +7912,7 @@ export class Cashfree {
8004
7912
  } else {
8005
7913
  scope.setExtra('environment', 'production');
8006
7914
  }
8007
- scope.setExtra('release', "3.0.8");
7915
+ scope.setExtra('release', "3.1.0");
8008
7916
  });
8009
7917
  try {
8010
7918
  return EligibilityApiFp().pGEligibilityFetchCardlessEMI(x_api_version, EligibilityFetchCardlessEMIRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8020,7 +7928,7 @@ export class Cashfree {
8020
7928
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8021
7929
  * @param {EligibilityFetchOffersRequest} EligibilityFetchOffersRequest Request Body to get eligible offers for a customer and order
8022
7930
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8023
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7931
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8024
7932
  * @param {*} [options] Override http request option.
8025
7933
  * @throws {RequiredError}
8026
7934
  * @memberof EligibilityApi
@@ -8057,7 +7965,7 @@ export class Cashfree {
8057
7965
  } else {
8058
7966
  scope.setExtra('environment', 'production');
8059
7967
  }
8060
- scope.setExtra('release', "3.0.8");
7968
+ scope.setExtra('release', "3.1.0");
8061
7969
  });
8062
7970
  try {
8063
7971
  return EligibilityApiFp().pGEligibilityFetchOffers(x_api_version, EligibilityFetchOffersRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8073,7 +7981,7 @@ export class Cashfree {
8073
7981
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8074
7982
  * @param {EligibilityFetchPaylaterRequest} EligibilityFetchPaylaterRequest Request Body to get eligible paylater options for a customer and order
8075
7983
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8076
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
7984
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8077
7985
  * @param {*} [options] Override http request option.
8078
7986
  * @throws {RequiredError}
8079
7987
  * @memberof EligibilityApi
@@ -8110,7 +8018,7 @@ export class Cashfree {
8110
8018
  } else {
8111
8019
  scope.setExtra('environment', 'production');
8112
8020
  }
8113
- scope.setExtra('release', "3.0.8");
8021
+ scope.setExtra('release', "3.1.0");
8114
8022
  });
8115
8023
  try {
8116
8024
  return EligibilityApiFp().pGEligibilityFetchPaylater(x_api_version, EligibilityFetchPaylaterRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8126,7 +8034,7 @@ export class Cashfree {
8126
8034
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8127
8035
  * @param {EligibilityFetchPaymentMethodsRequest} EligibilityFetchPaymentMethodsRequest Request Body to get eligible payment methods for an account and order
8128
8036
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8129
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8037
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8130
8038
  * @param {*} [options] Override http request option.
8131
8039
  * @throws {RequiredError}
8132
8040
  * @memberof EligibilityApi
@@ -8163,7 +8071,7 @@ export class Cashfree {
8163
8071
  } else {
8164
8072
  scope.setExtra('environment', 'production');
8165
8073
  }
8166
- scope.setExtra('release', "3.0.8");
8074
+ scope.setExtra('release', "3.1.0");
8167
8075
  });
8168
8076
  try {
8169
8077
  return EligibilityApiFp().pGEligibilityFetchPaymentMethods(x_api_version, EligibilityFetchPaymentMethodsRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8179,7 +8087,7 @@ export class Cashfree {
8179
8087
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8180
8088
  * @param {CreateOfferRequest} CreateOfferRequest Request body to create an offer at Cashfree
8181
8089
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8182
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8090
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8183
8091
  * @param {*} [options] Override http request option.
8184
8092
  * @throws {RequiredError}
8185
8093
  * @memberof OffersApi
@@ -8216,7 +8124,7 @@ export class Cashfree {
8216
8124
  } else {
8217
8125
  scope.setExtra('environment', 'production');
8218
8126
  }
8219
- scope.setExtra('release', "3.0.8");
8127
+ scope.setExtra('release', "3.1.0");
8220
8128
  });
8221
8129
  try {
8222
8130
  return OffersApiFp().pGCreateOffer(x_api_version, CreateOfferRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8232,7 +8140,7 @@ export class Cashfree {
8232
8140
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8233
8141
  * @param {string} offer_id The offer ID for which you want to view the offer details.
8234
8142
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8235
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8143
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8236
8144
  * @param {*} [options] Override http request option.
8237
8145
  * @throws {RequiredError}
8238
8146
  * @memberof OffersApi
@@ -8269,7 +8177,7 @@ export class Cashfree {
8269
8177
  } else {
8270
8178
  scope.setExtra('environment', 'production');
8271
8179
  }
8272
- scope.setExtra('release', "3.0.8");
8180
+ scope.setExtra('release', "3.1.0");
8273
8181
  });
8274
8182
  try {
8275
8183
  return OffersApiFp().pGFetchOffer(x_api_version, offer_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8285,7 +8193,7 @@ export class Cashfree {
8285
8193
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8286
8194
  * @param {CreateOrderRequest} CreateOrderRequest Request body to create an order at cashfree
8287
8195
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8288
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8196
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8289
8197
  * @param {*} [options] Override http request option.
8290
8198
  * @throws {RequiredError}
8291
8199
  * @memberof OrdersApi
@@ -8322,7 +8230,7 @@ export class Cashfree {
8322
8230
  } else {
8323
8231
  scope.setExtra('environment', 'production');
8324
8232
  }
8325
- scope.setExtra('release', "3.0.8");
8233
+ scope.setExtra('release', "3.1.0");
8326
8234
  });
8327
8235
  try {
8328
8236
  return OrdersApiFp().pGCreateOrder(x_api_version, CreateOrderRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8338,7 +8246,7 @@ export class Cashfree {
8338
8246
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8339
8247
  * @param {string} order_id The id which uniquely identifies your order
8340
8248
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8341
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8249
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8342
8250
  * @param {*} [options] Override http request option.
8343
8251
  * @throws {RequiredError}
8344
8252
  * @memberof OrdersApi
@@ -8375,7 +8283,7 @@ export class Cashfree {
8375
8283
  } else {
8376
8284
  scope.setExtra('environment', 'production');
8377
8285
  }
8378
- scope.setExtra('release', "3.0.8");
8286
+ scope.setExtra('release', "3.1.0");
8379
8287
  });
8380
8288
  try {
8381
8289
  return OrdersApiFp().pGFetchOrder(x_api_version, order_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8392,7 +8300,7 @@ export class Cashfree {
8392
8300
  * @param {FetchReconRequest} FetchReconRequest Request Body for the reconciliation
8393
8301
  * @param {string} [Content_Type] application/json
8394
8302
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8395
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8303
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8396
8304
  * @param {string} [Accept] application/json
8397
8305
  * @param {*} [options] Override http request option.
8398
8306
  * @throws {RequiredError}
@@ -8430,7 +8338,7 @@ export class Cashfree {
8430
8338
  } else {
8431
8339
  scope.setExtra('environment', 'production');
8432
8340
  }
8433
- scope.setExtra('release', "3.0.8");
8341
+ scope.setExtra('release', "3.1.0");
8434
8342
  });
8435
8343
  try {
8436
8344
  return PGReconciliationApiFp().pGFetchRecon(x_api_version, FetchReconRequest, Content_Type, x_request_id, x_idempotency_key, Accept, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8446,7 +8354,7 @@ export class Cashfree {
8446
8354
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8447
8355
  * @param {string} link_id The payment link ID for which you want to view the details.
8448
8356
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8449
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8357
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8450
8358
  * @param {*} [options] Override http request option.
8451
8359
  * @throws {RequiredError}
8452
8360
  * @memberof PaymentLinksApi
@@ -8483,7 +8391,7 @@ export class Cashfree {
8483
8391
  } else {
8484
8392
  scope.setExtra('environment', 'production');
8485
8393
  }
8486
- scope.setExtra('release', "3.0.8");
8394
+ scope.setExtra('release', "3.1.0");
8487
8395
  });
8488
8396
  try {
8489
8397
  return PaymentLinksApiFp().pGCancelLink(x_api_version, link_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8499,7 +8407,7 @@ export class Cashfree {
8499
8407
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8500
8408
  * @param {CreateLinkRequest} CreateLinkRequest Request Body to Create Payment Links
8501
8409
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8502
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8410
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8503
8411
  * @param {*} [options] Override http request option.
8504
8412
  * @throws {RequiredError}
8505
8413
  * @memberof PaymentLinksApi
@@ -8536,7 +8444,7 @@ export class Cashfree {
8536
8444
  } else {
8537
8445
  scope.setExtra('environment', 'production');
8538
8446
  }
8539
- scope.setExtra('release', "3.0.8");
8447
+ scope.setExtra('release', "3.1.0");
8540
8448
  });
8541
8449
  try {
8542
8450
  return PaymentLinksApiFp().pGCreateLink(x_api_version, CreateLinkRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8552,7 +8460,7 @@ export class Cashfree {
8552
8460
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8553
8461
  * @param {string} link_id The payment link ID for which you want to view the details.
8554
8462
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8555
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8463
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8556
8464
  * @param {*} [options] Override http request option.
8557
8465
  * @throws {RequiredError}
8558
8466
  * @memberof PaymentLinksApi
@@ -8589,7 +8497,7 @@ export class Cashfree {
8589
8497
  } else {
8590
8498
  scope.setExtra('environment', 'production');
8591
8499
  }
8592
- scope.setExtra('release', "3.0.8");
8500
+ scope.setExtra('release', "3.1.0");
8593
8501
  });
8594
8502
  try {
8595
8503
  return PaymentLinksApiFp().pGFetchLink(x_api_version, link_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8605,7 +8513,7 @@ export class Cashfree {
8605
8513
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8606
8514
  * @param {string} link_id The payment link ID for which you want to view the details.
8607
8515
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8608
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8516
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8609
8517
  * @param {*} [options] Override http request option.
8610
8518
  * @throws {RequiredError}
8611
8519
  * @memberof PaymentLinksApi
@@ -8642,7 +8550,7 @@ export class Cashfree {
8642
8550
  } else {
8643
8551
  scope.setExtra('environment', 'production');
8644
8552
  }
8645
- scope.setExtra('release', "3.0.8");
8553
+ scope.setExtra('release', "3.1.0");
8646
8554
  });
8647
8555
  try {
8648
8556
  return PaymentLinksApiFp().pGLinkFetchOrders(x_api_version, link_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8659,7 +8567,7 @@ export class Cashfree {
8659
8567
  * @param {string} order_id The id which uniquely identifies your order
8660
8568
  * @param {AuthorizeOrderRequest} AuthorizeOrderRequest Request to Capture or Void Transactions
8661
8569
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8662
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8570
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8663
8571
  * @param {*} [options] Override http request option.
8664
8572
  * @throws {RequiredError}
8665
8573
  * @memberof PaymentsApi
@@ -8696,7 +8604,7 @@ export class Cashfree {
8696
8604
  } else {
8697
8605
  scope.setExtra('environment', 'production');
8698
8606
  }
8699
- scope.setExtra('release', "3.0.8");
8607
+ scope.setExtra('release', "3.1.0");
8700
8608
  });
8701
8609
  try {
8702
8610
  return PaymentsApiFp().pGAuthorizeOrder(x_api_version, order_id, AuthorizeOrderRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8713,7 +8621,7 @@ export class Cashfree {
8713
8621
  * @param {string} cf_payment_id The Cashfree payment or transaction ID.
8714
8622
  * @param {OrderAuthenticatePaymentRequest} OrderAuthenticatePaymentRequest Request body to submit/resend headless OTP. To use this API make sure you have headless OTP enabled for your account
8715
8623
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8716
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8624
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8717
8625
  * @param {*} [options] Override http request option.
8718
8626
  * @throws {RequiredError}
8719
8627
  * @memberof PaymentsApi
@@ -8750,7 +8658,7 @@ export class Cashfree {
8750
8658
  } else {
8751
8659
  scope.setExtra('environment', 'production');
8752
8660
  }
8753
- scope.setExtra('release', "3.0.8");
8661
+ scope.setExtra('release', "3.1.0");
8754
8662
  });
8755
8663
  try {
8756
8664
  return PaymentsApiFp().pGOrderAuthenticatePayment(x_api_version, cf_payment_id, OrderAuthenticatePaymentRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8767,7 +8675,7 @@ export class Cashfree {
8767
8675
  * @param {string} order_id The id which uniquely identifies your order
8768
8676
  * @param {string} cf_payment_id The Cashfree payment or transaction ID.
8769
8677
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8770
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8678
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8771
8679
  * @param {*} [options] Override http request option.
8772
8680
  * @throws {RequiredError}
8773
8681
  * @memberof PaymentsApi
@@ -8804,7 +8712,7 @@ export class Cashfree {
8804
8712
  } else {
8805
8713
  scope.setExtra('environment', 'production');
8806
8714
  }
8807
- scope.setExtra('release', "3.0.8");
8715
+ scope.setExtra('release', "3.1.0");
8808
8716
  });
8809
8717
  try {
8810
8718
  return PaymentsApiFp().pGOrderFetchPayment(x_api_version, order_id, cf_payment_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8820,7 +8728,7 @@ export class Cashfree {
8820
8728
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8821
8729
  * @param {string} order_id The id which uniquely identifies your order
8822
8730
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8823
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8731
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8824
8732
  * @param {*} [options] Override http request option.
8825
8733
  * @throws {RequiredError}
8826
8734
  * @memberof PaymentsApi
@@ -8857,7 +8765,7 @@ export class Cashfree {
8857
8765
  } else {
8858
8766
  scope.setExtra('environment', 'production');
8859
8767
  }
8860
- scope.setExtra('release', "3.0.8");
8768
+ scope.setExtra('release', "3.1.0");
8861
8769
  });
8862
8770
  try {
8863
8771
  return PaymentsApiFp().pGOrderFetchPayments(x_api_version, order_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8873,7 +8781,7 @@ export class Cashfree {
8873
8781
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
8874
8782
  * @param {PayOrderRequest} PayOrderRequest Request body to create a transaction at cashfree using &#x60;payment_session_id&#x60;
8875
8783
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8876
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8784
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8877
8785
  * @param {*} [options] Override http request option.
8878
8786
  * @throws {RequiredError}
8879
8787
  * @memberof PaymentsApi
@@ -8910,7 +8818,7 @@ export class Cashfree {
8910
8818
  } else {
8911
8819
  scope.setExtra('environment', 'production');
8912
8820
  }
8913
- scope.setExtra('release', "3.0.8");
8821
+ scope.setExtra('release', "3.1.0");
8914
8822
  });
8915
8823
  try {
8916
8824
  return PaymentsApiFp().pGPayOrder(x_api_version, PayOrderRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8927,7 +8835,7 @@ export class Cashfree {
8927
8835
  * @param {string} order_id The id which uniquely identifies your order
8928
8836
  * @param {OrderCreateRefundRequest} OrderCreateRefundRequest Request Body to Create Refunds
8929
8837
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8930
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8838
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8931
8839
  * @param {*} [options] Override http request option.
8932
8840
  * @throws {RequiredError}
8933
8841
  * @memberof RefundsApi
@@ -8964,7 +8872,7 @@ export class Cashfree {
8964
8872
  } else {
8965
8873
  scope.setExtra('environment', 'production');
8966
8874
  }
8967
- scope.setExtra('release', "3.0.8");
8875
+ scope.setExtra('release', "3.1.0");
8968
8876
  });
8969
8877
  try {
8970
8878
  return RefundsApiFp().pGOrderCreateRefund(x_api_version, order_id, OrderCreateRefundRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -8981,7 +8889,7 @@ export class Cashfree {
8981
8889
  * @param {string} order_id The id which uniquely identifies your order
8982
8890
  * @param {string} refund_id Refund Id of the refund you want to fetch.
8983
8891
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
8984
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8892
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
8985
8893
  * @param {*} [options] Override http request option.
8986
8894
  * @throws {RequiredError}
8987
8895
  * @memberof RefundsApi
@@ -9018,7 +8926,7 @@ export class Cashfree {
9018
8926
  } else {
9019
8927
  scope.setExtra('environment', 'production');
9020
8928
  }
9021
- scope.setExtra('release', "3.0.8");
8929
+ scope.setExtra('release', "3.1.0");
9022
8930
  });
9023
8931
  try {
9024
8932
  return RefundsApiFp().pGOrderFetchRefund(x_api_version, order_id, refund_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9034,7 +8942,7 @@ export class Cashfree {
9034
8942
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
9035
8943
  * @param {string} order_id The id which uniquely identifies your order
9036
8944
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9037
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8945
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9038
8946
  * @param {*} [options] Override http request option.
9039
8947
  * @throws {RequiredError}
9040
8948
  * @memberof RefundsApi
@@ -9071,7 +8979,7 @@ export class Cashfree {
9071
8979
  } else {
9072
8980
  scope.setExtra('environment', 'production');
9073
8981
  }
9074
- scope.setExtra('release', "3.0.8");
8982
+ scope.setExtra('release', "3.1.0");
9075
8983
  });
9076
8984
  try {
9077
8985
  return RefundsApiFp().pGOrderFetchRefunds(x_api_version, order_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9088,7 +8996,7 @@ export class Cashfree {
9088
8996
  * @param {FetchSettlementsRequest} FetchSettlementsRequest Request Body to get the settlements
9089
8997
  * @param {string} [Content_Type] application/json
9090
8998
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9091
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
8999
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9092
9000
  * @param {string} [Accept] application/json
9093
9001
  * @param {*} [options] Override http request option.
9094
9002
  * @throws {RequiredError}
@@ -9126,7 +9034,7 @@ export class Cashfree {
9126
9034
  } else {
9127
9035
  scope.setExtra('environment', 'production');
9128
9036
  }
9129
- scope.setExtra('release', "3.0.8");
9037
+ scope.setExtra('release', "3.1.0");
9130
9038
  });
9131
9039
  try {
9132
9040
  return SettlementReconciliationApiFp().pGFetchSettlements(x_api_version, FetchSettlementsRequest, Content_Type, x_request_id, x_idempotency_key, Accept, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9143,7 +9051,7 @@ export class Cashfree {
9143
9051
  * @param {SettlementFetchReconRequest} SettlementFetchReconRequest Request Body for the settlement reconciliation
9144
9052
  * @param {string} [Content_Type] application/json
9145
9053
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9146
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9054
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9147
9055
  * @param {string} [Accept] application/json
9148
9056
  * @param {*} [options] Override http request option.
9149
9057
  * @throws {RequiredError}
@@ -9181,7 +9089,7 @@ export class Cashfree {
9181
9089
  } else {
9182
9090
  scope.setExtra('environment', 'production');
9183
9091
  }
9184
- scope.setExtra('release', "3.0.8");
9092
+ scope.setExtra('release', "3.1.0");
9185
9093
  });
9186
9094
  try {
9187
9095
  return SettlementReconciliationApiFp().pGSettlementFetchRecon(x_api_version, SettlementFetchReconRequest, Content_Type, x_request_id, x_idempotency_key, Accept, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9197,7 +9105,7 @@ export class Cashfree {
9197
9105
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
9198
9106
  * @param {string} order_id The id which uniquely identifies your order
9199
9107
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9200
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9108
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9201
9109
  * @param {*} [options] Override http request option.
9202
9110
  * @throws {RequiredError}
9203
9111
  * @memberof SettlementsApi
@@ -9234,7 +9142,7 @@ export class Cashfree {
9234
9142
  } else {
9235
9143
  scope.setExtra('environment', 'production');
9236
9144
  }
9237
- scope.setExtra('release', "3.0.8");
9145
+ scope.setExtra('release', "3.1.0");
9238
9146
  });
9239
9147
  try {
9240
9148
  return SettlementsApiFp().pGOrderFetchSettlement(x_api_version, order_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9250,7 +9158,7 @@ export class Cashfree {
9250
9158
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
9251
9159
  * @param {CreateTerminalRequest} CreateTerminalRequest Request Body to Create Terminal for SPOS
9252
9160
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9253
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9161
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9254
9162
  * @param {*} [options] Override http request option.
9255
9163
  * @throws {RequiredError}
9256
9164
  * @memberof SoftPOSApi
@@ -9287,7 +9195,7 @@ export class Cashfree {
9287
9195
  } else {
9288
9196
  scope.setExtra('environment', 'production');
9289
9197
  }
9290
- scope.setExtra('release', "3.0.8");
9198
+ scope.setExtra('release', "3.1.0");
9291
9199
  });
9292
9200
  try {
9293
9201
  return SoftPOSApiFp().sposCreateTerminal(x_api_version, CreateTerminalRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9303,7 +9211,7 @@ export class Cashfree {
9303
9211
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
9304
9212
  * @param {CreateTerminalTransactionRequest} CreateTerminalTransactionRequest Request body to create a terminal transaction
9305
9213
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9306
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9214
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9307
9215
  * @param {*} [options] Override http request option.
9308
9216
  * @throws {RequiredError}
9309
9217
  * @memberof SoftPOSApi
@@ -9340,7 +9248,7 @@ export class Cashfree {
9340
9248
  } else {
9341
9249
  scope.setExtra('environment', 'production');
9342
9250
  }
9343
- scope.setExtra('release', "3.0.8");
9251
+ scope.setExtra('release', "3.1.0");
9344
9252
  });
9345
9253
  try {
9346
9254
  return SoftPOSApiFp().sposCreateTerminalTransaction(x_api_version, CreateTerminalTransactionRequest, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9356,7 +9264,7 @@ export class Cashfree {
9356
9264
  * @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
9357
9265
  * @param {string} terminal_phone_no The terminal for which you want to view the order details.
9358
9266
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9359
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9267
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9360
9268
  * @param {*} [options] Override http request option.
9361
9269
  * @throws {RequiredError}
9362
9270
  * @memberof SoftPOSApi
@@ -9393,7 +9301,7 @@ export class Cashfree {
9393
9301
  } else {
9394
9302
  scope.setExtra('environment', 'production');
9395
9303
  }
9396
- scope.setExtra('release', "3.0.8");
9304
+ scope.setExtra('release', "3.1.0");
9397
9305
  });
9398
9306
  try {
9399
9307
  return SoftPOSApiFp().sposFetchTerminal(x_api_version, terminal_phone_no, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9410,7 +9318,7 @@ export class Cashfree {
9410
9318
  * @param {string} terminal_phone_no Phone number assigned to the terminal. Required if you are not providing the cf_terminal_id in the request.
9411
9319
  * @param {string} cf_terminal_id Cashfree terminal id for which you want to get staticQRs. Required if you are not providing the terminal_phone_number in the request.
9412
9320
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9413
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9321
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9414
9322
  * @param {*} [options] Override http request option.
9415
9323
  * @throws {RequiredError}
9416
9324
  * @memberof SoftPOSApi
@@ -9447,7 +9355,7 @@ export class Cashfree {
9447
9355
  } else {
9448
9356
  scope.setExtra('environment', 'production');
9449
9357
  }
9450
- scope.setExtra('release', "3.0.8");
9358
+ scope.setExtra('release', "3.1.0");
9451
9359
  });
9452
9360
  try {
9453
9361
  return SoftPOSApiFp().sposFetchTerminalQRCodes(x_api_version, terminal_phone_no, cf_terminal_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9464,7 +9372,7 @@ export class Cashfree {
9464
9372
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
9465
9373
  * @param {string} instrument_id The instrument_id which needs to be deleted
9466
9374
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9467
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9375
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9468
9376
  * @param {*} [options] Override http request option.
9469
9377
  * @throws {RequiredError}
9470
9378
  * @memberof TokenVaultApi
@@ -9501,7 +9409,7 @@ export class Cashfree {
9501
9409
  } else {
9502
9410
  scope.setExtra('environment', 'production');
9503
9411
  }
9504
- scope.setExtra('release', "3.0.8");
9412
+ scope.setExtra('release', "3.1.0");
9505
9413
  });
9506
9414
  try {
9507
9415
  return TokenVaultApiFp().pGCustomerDeleteInstrument(x_api_version, customer_id, instrument_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9518,7 +9426,7 @@ export class Cashfree {
9518
9426
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
9519
9427
  * @param {string} instrument_id The instrument_id of the saved instrument which needs to be queried
9520
9428
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9521
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9429
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9522
9430
  * @param {*} [options] Override http request option.
9523
9431
  * @throws {RequiredError}
9524
9432
  * @memberof TokenVaultApi
@@ -9555,7 +9463,7 @@ export class Cashfree {
9555
9463
  } else {
9556
9464
  scope.setExtra('environment', 'production');
9557
9465
  }
9558
- scope.setExtra('release', "3.0.8");
9466
+ scope.setExtra('release', "3.1.0");
9559
9467
  });
9560
9468
  try {
9561
9469
  return TokenVaultApiFp().pGCustomerFetchInstrument(x_api_version, customer_id, instrument_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9572,7 +9480,7 @@ export class Cashfree {
9572
9480
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
9573
9481
  * @param {PGCustomerFetchInstrumentsInstrumentTypeEnum} instrument_type Payment mode or type of saved instrument
9574
9482
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9575
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9483
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9576
9484
  * @param {*} [options] Override http request option.
9577
9485
  * @throws {RequiredError}
9578
9486
  * @memberof TokenVaultApi
@@ -9609,7 +9517,7 @@ export class Cashfree {
9609
9517
  } else {
9610
9518
  scope.setExtra('environment', 'production');
9611
9519
  }
9612
- scope.setExtra('release', "3.0.8");
9520
+ scope.setExtra('release', "3.1.0");
9613
9521
  });
9614
9522
  try {
9615
9523
  return TokenVaultApiFp().pGCustomerFetchInstruments(x_api_version, customer_id, instrument_type, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
@@ -9626,7 +9534,7 @@ export class Cashfree {
9626
9534
  * @param {string} customer_id Your Customer ID that you had sent during create order API &#x60;POST/orders&#x60;
9627
9535
  * @param {string} instrument_id The instrument_id of the saved card instrument which needs to be queried
9628
9536
  * @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
9629
- * @param {string} [x_idempotency_key] Idempotency works by saving the resulting status code and body of the first request made for any given idempotency key, regardless of whether it succeeded or failed. Subsequent requests with the same key return the same result, including 500 errors. Currently supported on all POST calls that uses x-client-id &amp; x-client-secret. To use enable, pass x-idempotency-key in the request header. The value of this header must be unique to each operation you are trying to do. One example can be to use the same order_id that you pass while creating orders
9537
+ * @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
9630
9538
  * @param {*} [options] Override http request option.
9631
9539
  * @throws {RequiredError}
9632
9540
  * @memberof TokenVaultApi
@@ -9663,7 +9571,7 @@ export class Cashfree {
9663
9571
  } else {
9664
9572
  scope.setExtra('environment', 'production');
9665
9573
  }
9666
- scope.setExtra('release', "3.0.8");
9574
+ scope.setExtra('release', "3.1.0");
9667
9575
  });
9668
9576
  try {
9669
9577
  return TokenVaultApiFp().pGCustomerInstrumentsFetchCryptogram(x_api_version, customer_id, instrument_id, x_request_id, x_idempotency_key, options).then((request) => request(Cashfree.axios, Cashfree.basePath));