cashfree-pg 3.2.0 → 3.2.1

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
@@ -2881,7 +2881,7 @@ export interface PaymentEntity {
2881
2881
  */
2882
2882
  'order_amount'?: number;
2883
2883
  /**
2884
- * Type of payment group. One of [\'upi\', \'card\', \'app\', \'netbanking\', \'paylater\', \'cardless_emi\']
2884
+ * Type of payment group. One of [\'prepaid_card\', \'upi_ppi_offline\', \'cash\', \'upi_credit_card\', \'paypal\', \'net_banking\', \'cardless_emi\', \'credit_card\', \'bank_transfer\', \'pay_later\', \'debit_card_emi\', \'debit_card\', \'wallet\', \'upi_ppi\', \'upi\', \'credit_card_emi\']
2885
2885
  * @type {string}
2886
2886
  * @memberof PaymentEntity
2887
2887
  */
@@ -3133,96 +3133,209 @@ export interface PaymentLinkOrderEntity {
3133
3133
  export interface PaymentMethodAppInPaymentsEntity {
3134
3134
  /**
3135
3135
  *
3136
- * @type {string}
3136
+ * @type {PaymentMethodAppInPaymentsEntityApp}
3137
3137
  * @memberof PaymentMethodAppInPaymentsEntity
3138
3138
  */
3139
+ 'app'?: PaymentMethodAppInPaymentsEntityApp;
3140
+ }
3141
+ /**
3142
+ *
3143
+ * @export
3144
+ * @interface PaymentMethodAppInPaymentsEntityApp
3145
+ */
3146
+ export interface PaymentMethodAppInPaymentsEntityApp {
3147
+ /**
3148
+ *
3149
+ * @type {string}
3150
+ * @memberof PaymentMethodAppInPaymentsEntityApp
3151
+ */
3139
3152
  'channel'?: string;
3140
3153
  /**
3141
3154
  *
3142
3155
  * @type {string}
3143
- * @memberof PaymentMethodAppInPaymentsEntity
3156
+ * @memberof PaymentMethodAppInPaymentsEntityApp
3144
3157
  */
3145
3158
  'provider'?: string;
3146
3159
  /**
3147
3160
  *
3148
3161
  * @type {string}
3149
- * @memberof PaymentMethodAppInPaymentsEntity
3162
+ * @memberof PaymentMethodAppInPaymentsEntityApp
3150
3163
  */
3151
3164
  'phone'?: string;
3152
3165
  }
3153
3166
  /**
3154
- * payment method card object in payment entity
3167
+ * payment method card emi object in payment entity
3155
3168
  * @export
3156
- * @interface PaymentMethodCardInPaymentsEntity
3169
+ * @interface PaymentMethodCardEMIInPaymentsEntity
3157
3170
  */
3158
- export interface PaymentMethodCardInPaymentsEntity {
3171
+ export interface PaymentMethodCardEMIInPaymentsEntity {
3172
+ /**
3173
+ *
3174
+ * @type {PaymentMethodCardEMIInPaymentsEntityEmi}
3175
+ * @memberof PaymentMethodCardEMIInPaymentsEntity
3176
+ */
3177
+ 'emi'?: PaymentMethodCardEMIInPaymentsEntityEmi;
3178
+ }
3179
+ /**
3180
+ *
3181
+ * @export
3182
+ * @interface PaymentMethodCardEMIInPaymentsEntityEmi
3183
+ */
3184
+ export interface PaymentMethodCardEMIInPaymentsEntityEmi {
3159
3185
  /**
3160
3186
  *
3161
3187
  * @type {string}
3162
- * @memberof PaymentMethodCardInPaymentsEntity
3188
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmi
3163
3189
  */
3164
3190
  'channel'?: string;
3165
3191
  /**
3166
3192
  *
3167
3193
  * @type {string}
3168
- * @memberof PaymentMethodCardInPaymentsEntity
3194
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmi
3169
3195
  */
3170
3196
  'card_number'?: string;
3171
3197
  /**
3172
3198
  *
3173
3199
  * @type {string}
3174
- * @memberof PaymentMethodCardInPaymentsEntity
3200
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmi
3175
3201
  */
3176
3202
  'card_network'?: string;
3177
3203
  /**
3178
3204
  *
3179
3205
  * @type {string}
3180
- * @memberof PaymentMethodCardInPaymentsEntity
3206
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmi
3181
3207
  */
3182
3208
  'card_type'?: string;
3183
3209
  /**
3184
3210
  *
3185
3211
  * @type {string}
3186
- * @memberof PaymentMethodCardInPaymentsEntity
3212
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmi
3187
3213
  */
3188
3214
  'card_country'?: string;
3189
3215
  /**
3190
3216
  *
3191
3217
  * @type {string}
3192
- * @memberof PaymentMethodCardInPaymentsEntity
3218
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmi
3193
3219
  */
3194
3220
  'card_bank_name'?: string;
3195
3221
  /**
3196
3222
  *
3197
3223
  * @type {string}
3198
- * @memberof PaymentMethodCardInPaymentsEntity
3224
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmi
3199
3225
  */
3200
3226
  'card_network_reference_id'?: string;
3227
+ /**
3228
+ *
3229
+ * @type {number}
3230
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmi
3231
+ */
3232
+ 'emi_tenure'?: number;
3233
+ /**
3234
+ *
3235
+ * @type {PaymentMethodCardEMIInPaymentsEntityEmiEmiDetails}
3236
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmi
3237
+ */
3238
+ 'emi_details'?: PaymentMethodCardEMIInPaymentsEntityEmiEmiDetails;
3201
3239
  }
3202
3240
  /**
3203
- * payment method carless object in payment entity
3241
+ *
3204
3242
  * @export
3205
- * @interface PaymentMethodCardlessEMIInPaymentsEntity
3243
+ * @interface PaymentMethodCardEMIInPaymentsEntityEmiEmiDetails
3206
3244
  */
3207
- export interface PaymentMethodCardlessEMIInPaymentsEntity {
3245
+ export interface PaymentMethodCardEMIInPaymentsEntityEmiEmiDetails {
3246
+ /**
3247
+ *
3248
+ * @type {number}
3249
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmiEmiDetails
3250
+ */
3251
+ 'emi_amount'?: number;
3252
+ /**
3253
+ *
3254
+ * @type {number}
3255
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmiEmiDetails
3256
+ */
3257
+ 'emi_tenure'?: number;
3258
+ /**
3259
+ *
3260
+ * @type {number}
3261
+ * @memberof PaymentMethodCardEMIInPaymentsEntityEmiEmiDetails
3262
+ */
3263
+ 'emi_interest'?: number;
3264
+ }
3265
+ /**
3266
+ * payment method card object in payment entity
3267
+ * @export
3268
+ * @interface PaymentMethodCardInPaymentsEntity
3269
+ */
3270
+ export interface PaymentMethodCardInPaymentsEntity {
3271
+ /**
3272
+ *
3273
+ * @type {PaymentMethodCardInPaymentsEntityCard}
3274
+ * @memberof PaymentMethodCardInPaymentsEntity
3275
+ */
3276
+ 'card'?: PaymentMethodCardInPaymentsEntityCard;
3277
+ }
3278
+ /**
3279
+ *
3280
+ * @export
3281
+ * @interface PaymentMethodCardInPaymentsEntityCard
3282
+ */
3283
+ export interface PaymentMethodCardInPaymentsEntityCard {
3208
3284
  /**
3209
3285
  *
3210
3286
  * @type {string}
3211
- * @memberof PaymentMethodCardlessEMIInPaymentsEntity
3287
+ * @memberof PaymentMethodCardInPaymentsEntityCard
3212
3288
  */
3213
3289
  'channel'?: string;
3214
3290
  /**
3215
3291
  *
3216
3292
  * @type {string}
3217
- * @memberof PaymentMethodCardlessEMIInPaymentsEntity
3293
+ * @memberof PaymentMethodCardInPaymentsEntityCard
3218
3294
  */
3219
- 'provider'?: string;
3295
+ 'card_number'?: string;
3220
3296
  /**
3221
3297
  *
3222
3298
  * @type {string}
3299
+ * @memberof PaymentMethodCardInPaymentsEntityCard
3300
+ */
3301
+ 'card_network'?: string;
3302
+ /**
3303
+ *
3304
+ * @type {string}
3305
+ * @memberof PaymentMethodCardInPaymentsEntityCard
3306
+ */
3307
+ 'card_type'?: string;
3308
+ /**
3309
+ *
3310
+ * @type {string}
3311
+ * @memberof PaymentMethodCardInPaymentsEntityCard
3312
+ */
3313
+ 'card_country'?: string;
3314
+ /**
3315
+ *
3316
+ * @type {string}
3317
+ * @memberof PaymentMethodCardInPaymentsEntityCard
3318
+ */
3319
+ 'card_bank_name'?: string;
3320
+ /**
3321
+ *
3322
+ * @type {string}
3323
+ * @memberof PaymentMethodCardInPaymentsEntityCard
3324
+ */
3325
+ 'card_network_reference_id'?: string;
3326
+ }
3327
+ /**
3328
+ * payment method carless object in payment entity
3329
+ * @export
3330
+ * @interface PaymentMethodCardlessEMIInPaymentsEntity
3331
+ */
3332
+ export interface PaymentMethodCardlessEMIInPaymentsEntity {
3333
+ /**
3334
+ *
3335
+ * @type {PaymentMethodAppInPaymentsEntityApp}
3223
3336
  * @memberof PaymentMethodCardlessEMIInPaymentsEntity
3224
3337
  */
3225
- 'phone'?: string;
3338
+ 'cardless_emi'?: PaymentMethodAppInPaymentsEntityApp;
3226
3339
  }
3227
3340
  /**
3228
3341
  * payment methods all
@@ -3241,7 +3354,7 @@ export interface PaymentMethodInPaymentsEntity {
3241
3354
  * @type PaymentMethodInPaymentsEntityPaymentMethod
3242
3355
  * @export
3243
3356
  */
3244
- export type PaymentMethodInPaymentsEntityPaymentMethod = PaymentMethodAppInPaymentsEntity | PaymentMethodCardInPaymentsEntity | PaymentMethodCardlessEMIInPaymentsEntity | PaymentMethodNetBankingInPaymentsEntity | PaymentMethodPaylaterInPaymentsEntity | PaymentMethodUPIInPaymentsEntity;
3357
+ export type PaymentMethodInPaymentsEntityPaymentMethod = PaymentMethodAppInPaymentsEntity | PaymentMethodCardEMIInPaymentsEntity | PaymentMethodCardInPaymentsEntity | PaymentMethodCardlessEMIInPaymentsEntity | PaymentMethodNetBankingInPaymentsEntity | PaymentMethodPaylaterInPaymentsEntity | PaymentMethodUPIInPaymentsEntity;
3245
3358
 
3246
3359
  /**
3247
3360
  * netbanking payment method object for pay
@@ -3251,22 +3364,35 @@ export type PaymentMethodInPaymentsEntityPaymentMethod = PaymentMethodAppInPayme
3251
3364
  export interface PaymentMethodNetBankingInPaymentsEntity {
3252
3365
  /**
3253
3366
  *
3254
- * @type {string}
3367
+ * @type {PaymentMethodNetBankingInPaymentsEntityNetbanking}
3255
3368
  * @memberof PaymentMethodNetBankingInPaymentsEntity
3256
3369
  */
3257
- 'channel': string;
3370
+ 'netbanking'?: PaymentMethodNetBankingInPaymentsEntityNetbanking;
3371
+ }
3372
+ /**
3373
+ *
3374
+ * @export
3375
+ * @interface PaymentMethodNetBankingInPaymentsEntityNetbanking
3376
+ */
3377
+ export interface PaymentMethodNetBankingInPaymentsEntityNetbanking {
3378
+ /**
3379
+ *
3380
+ * @type {string}
3381
+ * @memberof PaymentMethodNetBankingInPaymentsEntityNetbanking
3382
+ */
3383
+ 'channel'?: string;
3258
3384
  /**
3259
3385
  *
3260
3386
  * @type {number}
3261
- * @memberof PaymentMethodNetBankingInPaymentsEntity
3387
+ * @memberof PaymentMethodNetBankingInPaymentsEntityNetbanking
3262
3388
  */
3263
- 'netbanking_bank_code': number;
3389
+ 'netbanking_bank_code'?: number;
3264
3390
  /**
3265
3391
  *
3266
3392
  * @type {string}
3267
- * @memberof PaymentMethodNetBankingInPaymentsEntity
3393
+ * @memberof PaymentMethodNetBankingInPaymentsEntityNetbanking
3268
3394
  */
3269
- 'netbanking_bank_name': string;
3395
+ 'netbanking_bank_name'?: string;
3270
3396
  }
3271
3397
  /**
3272
3398
  * paylater payment method object for pay api
@@ -3276,22 +3402,10 @@ export interface PaymentMethodNetBankingInPaymentsEntity {
3276
3402
  export interface PaymentMethodPaylaterInPaymentsEntity {
3277
3403
  /**
3278
3404
  *
3279
- * @type {string}
3405
+ * @type {PaymentMethodAppInPaymentsEntityApp}
3280
3406
  * @memberof PaymentMethodPaylaterInPaymentsEntity
3281
3407
  */
3282
- 'channel'?: string;
3283
- /**
3284
- *
3285
- * @type {string}
3286
- * @memberof PaymentMethodPaylaterInPaymentsEntity
3287
- */
3288
- 'provider'?: string;
3289
- /**
3290
- *
3291
- * @type {string}
3292
- * @memberof PaymentMethodPaylaterInPaymentsEntity
3293
- */
3294
- 'phone'?: string;
3408
+ 'paylater'?: PaymentMethodAppInPaymentsEntityApp;
3295
3409
  }
3296
3410
  /**
3297
3411
  * UPI payment method for pay api
@@ -3301,14 +3415,27 @@ export interface PaymentMethodPaylaterInPaymentsEntity {
3301
3415
  export interface PaymentMethodUPIInPaymentsEntity {
3302
3416
  /**
3303
3417
  *
3304
- * @type {string}
3418
+ * @type {PaymentMethodUPIInPaymentsEntityUpi}
3305
3419
  * @memberof PaymentMethodUPIInPaymentsEntity
3306
3420
  */
3307
- 'channel': string;
3421
+ 'upi'?: PaymentMethodUPIInPaymentsEntityUpi;
3422
+ }
3423
+ /**
3424
+ *
3425
+ * @export
3426
+ * @interface PaymentMethodUPIInPaymentsEntityUpi
3427
+ */
3428
+ export interface PaymentMethodUPIInPaymentsEntityUpi {
3308
3429
  /**
3309
3430
  *
3310
3431
  * @type {string}
3311
- * @memberof PaymentMethodUPIInPaymentsEntity
3432
+ * @memberof PaymentMethodUPIInPaymentsEntityUpi
3433
+ */
3434
+ 'channel'?: string;
3435
+ /**
3436
+ *
3437
+ * @type {string}
3438
+ * @memberof PaymentMethodUPIInPaymentsEntityUpi
3312
3439
  */
3313
3440
  'upi_id'?: string;
3314
3441
  }
@@ -5028,7 +5155,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
5028
5155
 
5029
5156
  localVarHeaderParameter['Content-Type'] = 'application/json';
5030
5157
 
5031
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5158
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5032
5159
  if (x_api_version != null && x_api_version != undefined) {
5033
5160
  localVarHeaderParameter['x-api-version'] = x_api_version;
5034
5161
  }
@@ -5102,7 +5229,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
5102
5229
 
5103
5230
  localVarHeaderParameter['Content-Type'] = 'application/json';
5104
5231
 
5105
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5232
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5106
5233
  if (x_api_version != null && x_api_version != undefined) {
5107
5234
  localVarHeaderParameter['x-api-version'] = x_api_version;
5108
5235
  }
@@ -5176,7 +5303,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
5176
5303
 
5177
5304
  localVarHeaderParameter['Content-Type'] = 'application/json';
5178
5305
 
5179
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5306
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5180
5307
  if (x_api_version != null && x_api_version != undefined) {
5181
5308
  localVarHeaderParameter['x-api-version'] = x_api_version;
5182
5309
  }
@@ -5250,7 +5377,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
5250
5377
 
5251
5378
  localVarHeaderParameter['Content-Type'] = 'application/json';
5252
5379
 
5253
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5380
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5254
5381
  if (x_api_version != null && x_api_version != undefined) {
5255
5382
  localVarHeaderParameter['x-api-version'] = x_api_version;
5256
5383
  }
@@ -5424,7 +5551,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
5424
5551
 
5425
5552
  localVarHeaderParameter['Content-Type'] = 'application/json';
5426
5553
 
5427
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5554
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5428
5555
  if (x_api_version != null && x_api_version != undefined) {
5429
5556
  localVarHeaderParameter['x-api-version'] = x_api_version;
5430
5557
  }
@@ -5497,7 +5624,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
5497
5624
 
5498
5625
 
5499
5626
 
5500
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5627
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5501
5628
  if (x_api_version != null && x_api_version != undefined) {
5502
5629
  localVarHeaderParameter['x-api-version'] = x_api_version;
5503
5630
  }
@@ -5634,7 +5761,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
5634
5761
 
5635
5762
  localVarHeaderParameter['Content-Type'] = 'application/json';
5636
5763
 
5637
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5764
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5638
5765
  if (x_api_version != null && x_api_version != undefined) {
5639
5766
  localVarHeaderParameter['x-api-version'] = x_api_version;
5640
5767
  }
@@ -5707,7 +5834,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
5707
5834
 
5708
5835
 
5709
5836
 
5710
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5837
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5711
5838
  if (x_api_version != null && x_api_version != undefined) {
5712
5839
  localVarHeaderParameter['x-api-version'] = x_api_version;
5713
5840
  }
@@ -5846,7 +5973,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura
5846
5973
 
5847
5974
  localVarHeaderParameter['Content-Type'] = 'application/json';
5848
5975
 
5849
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5976
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5850
5977
  if (x_api_version != null && x_api_version != undefined) {
5851
5978
  localVarHeaderParameter['x-api-version'] = x_api_version;
5852
5979
  }
@@ -5967,7 +6094,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5967
6094
 
5968
6095
 
5969
6096
 
5970
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6097
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
5971
6098
  if (x_api_version != null && x_api_version != undefined) {
5972
6099
  localVarHeaderParameter['x-api-version'] = x_api_version;
5973
6100
  }
@@ -6040,7 +6167,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
6040
6167
 
6041
6168
  localVarHeaderParameter['Content-Type'] = 'application/json';
6042
6169
 
6043
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6170
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6044
6171
  if (x_api_version != null && x_api_version != undefined) {
6045
6172
  localVarHeaderParameter['x-api-version'] = x_api_version;
6046
6173
  }
@@ -6113,7 +6240,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
6113
6240
 
6114
6241
 
6115
6242
 
6116
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6243
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6117
6244
  if (x_api_version != null && x_api_version != undefined) {
6118
6245
  localVarHeaderParameter['x-api-version'] = x_api_version;
6119
6246
  }
@@ -6185,7 +6312,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
6185
6312
 
6186
6313
 
6187
6314
 
6188
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6315
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6189
6316
  if (x_api_version != null && x_api_version != undefined) {
6190
6317
  localVarHeaderParameter['x-api-version'] = x_api_version;
6191
6318
  }
@@ -6362,7 +6489,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6362
6489
 
6363
6490
  localVarHeaderParameter['Content-Type'] = 'application/json';
6364
6491
 
6365
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6492
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6366
6493
  if (x_api_version != null && x_api_version != undefined) {
6367
6494
  localVarHeaderParameter['x-api-version'] = x_api_version;
6368
6495
  }
@@ -6425,7 +6552,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6425
6552
 
6426
6553
  localVarHeaderParameter['Content-Type'] = 'application/json';
6427
6554
 
6428
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6555
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6429
6556
  if (x_api_version != null && x_api_version != undefined) {
6430
6557
  localVarHeaderParameter['x-api-version'] = x_api_version;
6431
6558
  }
@@ -6502,7 +6629,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6502
6629
 
6503
6630
 
6504
6631
 
6505
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6632
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6506
6633
  if (x_api_version != null && x_api_version != undefined) {
6507
6634
  localVarHeaderParameter['x-api-version'] = x_api_version;
6508
6635
  }
@@ -6574,7 +6701,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6574
6701
 
6575
6702
 
6576
6703
 
6577
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6704
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6578
6705
  if (x_api_version != null && x_api_version != undefined) {
6579
6706
  localVarHeaderParameter['x-api-version'] = x_api_version;
6580
6707
  }
@@ -6632,7 +6759,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6632
6759
 
6633
6760
  localVarHeaderParameter['Content-Type'] = 'application/json';
6634
6761
 
6635
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6762
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6636
6763
  if (x_api_version != null && x_api_version != undefined) {
6637
6764
  localVarHeaderParameter['x-api-version'] = x_api_version;
6638
6765
  }
@@ -6831,7 +6958,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6831
6958
 
6832
6959
  localVarHeaderParameter['Content-Type'] = 'application/json';
6833
6960
 
6834
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6961
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6835
6962
  if (x_api_version != null && x_api_version != undefined) {
6836
6963
  localVarHeaderParameter['x-api-version'] = x_api_version;
6837
6964
  }
@@ -6908,7 +7035,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6908
7035
 
6909
7036
 
6910
7037
 
6911
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7038
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6912
7039
  if (x_api_version != null && x_api_version != undefined) {
6913
7040
  localVarHeaderParameter['x-api-version'] = x_api_version;
6914
7041
  }
@@ -6980,7 +7107,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6980
7107
 
6981
7108
 
6982
7109
 
6983
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7110
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
6984
7111
  if (x_api_version != null && x_api_version != undefined) {
6985
7112
  localVarHeaderParameter['x-api-version'] = x_api_version;
6986
7113
  }
@@ -7139,7 +7266,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
7139
7266
 
7140
7267
  localVarHeaderParameter['Content-Type'] = 'application/json';
7141
7268
 
7142
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7269
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
7143
7270
  if (x_api_version != null && x_api_version != undefined) {
7144
7271
  localVarHeaderParameter['x-api-version'] = x_api_version;
7145
7272
  }
@@ -7215,7 +7342,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
7215
7342
 
7216
7343
  localVarHeaderParameter['Content-Type'] = 'application/json';
7217
7344
 
7218
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7345
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
7219
7346
  if (x_api_version != null && x_api_version != undefined) {
7220
7347
  localVarHeaderParameter['x-api-version'] = x_api_version;
7221
7348
  }
@@ -7356,7 +7483,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
7356
7483
 
7357
7484
 
7358
7485
 
7359
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7486
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
7360
7487
  if (x_api_version != null && x_api_version != undefined) {
7361
7488
  localVarHeaderParameter['x-api-version'] = x_api_version;
7362
7489
  }
@@ -7475,7 +7602,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7475
7602
 
7476
7603
  localVarHeaderParameter['Content-Type'] = 'application/json';
7477
7604
 
7478
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7605
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
7479
7606
  if (x_api_version != null && x_api_version != undefined) {
7480
7607
  localVarHeaderParameter['x-api-version'] = x_api_version;
7481
7608
  }
@@ -7549,7 +7676,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7549
7676
 
7550
7677
  localVarHeaderParameter['Content-Type'] = 'application/json';
7551
7678
 
7552
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7679
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
7553
7680
  if (x_api_version != null && x_api_version != undefined) {
7554
7681
  localVarHeaderParameter['x-api-version'] = x_api_version;
7555
7682
  }
@@ -7622,7 +7749,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7622
7749
 
7623
7750
 
7624
7751
 
7625
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7752
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
7626
7753
  if (x_api_version != null && x_api_version != undefined) {
7627
7754
  localVarHeaderParameter['x-api-version'] = x_api_version;
7628
7755
  }
@@ -7704,7 +7831,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7704
7831
 
7705
7832
 
7706
7833
 
7707
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7834
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
7708
7835
  if (x_api_version != null && x_api_version != undefined) {
7709
7836
  localVarHeaderParameter['x-api-version'] = x_api_version;
7710
7837
  }
@@ -7881,7 +8008,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7881
8008
 
7882
8009
 
7883
8010
 
7884
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
8011
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
7885
8012
  if (x_api_version != null && x_api_version != undefined) {
7886
8013
  localVarHeaderParameter['x-api-version'] = x_api_version;
7887
8014
  }
@@ -7957,7 +8084,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7957
8084
 
7958
8085
 
7959
8086
 
7960
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
8087
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
7961
8088
  if (x_api_version != null && x_api_version != undefined) {
7962
8089
  localVarHeaderParameter['x-api-version'] = x_api_version;
7963
8090
  }
@@ -8036,7 +8163,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
8036
8163
 
8037
8164
 
8038
8165
 
8039
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
8166
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
8040
8167
  if (x_api_version != null && x_api_version != undefined) {
8041
8168
  localVarHeaderParameter['x-api-version'] = x_api_version;
8042
8169
  }
@@ -8112,7 +8239,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
8112
8239
 
8113
8240
 
8114
8241
 
8115
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
8242
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
8116
8243
  if (x_api_version != null && x_api_version != undefined) {
8117
8244
  localVarHeaderParameter['x-api-version'] = x_api_version;
8118
8245
  }
@@ -8340,7 +8467,7 @@ export class Cashfree {
8340
8467
  } else {
8341
8468
  scope.setExtra('environment', 'production');
8342
8469
  }
8343
- scope.setExtra('release', "3.2.0");
8470
+ scope.setExtra('release', "3.2.1");
8344
8471
  });
8345
8472
  }
8346
8473
  try {
@@ -8400,7 +8527,7 @@ export class Cashfree {
8400
8527
  } else {
8401
8528
  scope.setExtra('environment', 'production');
8402
8529
  }
8403
- scope.setExtra('release', "3.2.0");
8530
+ scope.setExtra('release', "3.2.1");
8404
8531
  });
8405
8532
  }
8406
8533
  try {
@@ -8460,7 +8587,7 @@ export class Cashfree {
8460
8587
  } else {
8461
8588
  scope.setExtra('environment', 'production');
8462
8589
  }
8463
- scope.setExtra('release', "3.2.0");
8590
+ scope.setExtra('release', "3.2.1");
8464
8591
  });
8465
8592
  }
8466
8593
  try {
@@ -8520,7 +8647,7 @@ export class Cashfree {
8520
8647
  } else {
8521
8648
  scope.setExtra('environment', 'production');
8522
8649
  }
8523
- scope.setExtra('release', "3.2.0");
8650
+ scope.setExtra('release', "3.2.1");
8524
8651
  });
8525
8652
  }
8526
8653
  try {
@@ -8580,7 +8707,7 @@ export class Cashfree {
8580
8707
  } else {
8581
8708
  scope.setExtra('environment', 'production');
8582
8709
  }
8583
- scope.setExtra('release', "3.2.0");
8710
+ scope.setExtra('release', "3.2.1");
8584
8711
  });
8585
8712
  }
8586
8713
  try {
@@ -8640,7 +8767,7 @@ export class Cashfree {
8640
8767
  } else {
8641
8768
  scope.setExtra('environment', 'production');
8642
8769
  }
8643
- scope.setExtra('release', "3.2.0");
8770
+ scope.setExtra('release', "3.2.1");
8644
8771
  });
8645
8772
  }
8646
8773
  try {
@@ -8700,7 +8827,7 @@ export class Cashfree {
8700
8827
  } else {
8701
8828
  scope.setExtra('environment', 'production');
8702
8829
  }
8703
- scope.setExtra('release', "3.2.0");
8830
+ scope.setExtra('release', "3.2.1");
8704
8831
  });
8705
8832
  }
8706
8833
  try {
@@ -8760,7 +8887,7 @@ export class Cashfree {
8760
8887
  } else {
8761
8888
  scope.setExtra('environment', 'production');
8762
8889
  }
8763
- scope.setExtra('release', "3.2.0");
8890
+ scope.setExtra('release', "3.2.1");
8764
8891
  });
8765
8892
  }
8766
8893
  try {
@@ -8822,7 +8949,7 @@ export class Cashfree {
8822
8949
  } else {
8823
8950
  scope.setExtra('environment', 'production');
8824
8951
  }
8825
- scope.setExtra('release', "3.2.0");
8952
+ scope.setExtra('release', "3.2.1");
8826
8953
  });
8827
8954
  }
8828
8955
  try {
@@ -8882,7 +9009,7 @@ export class Cashfree {
8882
9009
  } else {
8883
9010
  scope.setExtra('environment', 'production');
8884
9011
  }
8885
- scope.setExtra('release', "3.2.0");
9012
+ scope.setExtra('release', "3.2.1");
8886
9013
  });
8887
9014
  }
8888
9015
  try {
@@ -8942,7 +9069,7 @@ export class Cashfree {
8942
9069
  } else {
8943
9070
  scope.setExtra('environment', 'production');
8944
9071
  }
8945
- scope.setExtra('release', "3.2.0");
9072
+ scope.setExtra('release', "3.2.1");
8946
9073
  });
8947
9074
  }
8948
9075
  try {
@@ -9002,7 +9129,7 @@ export class Cashfree {
9002
9129
  } else {
9003
9130
  scope.setExtra('environment', 'production');
9004
9131
  }
9005
- scope.setExtra('release', "3.2.0");
9132
+ scope.setExtra('release', "3.2.1");
9006
9133
  });
9007
9134
  }
9008
9135
  try {
@@ -9062,7 +9189,7 @@ export class Cashfree {
9062
9189
  } else {
9063
9190
  scope.setExtra('environment', 'production');
9064
9191
  }
9065
- scope.setExtra('release', "3.2.0");
9192
+ scope.setExtra('release', "3.2.1");
9066
9193
  });
9067
9194
  }
9068
9195
  try {
@@ -9123,7 +9250,7 @@ export class Cashfree {
9123
9250
  } else {
9124
9251
  scope.setExtra('environment', 'production');
9125
9252
  }
9126
- scope.setExtra('release', "3.2.0");
9253
+ scope.setExtra('release', "3.2.1");
9127
9254
  });
9128
9255
  }
9129
9256
  try {
@@ -9184,7 +9311,7 @@ export class Cashfree {
9184
9311
  } else {
9185
9312
  scope.setExtra('environment', 'production');
9186
9313
  }
9187
- scope.setExtra('release', "3.2.0");
9314
+ scope.setExtra('release', "3.2.1");
9188
9315
  });
9189
9316
  }
9190
9317
  try {
@@ -9245,7 +9372,7 @@ export class Cashfree {
9245
9372
  } else {
9246
9373
  scope.setExtra('environment', 'production');
9247
9374
  }
9248
- scope.setExtra('release', "3.2.0");
9375
+ scope.setExtra('release', "3.2.1");
9249
9376
  });
9250
9377
  }
9251
9378
  try {
@@ -9305,7 +9432,7 @@ export class Cashfree {
9305
9432
  } else {
9306
9433
  scope.setExtra('environment', 'production');
9307
9434
  }
9308
- scope.setExtra('release', "3.2.0");
9435
+ scope.setExtra('release', "3.2.1");
9309
9436
  });
9310
9437
  }
9311
9438
  try {
@@ -9365,7 +9492,7 @@ export class Cashfree {
9365
9492
  } else {
9366
9493
  scope.setExtra('environment', 'production');
9367
9494
  }
9368
- scope.setExtra('release', "3.2.0");
9495
+ scope.setExtra('release', "3.2.1");
9369
9496
  });
9370
9497
  }
9371
9498
  try {
@@ -9426,7 +9553,7 @@ export class Cashfree {
9426
9553
  } else {
9427
9554
  scope.setExtra('environment', 'production');
9428
9555
  }
9429
- scope.setExtra('release', "3.2.0");
9556
+ scope.setExtra('release', "3.2.1");
9430
9557
  });
9431
9558
  }
9432
9559
  try {
@@ -9487,7 +9614,7 @@ export class Cashfree {
9487
9614
  } else {
9488
9615
  scope.setExtra('environment', 'production');
9489
9616
  }
9490
- scope.setExtra('release', "3.2.0");
9617
+ scope.setExtra('release', "3.2.1");
9491
9618
  });
9492
9619
  }
9493
9620
  try {
@@ -9547,7 +9674,7 @@ export class Cashfree {
9547
9674
  } else {
9548
9675
  scope.setExtra('environment', 'production');
9549
9676
  }
9550
- scope.setExtra('release', "3.2.0");
9677
+ scope.setExtra('release', "3.2.1");
9551
9678
  });
9552
9679
  }
9553
9680
  try {
@@ -9609,7 +9736,7 @@ export class Cashfree {
9609
9736
  } else {
9610
9737
  scope.setExtra('environment', 'production');
9611
9738
  }
9612
- scope.setExtra('release', "3.2.0");
9739
+ scope.setExtra('release', "3.2.1");
9613
9740
  });
9614
9741
  }
9615
9742
  try {
@@ -9671,7 +9798,7 @@ export class Cashfree {
9671
9798
  } else {
9672
9799
  scope.setExtra('environment', 'production');
9673
9800
  }
9674
- scope.setExtra('release', "3.2.0");
9801
+ scope.setExtra('release', "3.2.1");
9675
9802
  });
9676
9803
  }
9677
9804
  try {
@@ -9731,7 +9858,7 @@ export class Cashfree {
9731
9858
  } else {
9732
9859
  scope.setExtra('environment', 'production');
9733
9860
  }
9734
- scope.setExtra('release', "3.2.0");
9861
+ scope.setExtra('release', "3.2.1");
9735
9862
  });
9736
9863
  }
9737
9864
  try {
@@ -9791,7 +9918,7 @@ export class Cashfree {
9791
9918
  } else {
9792
9919
  scope.setExtra('environment', 'production');
9793
9920
  }
9794
- scope.setExtra('release', "3.2.0");
9921
+ scope.setExtra('release', "3.2.1");
9795
9922
  });
9796
9923
  }
9797
9924
  try {
@@ -9851,7 +9978,7 @@ export class Cashfree {
9851
9978
  } else {
9852
9979
  scope.setExtra('environment', 'production');
9853
9980
  }
9854
- scope.setExtra('release', "3.2.0");
9981
+ scope.setExtra('release', "3.2.1");
9855
9982
  });
9856
9983
  }
9857
9984
  try {
@@ -9911,7 +10038,7 @@ export class Cashfree {
9911
10038
  } else {
9912
10039
  scope.setExtra('environment', 'production');
9913
10040
  }
9914
- scope.setExtra('release', "3.2.0");
10041
+ scope.setExtra('release', "3.2.1");
9915
10042
  });
9916
10043
  }
9917
10044
  try {
@@ -9972,7 +10099,7 @@ export class Cashfree {
9972
10099
  } else {
9973
10100
  scope.setExtra('environment', 'production');
9974
10101
  }
9975
- scope.setExtra('release', "3.2.0");
10102
+ scope.setExtra('release', "3.2.1");
9976
10103
  });
9977
10104
  }
9978
10105
  try {
@@ -10033,7 +10160,7 @@ export class Cashfree {
10033
10160
  } else {
10034
10161
  scope.setExtra('environment', 'production');
10035
10162
  }
10036
- scope.setExtra('release', "3.2.0");
10163
+ scope.setExtra('release', "3.2.1");
10037
10164
  });
10038
10165
  }
10039
10166
  try {
@@ -10094,7 +10221,7 @@ export class Cashfree {
10094
10221
  } else {
10095
10222
  scope.setExtra('environment', 'production');
10096
10223
  }
10097
- scope.setExtra('release', "3.2.0");
10224
+ scope.setExtra('release', "3.2.1");
10098
10225
  });
10099
10226
  }
10100
10227
  try {
@@ -10155,7 +10282,7 @@ export class Cashfree {
10155
10282
  } else {
10156
10283
  scope.setExtra('environment', 'production');
10157
10284
  }
10158
- scope.setExtra('release', "3.2.0");
10285
+ scope.setExtra('release', "3.2.1");
10159
10286
  });
10160
10287
  }
10161
10288
  try {
@@ -10216,7 +10343,7 @@ export class Cashfree {
10216
10343
  } else {
10217
10344
  scope.setExtra('environment', 'production');
10218
10345
  }
10219
- scope.setExtra('release', "3.2.0");
10346
+ scope.setExtra('release', "3.2.1");
10220
10347
  });
10221
10348
  }
10222
10349
  try {