cashfree-pg 3.1.4 → 3.2.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
@@ -2961,6 +2961,170 @@ export const PaymentEntityPaymentStatusEnum = {
2961
2961
 
2962
2962
  export type PaymentEntityPaymentStatusEnum = typeof PaymentEntityPaymentStatusEnum[keyof typeof PaymentEntityPaymentStatusEnum];
2963
2963
 
2964
+ /**
2965
+ * The customer details that are necessary. Note that you can pass dummy details if your use case does not require the customer details.
2966
+ * @export
2967
+ * @interface PaymentLinkCustomerDetails
2968
+ */
2969
+ export interface PaymentLinkCustomerDetails {
2970
+ /**
2971
+ * A unique identifier for the customer. Use alphanumeric values only.
2972
+ * @type {string}
2973
+ * @memberof PaymentLinkCustomerDetails
2974
+ */
2975
+ 'customer_id'?: string;
2976
+ /**
2977
+ * Customer email address.
2978
+ * @type {string}
2979
+ * @memberof PaymentLinkCustomerDetails
2980
+ */
2981
+ 'customer_email'?: string;
2982
+ /**
2983
+ * Customer phone number.
2984
+ * @type {string}
2985
+ * @memberof PaymentLinkCustomerDetails
2986
+ */
2987
+ 'customer_phone': string;
2988
+ /**
2989
+ * Name of the customer.
2990
+ * @type {string}
2991
+ * @memberof PaymentLinkCustomerDetails
2992
+ */
2993
+ 'customer_name'?: string;
2994
+ /**
2995
+ * Customer bank account. Required if you want to do a bank account check (TPV)
2996
+ * @type {string}
2997
+ * @memberof PaymentLinkCustomerDetails
2998
+ */
2999
+ 'customer_bank_account_number'?: string;
3000
+ /**
3001
+ * Customer bank IFSC. Required if you want to do a bank account check (TPV)
3002
+ * @type {string}
3003
+ * @memberof PaymentLinkCustomerDetails
3004
+ */
3005
+ 'customer_bank_ifsc'?: string;
3006
+ /**
3007
+ * Customer bank code. Required for net banking payments, if you want to do a bank account check (TPV)
3008
+ * @type {number}
3009
+ * @memberof PaymentLinkCustomerDetails
3010
+ */
3011
+ 'customer_bank_code'?: number;
3012
+ }
3013
+ /**
3014
+ * The complete order entity
3015
+ * @export
3016
+ * @interface PaymentLinkOrderEntity
3017
+ */
3018
+ export interface PaymentLinkOrderEntity {
3019
+ /**
3020
+ * unique id generated by cashfree for your order
3021
+ * @type {number}
3022
+ * @memberof PaymentLinkOrderEntity
3023
+ */
3024
+ 'cf_order_id'?: number;
3025
+ /**
3026
+ * link id of the order
3027
+ * @type {string}
3028
+ * @memberof PaymentLinkOrderEntity
3029
+ */
3030
+ 'link_id'?: string;
3031
+ /**
3032
+ * order_id sent during the api request
3033
+ * @type {string}
3034
+ * @memberof PaymentLinkOrderEntity
3035
+ */
3036
+ 'order_id'?: string;
3037
+ /**
3038
+ * Type of the entity.
3039
+ * @type {string}
3040
+ * @memberof PaymentLinkOrderEntity
3041
+ */
3042
+ 'entity'?: string;
3043
+ /**
3044
+ * Currency of the order. Example INR
3045
+ * @type {string}
3046
+ * @memberof PaymentLinkOrderEntity
3047
+ */
3048
+ 'order_currency'?: string;
3049
+ /**
3050
+ *
3051
+ * @type {number}
3052
+ * @memberof PaymentLinkOrderEntity
3053
+ */
3054
+ 'order_amount'?: number;
3055
+ /**
3056
+ * Possible values are - `ACTIVE`: Order does not have a sucessful transaction yet - `PAID`: Order is PAID with one successful transaction - `EXPIRED`: Order was not PAID and not it has expired. No transaction can be initiated for an EXPIRED order.
3057
+ * @type {string}
3058
+ * @memberof PaymentLinkOrderEntity
3059
+ */
3060
+ 'order_status'?: string;
3061
+ /**
3062
+ *
3063
+ * @type {string}
3064
+ * @memberof PaymentLinkOrderEntity
3065
+ */
3066
+ 'payment_session_id'?: string;
3067
+ /**
3068
+ *
3069
+ * @type {string}
3070
+ * @memberof PaymentLinkOrderEntity
3071
+ */
3072
+ 'order_expiry_time'?: string;
3073
+ /**
3074
+ * Additional note for order
3075
+ * @type {string}
3076
+ * @memberof PaymentLinkOrderEntity
3077
+ */
3078
+ 'order_note'?: string;
3079
+ /**
3080
+ * When the order was created at cashfree\'s server
3081
+ * @type {string}
3082
+ * @memberof PaymentLinkOrderEntity
3083
+ */
3084
+ 'created_at'?: string;
3085
+ /**
3086
+ *
3087
+ * @type {Array<VendorSplit>}
3088
+ * @memberof PaymentLinkOrderEntity
3089
+ */
3090
+ 'order_splits'?: Array<VendorSplit>;
3091
+ /**
3092
+ *
3093
+ * @type {PaymentLinkCustomerDetails}
3094
+ * @memberof PaymentLinkOrderEntity
3095
+ */
3096
+ 'customer_details'?: PaymentLinkCustomerDetails;
3097
+ /**
3098
+ *
3099
+ * @type {OrderMeta}
3100
+ * @memberof PaymentLinkOrderEntity
3101
+ */
3102
+ 'order_meta'?: OrderMeta;
3103
+ /**
3104
+ *
3105
+ * @type {PaymentURLObject}
3106
+ * @memberof PaymentLinkOrderEntity
3107
+ */
3108
+ 'payments'?: PaymentURLObject;
3109
+ /**
3110
+ *
3111
+ * @type {SettlementURLObject}
3112
+ * @memberof PaymentLinkOrderEntity
3113
+ */
3114
+ 'settlements'?: SettlementURLObject;
3115
+ /**
3116
+ *
3117
+ * @type {RefundURLObject}
3118
+ * @memberof PaymentLinkOrderEntity
3119
+ */
3120
+ 'refunds'?: RefundURLObject;
3121
+ /**
3122
+ * Custom Tags in thr form of {\"key\":\"value\"} which can be passed for an order. A maximum of 10 tags can be added
3123
+ * @type {{ [key: string]: string; }}
3124
+ * @memberof PaymentLinkOrderEntity
3125
+ */
3126
+ 'order_tags'?: { [key: string]: string; };
3127
+ }
2964
3128
  /**
2965
3129
  * payment method app object in payment entity
2966
3130
  * @export
@@ -4864,7 +5028,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4864
5028
 
4865
5029
  localVarHeaderParameter['Content-Type'] = 'application/json';
4866
5030
 
4867
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5031
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
4868
5032
  if (x_api_version != null && x_api_version != undefined) {
4869
5033
  localVarHeaderParameter['x-api-version'] = x_api_version;
4870
5034
  }
@@ -4938,7 +5102,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
4938
5102
 
4939
5103
  localVarHeaderParameter['Content-Type'] = 'application/json';
4940
5104
 
4941
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5105
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
4942
5106
  if (x_api_version != null && x_api_version != undefined) {
4943
5107
  localVarHeaderParameter['x-api-version'] = x_api_version;
4944
5108
  }
@@ -5012,7 +5176,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
5012
5176
 
5013
5177
  localVarHeaderParameter['Content-Type'] = 'application/json';
5014
5178
 
5015
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5179
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5016
5180
  if (x_api_version != null && x_api_version != undefined) {
5017
5181
  localVarHeaderParameter['x-api-version'] = x_api_version;
5018
5182
  }
@@ -5086,7 +5250,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
5086
5250
 
5087
5251
  localVarHeaderParameter['Content-Type'] = 'application/json';
5088
5252
 
5089
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5253
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5090
5254
  if (x_api_version != null && x_api_version != undefined) {
5091
5255
  localVarHeaderParameter['x-api-version'] = x_api_version;
5092
5256
  }
@@ -5260,7 +5424,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
5260
5424
 
5261
5425
  localVarHeaderParameter['Content-Type'] = 'application/json';
5262
5426
 
5263
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5427
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5264
5428
  if (x_api_version != null && x_api_version != undefined) {
5265
5429
  localVarHeaderParameter['x-api-version'] = x_api_version;
5266
5430
  }
@@ -5333,7 +5497,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
5333
5497
 
5334
5498
 
5335
5499
 
5336
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5500
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5337
5501
  if (x_api_version != null && x_api_version != undefined) {
5338
5502
  localVarHeaderParameter['x-api-version'] = x_api_version;
5339
5503
  }
@@ -5470,7 +5634,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
5470
5634
 
5471
5635
  localVarHeaderParameter['Content-Type'] = 'application/json';
5472
5636
 
5473
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5637
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5474
5638
  if (x_api_version != null && x_api_version != undefined) {
5475
5639
  localVarHeaderParameter['x-api-version'] = x_api_version;
5476
5640
  }
@@ -5543,7 +5707,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
5543
5707
 
5544
5708
 
5545
5709
 
5546
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5710
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5547
5711
  if (x_api_version != null && x_api_version != undefined) {
5548
5712
  localVarHeaderParameter['x-api-version'] = x_api_version;
5549
5713
  }
@@ -5682,7 +5846,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura
5682
5846
 
5683
5847
  localVarHeaderParameter['Content-Type'] = 'application/json';
5684
5848
 
5685
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5849
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5686
5850
  if (x_api_version != null && x_api_version != undefined) {
5687
5851
  localVarHeaderParameter['x-api-version'] = x_api_version;
5688
5852
  }
@@ -5803,7 +5967,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5803
5967
 
5804
5968
 
5805
5969
 
5806
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
5970
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5807
5971
  if (x_api_version != null && x_api_version != undefined) {
5808
5972
  localVarHeaderParameter['x-api-version'] = x_api_version;
5809
5973
  }
@@ -5876,7 +6040,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5876
6040
 
5877
6041
  localVarHeaderParameter['Content-Type'] = 'application/json';
5878
6042
 
5879
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6043
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5880
6044
  if (x_api_version != null && x_api_version != undefined) {
5881
6045
  localVarHeaderParameter['x-api-version'] = x_api_version;
5882
6046
  }
@@ -5949,7 +6113,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
5949
6113
 
5950
6114
 
5951
6115
 
5952
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6116
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
5953
6117
  if (x_api_version != null && x_api_version != undefined) {
5954
6118
  localVarHeaderParameter['x-api-version'] = x_api_version;
5955
6119
  }
@@ -6021,7 +6185,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
6021
6185
 
6022
6186
 
6023
6187
 
6024
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6188
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6025
6189
  if (x_api_version != null && x_api_version != undefined) {
6026
6190
  localVarHeaderParameter['x-api-version'] = x_api_version;
6027
6191
  }
@@ -6116,7 +6280,7 @@ const PaymentLinksApiFp = function(configuration?: Configuration) {
6116
6280
  * @param {*} [options] Override http request option.
6117
6281
  * @throws {RequiredError}
6118
6282
  */
6119
- async pGLinkFetchOrders(x_api_version: string, link_id: string, x_request_id?: string, x_idempotency_key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderEntity>>> {
6283
+ async pGLinkFetchOrders(x_api_version: string, link_id: string, x_request_id?: string, x_idempotency_key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PaymentLinkOrderEntity>>> {
6120
6284
  const localVarAxiosArgs = await localVarAxiosParamCreator.pGLinkFetchOrders(x_api_version, link_id, x_request_id, x_idempotency_key, options);
6121
6285
  var url = "https://sandbox.cashfree.com/pg";
6122
6286
  if(Cashfree.XEnvironment == CFEnvironment.PRODUCTION) {
@@ -6198,7 +6362,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6198
6362
 
6199
6363
  localVarHeaderParameter['Content-Type'] = 'application/json';
6200
6364
 
6201
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6365
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6202
6366
  if (x_api_version != null && x_api_version != undefined) {
6203
6367
  localVarHeaderParameter['x-api-version'] = x_api_version;
6204
6368
  }
@@ -6261,7 +6425,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6261
6425
 
6262
6426
  localVarHeaderParameter['Content-Type'] = 'application/json';
6263
6427
 
6264
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6428
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6265
6429
  if (x_api_version != null && x_api_version != undefined) {
6266
6430
  localVarHeaderParameter['x-api-version'] = x_api_version;
6267
6431
  }
@@ -6338,7 +6502,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6338
6502
 
6339
6503
 
6340
6504
 
6341
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6505
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6342
6506
  if (x_api_version != null && x_api_version != undefined) {
6343
6507
  localVarHeaderParameter['x-api-version'] = x_api_version;
6344
6508
  }
@@ -6410,7 +6574,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6410
6574
 
6411
6575
 
6412
6576
 
6413
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6577
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6414
6578
  if (x_api_version != null && x_api_version != undefined) {
6415
6579
  localVarHeaderParameter['x-api-version'] = x_api_version;
6416
6580
  }
@@ -6468,7 +6632,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
6468
6632
 
6469
6633
  localVarHeaderParameter['Content-Type'] = 'application/json';
6470
6634
 
6471
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6635
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6472
6636
  if (x_api_version != null && x_api_version != undefined) {
6473
6637
  localVarHeaderParameter['x-api-version'] = x_api_version;
6474
6638
  }
@@ -6667,7 +6831,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6667
6831
 
6668
6832
  localVarHeaderParameter['Content-Type'] = 'application/json';
6669
6833
 
6670
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6834
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6671
6835
  if (x_api_version != null && x_api_version != undefined) {
6672
6836
  localVarHeaderParameter['x-api-version'] = x_api_version;
6673
6837
  }
@@ -6744,7 +6908,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6744
6908
 
6745
6909
 
6746
6910
 
6747
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6911
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6748
6912
  if (x_api_version != null && x_api_version != undefined) {
6749
6913
  localVarHeaderParameter['x-api-version'] = x_api_version;
6750
6914
  }
@@ -6816,7 +6980,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
6816
6980
 
6817
6981
 
6818
6982
 
6819
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
6983
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6820
6984
  if (x_api_version != null && x_api_version != undefined) {
6821
6985
  localVarHeaderParameter['x-api-version'] = x_api_version;
6822
6986
  }
@@ -6975,7 +7139,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
6975
7139
 
6976
7140
  localVarHeaderParameter['Content-Type'] = 'application/json';
6977
7141
 
6978
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
7142
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
6979
7143
  if (x_api_version != null && x_api_version != undefined) {
6980
7144
  localVarHeaderParameter['x-api-version'] = x_api_version;
6981
7145
  }
@@ -7051,7 +7215,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
7051
7215
 
7052
7216
  localVarHeaderParameter['Content-Type'] = 'application/json';
7053
7217
 
7054
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
7218
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7055
7219
  if (x_api_version != null && x_api_version != undefined) {
7056
7220
  localVarHeaderParameter['x-api-version'] = x_api_version;
7057
7221
  }
@@ -7192,7 +7356,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
7192
7356
 
7193
7357
 
7194
7358
 
7195
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
7359
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7196
7360
  if (x_api_version != null && x_api_version != undefined) {
7197
7361
  localVarHeaderParameter['x-api-version'] = x_api_version;
7198
7362
  }
@@ -7311,7 +7475,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7311
7475
 
7312
7476
  localVarHeaderParameter['Content-Type'] = 'application/json';
7313
7477
 
7314
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
7478
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7315
7479
  if (x_api_version != null && x_api_version != undefined) {
7316
7480
  localVarHeaderParameter['x-api-version'] = x_api_version;
7317
7481
  }
@@ -7385,7 +7549,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7385
7549
 
7386
7550
  localVarHeaderParameter['Content-Type'] = 'application/json';
7387
7551
 
7388
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
7552
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7389
7553
  if (x_api_version != null && x_api_version != undefined) {
7390
7554
  localVarHeaderParameter['x-api-version'] = x_api_version;
7391
7555
  }
@@ -7458,7 +7622,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7458
7622
 
7459
7623
 
7460
7624
 
7461
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
7625
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7462
7626
  if (x_api_version != null && x_api_version != undefined) {
7463
7627
  localVarHeaderParameter['x-api-version'] = x_api_version;
7464
7628
  }
@@ -7540,7 +7704,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
7540
7704
 
7541
7705
 
7542
7706
 
7543
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
7707
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7544
7708
  if (x_api_version != null && x_api_version != undefined) {
7545
7709
  localVarHeaderParameter['x-api-version'] = x_api_version;
7546
7710
  }
@@ -7717,7 +7881,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7717
7881
 
7718
7882
 
7719
7883
 
7720
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
7884
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7721
7885
  if (x_api_version != null && x_api_version != undefined) {
7722
7886
  localVarHeaderParameter['x-api-version'] = x_api_version;
7723
7887
  }
@@ -7793,7 +7957,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7793
7957
 
7794
7958
 
7795
7959
 
7796
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
7960
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7797
7961
  if (x_api_version != null && x_api_version != undefined) {
7798
7962
  localVarHeaderParameter['x-api-version'] = x_api_version;
7799
7963
  }
@@ -7872,7 +8036,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7872
8036
 
7873
8037
 
7874
8038
 
7875
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
8039
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7876
8040
  if (x_api_version != null && x_api_version != undefined) {
7877
8041
  localVarHeaderParameter['x-api-version'] = x_api_version;
7878
8042
  }
@@ -7948,7 +8112,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
7948
8112
 
7949
8113
 
7950
8114
 
7951
- localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1.4';
8115
+ localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.0';
7952
8116
  if (x_api_version != null && x_api_version != undefined) {
7953
8117
  localVarHeaderParameter['x-api-version'] = x_api_version;
7954
8118
  }
@@ -8176,7 +8340,7 @@ export class Cashfree {
8176
8340
  } else {
8177
8341
  scope.setExtra('environment', 'production');
8178
8342
  }
8179
- scope.setExtra('release', "3.1.4");
8343
+ scope.setExtra('release', "3.2.0");
8180
8344
  });
8181
8345
  }
8182
8346
  try {
@@ -8236,7 +8400,7 @@ export class Cashfree {
8236
8400
  } else {
8237
8401
  scope.setExtra('environment', 'production');
8238
8402
  }
8239
- scope.setExtra('release', "3.1.4");
8403
+ scope.setExtra('release', "3.2.0");
8240
8404
  });
8241
8405
  }
8242
8406
  try {
@@ -8296,7 +8460,7 @@ export class Cashfree {
8296
8460
  } else {
8297
8461
  scope.setExtra('environment', 'production');
8298
8462
  }
8299
- scope.setExtra('release', "3.1.4");
8463
+ scope.setExtra('release', "3.2.0");
8300
8464
  });
8301
8465
  }
8302
8466
  try {
@@ -8356,7 +8520,7 @@ export class Cashfree {
8356
8520
  } else {
8357
8521
  scope.setExtra('environment', 'production');
8358
8522
  }
8359
- scope.setExtra('release', "3.1.4");
8523
+ scope.setExtra('release', "3.2.0");
8360
8524
  });
8361
8525
  }
8362
8526
  try {
@@ -8416,7 +8580,7 @@ export class Cashfree {
8416
8580
  } else {
8417
8581
  scope.setExtra('environment', 'production');
8418
8582
  }
8419
- scope.setExtra('release', "3.1.4");
8583
+ scope.setExtra('release', "3.2.0");
8420
8584
  });
8421
8585
  }
8422
8586
  try {
@@ -8476,7 +8640,7 @@ export class Cashfree {
8476
8640
  } else {
8477
8641
  scope.setExtra('environment', 'production');
8478
8642
  }
8479
- scope.setExtra('release', "3.1.4");
8643
+ scope.setExtra('release', "3.2.0");
8480
8644
  });
8481
8645
  }
8482
8646
  try {
@@ -8536,7 +8700,7 @@ export class Cashfree {
8536
8700
  } else {
8537
8701
  scope.setExtra('environment', 'production');
8538
8702
  }
8539
- scope.setExtra('release', "3.1.4");
8703
+ scope.setExtra('release', "3.2.0");
8540
8704
  });
8541
8705
  }
8542
8706
  try {
@@ -8596,7 +8760,7 @@ export class Cashfree {
8596
8760
  } else {
8597
8761
  scope.setExtra('environment', 'production');
8598
8762
  }
8599
- scope.setExtra('release', "3.1.4");
8763
+ scope.setExtra('release', "3.2.0");
8600
8764
  });
8601
8765
  }
8602
8766
  try {
@@ -8658,7 +8822,7 @@ export class Cashfree {
8658
8822
  } else {
8659
8823
  scope.setExtra('environment', 'production');
8660
8824
  }
8661
- scope.setExtra('release', "3.1.4");
8825
+ scope.setExtra('release', "3.2.0");
8662
8826
  });
8663
8827
  }
8664
8828
  try {
@@ -8718,7 +8882,7 @@ export class Cashfree {
8718
8882
  } else {
8719
8883
  scope.setExtra('environment', 'production');
8720
8884
  }
8721
- scope.setExtra('release', "3.1.4");
8885
+ scope.setExtra('release', "3.2.0");
8722
8886
  });
8723
8887
  }
8724
8888
  try {
@@ -8778,7 +8942,7 @@ export class Cashfree {
8778
8942
  } else {
8779
8943
  scope.setExtra('environment', 'production');
8780
8944
  }
8781
- scope.setExtra('release', "3.1.4");
8945
+ scope.setExtra('release', "3.2.0");
8782
8946
  });
8783
8947
  }
8784
8948
  try {
@@ -8838,7 +9002,7 @@ export class Cashfree {
8838
9002
  } else {
8839
9003
  scope.setExtra('environment', 'production');
8840
9004
  }
8841
- scope.setExtra('release', "3.1.4");
9005
+ scope.setExtra('release', "3.2.0");
8842
9006
  });
8843
9007
  }
8844
9008
  try {
@@ -8898,7 +9062,7 @@ export class Cashfree {
8898
9062
  } else {
8899
9063
  scope.setExtra('environment', 'production');
8900
9064
  }
8901
- scope.setExtra('release', "3.1.4");
9065
+ scope.setExtra('release', "3.2.0");
8902
9066
  });
8903
9067
  }
8904
9068
  try {
@@ -8959,7 +9123,7 @@ export class Cashfree {
8959
9123
  } else {
8960
9124
  scope.setExtra('environment', 'production');
8961
9125
  }
8962
- scope.setExtra('release', "3.1.4");
9126
+ scope.setExtra('release', "3.2.0");
8963
9127
  });
8964
9128
  }
8965
9129
  try {
@@ -9020,7 +9184,7 @@ export class Cashfree {
9020
9184
  } else {
9021
9185
  scope.setExtra('environment', 'production');
9022
9186
  }
9023
- scope.setExtra('release', "3.1.4");
9187
+ scope.setExtra('release', "3.2.0");
9024
9188
  });
9025
9189
  }
9026
9190
  try {
@@ -9081,7 +9245,7 @@ export class Cashfree {
9081
9245
  } else {
9082
9246
  scope.setExtra('environment', 'production');
9083
9247
  }
9084
- scope.setExtra('release', "3.1.4");
9248
+ scope.setExtra('release', "3.2.0");
9085
9249
  });
9086
9250
  }
9087
9251
  try {
@@ -9141,7 +9305,7 @@ export class Cashfree {
9141
9305
  } else {
9142
9306
  scope.setExtra('environment', 'production');
9143
9307
  }
9144
- scope.setExtra('release', "3.1.4");
9308
+ scope.setExtra('release', "3.2.0");
9145
9309
  });
9146
9310
  }
9147
9311
  try {
@@ -9201,7 +9365,7 @@ export class Cashfree {
9201
9365
  } else {
9202
9366
  scope.setExtra('environment', 'production');
9203
9367
  }
9204
- scope.setExtra('release', "3.1.4");
9368
+ scope.setExtra('release', "3.2.0");
9205
9369
  });
9206
9370
  }
9207
9371
  try {
@@ -9262,7 +9426,7 @@ export class Cashfree {
9262
9426
  } else {
9263
9427
  scope.setExtra('environment', 'production');
9264
9428
  }
9265
- scope.setExtra('release', "3.1.4");
9429
+ scope.setExtra('release', "3.2.0");
9266
9430
  });
9267
9431
  }
9268
9432
  try {
@@ -9323,7 +9487,7 @@ export class Cashfree {
9323
9487
  } else {
9324
9488
  scope.setExtra('environment', 'production');
9325
9489
  }
9326
- scope.setExtra('release', "3.1.4");
9490
+ scope.setExtra('release', "3.2.0");
9327
9491
  });
9328
9492
  }
9329
9493
  try {
@@ -9383,7 +9547,7 @@ export class Cashfree {
9383
9547
  } else {
9384
9548
  scope.setExtra('environment', 'production');
9385
9549
  }
9386
- scope.setExtra('release', "3.1.4");
9550
+ scope.setExtra('release', "3.2.0");
9387
9551
  });
9388
9552
  }
9389
9553
  try {
@@ -9445,7 +9609,7 @@ export class Cashfree {
9445
9609
  } else {
9446
9610
  scope.setExtra('environment', 'production');
9447
9611
  }
9448
- scope.setExtra('release', "3.1.4");
9612
+ scope.setExtra('release', "3.2.0");
9449
9613
  });
9450
9614
  }
9451
9615
  try {
@@ -9507,7 +9671,7 @@ export class Cashfree {
9507
9671
  } else {
9508
9672
  scope.setExtra('environment', 'production');
9509
9673
  }
9510
- scope.setExtra('release', "3.1.4");
9674
+ scope.setExtra('release', "3.2.0");
9511
9675
  });
9512
9676
  }
9513
9677
  try {
@@ -9567,7 +9731,7 @@ export class Cashfree {
9567
9731
  } else {
9568
9732
  scope.setExtra('environment', 'production');
9569
9733
  }
9570
- scope.setExtra('release', "3.1.4");
9734
+ scope.setExtra('release', "3.2.0");
9571
9735
  });
9572
9736
  }
9573
9737
  try {
@@ -9627,7 +9791,7 @@ export class Cashfree {
9627
9791
  } else {
9628
9792
  scope.setExtra('environment', 'production');
9629
9793
  }
9630
- scope.setExtra('release', "3.1.4");
9794
+ scope.setExtra('release', "3.2.0");
9631
9795
  });
9632
9796
  }
9633
9797
  try {
@@ -9687,7 +9851,7 @@ export class Cashfree {
9687
9851
  } else {
9688
9852
  scope.setExtra('environment', 'production');
9689
9853
  }
9690
- scope.setExtra('release', "3.1.4");
9854
+ scope.setExtra('release', "3.2.0");
9691
9855
  });
9692
9856
  }
9693
9857
  try {
@@ -9747,7 +9911,7 @@ export class Cashfree {
9747
9911
  } else {
9748
9912
  scope.setExtra('environment', 'production');
9749
9913
  }
9750
- scope.setExtra('release', "3.1.4");
9914
+ scope.setExtra('release', "3.2.0");
9751
9915
  });
9752
9916
  }
9753
9917
  try {
@@ -9808,7 +9972,7 @@ export class Cashfree {
9808
9972
  } else {
9809
9973
  scope.setExtra('environment', 'production');
9810
9974
  }
9811
- scope.setExtra('release', "3.1.4");
9975
+ scope.setExtra('release', "3.2.0");
9812
9976
  });
9813
9977
  }
9814
9978
  try {
@@ -9869,7 +10033,7 @@ export class Cashfree {
9869
10033
  } else {
9870
10034
  scope.setExtra('environment', 'production');
9871
10035
  }
9872
- scope.setExtra('release', "3.1.4");
10036
+ scope.setExtra('release', "3.2.0");
9873
10037
  });
9874
10038
  }
9875
10039
  try {
@@ -9930,7 +10094,7 @@ export class Cashfree {
9930
10094
  } else {
9931
10095
  scope.setExtra('environment', 'production');
9932
10096
  }
9933
- scope.setExtra('release', "3.1.4");
10097
+ scope.setExtra('release', "3.2.0");
9934
10098
  });
9935
10099
  }
9936
10100
  try {
@@ -9991,7 +10155,7 @@ export class Cashfree {
9991
10155
  } else {
9992
10156
  scope.setExtra('environment', 'production');
9993
10157
  }
9994
- scope.setExtra('release', "3.1.4");
10158
+ scope.setExtra('release', "3.2.0");
9995
10159
  });
9996
10160
  }
9997
10161
  try {
@@ -10052,7 +10216,7 @@ export class Cashfree {
10052
10216
  } else {
10053
10217
  scope.setExtra('environment', 'production');
10054
10218
  }
10055
- scope.setExtra('release', "3.1.4");
10219
+ scope.setExtra('release', "3.2.0");
10056
10220
  });
10057
10221
  }
10058
10222
  try {