cashfree-pg 4.0.0 → 4.0.2
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 +215 -69
- package/dist/api.d.ts +149 -1
- package/dist/api.js +68 -68
- package/dist/esm/api.d.ts +149 -1
- package/dist/esm/api.js +68 -68
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2999,6 +2999,152 @@ export const PaymentEntityPaymentStatusEnum = {
|
|
|
2999
2999
|
|
|
3000
3000
|
export type PaymentEntityPaymentStatusEnum = typeof PaymentEntityPaymentStatusEnum[keyof typeof PaymentEntityPaymentStatusEnum];
|
|
3001
3001
|
|
|
3002
|
+
/**
|
|
3003
|
+
* The customer details that are necessary. Note that you can pass dummy details if your use case does not require the customer details.
|
|
3004
|
+
* @export
|
|
3005
|
+
* @interface PaymentLinkCustomerDetails
|
|
3006
|
+
*/
|
|
3007
|
+
export interface PaymentLinkCustomerDetails {
|
|
3008
|
+
/**
|
|
3009
|
+
* A unique identifier for the customer. Use alphanumeric values only.
|
|
3010
|
+
* @type {string}
|
|
3011
|
+
* @memberof PaymentLinkCustomerDetails
|
|
3012
|
+
*/
|
|
3013
|
+
'customer_id'?: string;
|
|
3014
|
+
/**
|
|
3015
|
+
* Customer email address.
|
|
3016
|
+
* @type {string}
|
|
3017
|
+
* @memberof PaymentLinkCustomerDetails
|
|
3018
|
+
*/
|
|
3019
|
+
'customer_email'?: string;
|
|
3020
|
+
/**
|
|
3021
|
+
* Customer phone number.
|
|
3022
|
+
* @type {string}
|
|
3023
|
+
* @memberof PaymentLinkCustomerDetails
|
|
3024
|
+
*/
|
|
3025
|
+
'customer_phone': string;
|
|
3026
|
+
/**
|
|
3027
|
+
* Name of the customer.
|
|
3028
|
+
* @type {string}
|
|
3029
|
+
* @memberof PaymentLinkCustomerDetails
|
|
3030
|
+
*/
|
|
3031
|
+
'customer_name'?: string;
|
|
3032
|
+
/**
|
|
3033
|
+
* Customer bank account. Required if you want to do a bank account check (TPV)
|
|
3034
|
+
* @type {string}
|
|
3035
|
+
* @memberof PaymentLinkCustomerDetails
|
|
3036
|
+
*/
|
|
3037
|
+
'customer_bank_account_number'?: string;
|
|
3038
|
+
/**
|
|
3039
|
+
* Customer bank IFSC. Required if you want to do a bank account check (TPV)
|
|
3040
|
+
* @type {string}
|
|
3041
|
+
* @memberof PaymentLinkCustomerDetails
|
|
3042
|
+
*/
|
|
3043
|
+
'customer_bank_ifsc'?: string;
|
|
3044
|
+
/**
|
|
3045
|
+
* Customer bank code. Required for net banking payments, if you want to do a bank account check (TPV)
|
|
3046
|
+
* @type {number}
|
|
3047
|
+
* @memberof PaymentLinkCustomerDetails
|
|
3048
|
+
*/
|
|
3049
|
+
'customer_bank_code'?: number;
|
|
3050
|
+
}
|
|
3051
|
+
/**
|
|
3052
|
+
* The complete order entity
|
|
3053
|
+
* @export
|
|
3054
|
+
* @interface PaymentLinkOrderEntity
|
|
3055
|
+
*/
|
|
3056
|
+
export interface PaymentLinkOrderEntity {
|
|
3057
|
+
/**
|
|
3058
|
+
* unique id generated by cashfree for your order
|
|
3059
|
+
* @type {string}
|
|
3060
|
+
* @memberof PaymentLinkOrderEntity
|
|
3061
|
+
*/
|
|
3062
|
+
'cf_order_id'?: string;
|
|
3063
|
+
/**
|
|
3064
|
+
* link id of the order
|
|
3065
|
+
* @type {string}
|
|
3066
|
+
* @memberof PaymentLinkOrderEntity
|
|
3067
|
+
*/
|
|
3068
|
+
'link_id'?: string;
|
|
3069
|
+
/**
|
|
3070
|
+
* order_id sent during the api request
|
|
3071
|
+
* @type {string}
|
|
3072
|
+
* @memberof PaymentLinkOrderEntity
|
|
3073
|
+
*/
|
|
3074
|
+
'order_id'?: string;
|
|
3075
|
+
/**
|
|
3076
|
+
* Type of the entity.
|
|
3077
|
+
* @type {string}
|
|
3078
|
+
* @memberof PaymentLinkOrderEntity
|
|
3079
|
+
*/
|
|
3080
|
+
'entity'?: string;
|
|
3081
|
+
/**
|
|
3082
|
+
* Currency of the order. Example INR
|
|
3083
|
+
* @type {string}
|
|
3084
|
+
* @memberof PaymentLinkOrderEntity
|
|
3085
|
+
*/
|
|
3086
|
+
'order_currency'?: string;
|
|
3087
|
+
/**
|
|
3088
|
+
*
|
|
3089
|
+
* @type {number}
|
|
3090
|
+
* @memberof PaymentLinkOrderEntity
|
|
3091
|
+
*/
|
|
3092
|
+
'order_amount'?: number;
|
|
3093
|
+
/**
|
|
3094
|
+
* 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.
|
|
3095
|
+
* @type {string}
|
|
3096
|
+
* @memberof PaymentLinkOrderEntity
|
|
3097
|
+
*/
|
|
3098
|
+
'order_status'?: string;
|
|
3099
|
+
/**
|
|
3100
|
+
*
|
|
3101
|
+
* @type {string}
|
|
3102
|
+
* @memberof PaymentLinkOrderEntity
|
|
3103
|
+
*/
|
|
3104
|
+
'payment_session_id'?: string;
|
|
3105
|
+
/**
|
|
3106
|
+
*
|
|
3107
|
+
* @type {string}
|
|
3108
|
+
* @memberof PaymentLinkOrderEntity
|
|
3109
|
+
*/
|
|
3110
|
+
'order_expiry_time'?: string;
|
|
3111
|
+
/**
|
|
3112
|
+
* Additional note for order
|
|
3113
|
+
* @type {string}
|
|
3114
|
+
* @memberof PaymentLinkOrderEntity
|
|
3115
|
+
*/
|
|
3116
|
+
'order_note'?: string;
|
|
3117
|
+
/**
|
|
3118
|
+
* When the order was created at cashfree\'s server
|
|
3119
|
+
* @type {string}
|
|
3120
|
+
* @memberof PaymentLinkOrderEntity
|
|
3121
|
+
*/
|
|
3122
|
+
'created_at'?: string;
|
|
3123
|
+
/**
|
|
3124
|
+
*
|
|
3125
|
+
* @type {Array<VendorSplit>}
|
|
3126
|
+
* @memberof PaymentLinkOrderEntity
|
|
3127
|
+
*/
|
|
3128
|
+
'order_splits'?: Array<VendorSplit>;
|
|
3129
|
+
/**
|
|
3130
|
+
*
|
|
3131
|
+
* @type {PaymentLinkCustomerDetails}
|
|
3132
|
+
* @memberof PaymentLinkOrderEntity
|
|
3133
|
+
*/
|
|
3134
|
+
'customer_details'?: PaymentLinkCustomerDetails;
|
|
3135
|
+
/**
|
|
3136
|
+
*
|
|
3137
|
+
* @type {OrderMeta}
|
|
3138
|
+
* @memberof PaymentLinkOrderEntity
|
|
3139
|
+
*/
|
|
3140
|
+
'order_meta'?: OrderMeta;
|
|
3141
|
+
/**
|
|
3142
|
+
* Custom Tags in thr form of {\"key\":\"value\"} which can be passed for an order. A maximum of 10 tags can be added
|
|
3143
|
+
* @type {{ [key: string]: string; }}
|
|
3144
|
+
* @memberof PaymentLinkOrderEntity
|
|
3145
|
+
*/
|
|
3146
|
+
'order_tags'?: { [key: string]: string; };
|
|
3147
|
+
}
|
|
3002
3148
|
/**
|
|
3003
3149
|
* payment method app object in payment entity
|
|
3004
3150
|
* @export
|
|
@@ -4845,7 +4991,7 @@ const CustomersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
4845
4991
|
|
|
4846
4992
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4847
4993
|
|
|
4848
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
4994
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
4849
4995
|
if (x_api_version != null && x_api_version != undefined) {
|
|
4850
4996
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
4851
4997
|
}
|
|
@@ -4965,7 +5111,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
4965
5111
|
|
|
4966
5112
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4967
5113
|
|
|
4968
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
5114
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
4969
5115
|
if (x_api_version != null && x_api_version != undefined) {
|
|
4970
5116
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
4971
5117
|
}
|
|
@@ -5039,7 +5185,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
5039
5185
|
|
|
5040
5186
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5041
5187
|
|
|
5042
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
5188
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
5043
5189
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5044
5190
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5045
5191
|
}
|
|
@@ -5113,7 +5259,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
5113
5259
|
|
|
5114
5260
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5115
5261
|
|
|
5116
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
5262
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
5117
5263
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5118
5264
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5119
5265
|
}
|
|
@@ -5187,7 +5333,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
5187
5333
|
|
|
5188
5334
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5189
5335
|
|
|
5190
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
5336
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
5191
5337
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5192
5338
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5193
5339
|
}
|
|
@@ -5361,7 +5507,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5361
5507
|
|
|
5362
5508
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5363
5509
|
|
|
5364
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
5510
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
5365
5511
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5366
5512
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5367
5513
|
}
|
|
@@ -5434,7 +5580,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5434
5580
|
|
|
5435
5581
|
|
|
5436
5582
|
|
|
5437
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
5583
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
5438
5584
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5439
5585
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5440
5586
|
}
|
|
@@ -5571,7 +5717,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5571
5717
|
|
|
5572
5718
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5573
5719
|
|
|
5574
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
5720
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
5575
5721
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5576
5722
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5577
5723
|
}
|
|
@@ -5644,7 +5790,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5644
5790
|
|
|
5645
5791
|
|
|
5646
5792
|
|
|
5647
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
5793
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
5648
5794
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5649
5795
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5650
5796
|
}
|
|
@@ -5721,7 +5867,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5721
5867
|
|
|
5722
5868
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5723
5869
|
|
|
5724
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
5870
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
5725
5871
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5726
5872
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5727
5873
|
}
|
|
@@ -5880,7 +6026,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura
|
|
|
5880
6026
|
|
|
5881
6027
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5882
6028
|
|
|
5883
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6029
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
5884
6030
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5885
6031
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5886
6032
|
}
|
|
@@ -6001,7 +6147,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6001
6147
|
|
|
6002
6148
|
|
|
6003
6149
|
|
|
6004
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6150
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6005
6151
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6006
6152
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6007
6153
|
}
|
|
@@ -6074,7 +6220,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6074
6220
|
|
|
6075
6221
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6076
6222
|
|
|
6077
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6223
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6078
6224
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6079
6225
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6080
6226
|
}
|
|
@@ -6147,7 +6293,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6147
6293
|
|
|
6148
6294
|
|
|
6149
6295
|
|
|
6150
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6296
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6151
6297
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6152
6298
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6153
6299
|
}
|
|
@@ -6219,7 +6365,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6219
6365
|
|
|
6220
6366
|
|
|
6221
6367
|
|
|
6222
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6368
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6223
6369
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6224
6370
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6225
6371
|
}
|
|
@@ -6314,7 +6460,7 @@ const PaymentLinksApiFp = function(configuration?: Configuration) {
|
|
|
6314
6460
|
* @param {*} [options] Override http request option.
|
|
6315
6461
|
* @throws {RequiredError}
|
|
6316
6462
|
*/
|
|
6317
|
-
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<
|
|
6463
|
+
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>>> {
|
|
6318
6464
|
const localVarAxiosArgs = await localVarAxiosParamCreator.pGLinkFetchOrders(x_api_version, link_id, x_request_id, x_idempotency_key, options);
|
|
6319
6465
|
var url = "https://sandbox.cashfree.com/pg";
|
|
6320
6466
|
if(Cashfree.XEnvironment == CFEnvironment.PRODUCTION) {
|
|
@@ -6396,7 +6542,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6396
6542
|
|
|
6397
6543
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6398
6544
|
|
|
6399
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6545
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6400
6546
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6401
6547
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6402
6548
|
}
|
|
@@ -6459,7 +6605,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6459
6605
|
|
|
6460
6606
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6461
6607
|
|
|
6462
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6608
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6463
6609
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6464
6610
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6465
6611
|
}
|
|
@@ -6536,7 +6682,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6536
6682
|
|
|
6537
6683
|
|
|
6538
6684
|
|
|
6539
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6685
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6540
6686
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6541
6687
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6542
6688
|
}
|
|
@@ -6608,7 +6754,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6608
6754
|
|
|
6609
6755
|
|
|
6610
6756
|
|
|
6611
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6757
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6612
6758
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6613
6759
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6614
6760
|
}
|
|
@@ -6666,7 +6812,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6666
6812
|
|
|
6667
6813
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6668
6814
|
|
|
6669
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
6815
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6670
6816
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6671
6817
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6672
6818
|
}
|
|
@@ -6865,7 +7011,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6865
7011
|
|
|
6866
7012
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6867
7013
|
|
|
6868
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7014
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6869
7015
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6870
7016
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6871
7017
|
}
|
|
@@ -6942,7 +7088,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6942
7088
|
|
|
6943
7089
|
|
|
6944
7090
|
|
|
6945
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7091
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
6946
7092
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6947
7093
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6948
7094
|
}
|
|
@@ -7014,7 +7160,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7014
7160
|
|
|
7015
7161
|
|
|
7016
7162
|
|
|
7017
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7163
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7018
7164
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7019
7165
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7020
7166
|
}
|
|
@@ -7173,7 +7319,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
|
|
|
7173
7319
|
|
|
7174
7320
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7175
7321
|
|
|
7176
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7322
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7177
7323
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7178
7324
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7179
7325
|
}
|
|
@@ -7249,7 +7395,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
|
|
|
7249
7395
|
|
|
7250
7396
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7251
7397
|
|
|
7252
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7398
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7253
7399
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7254
7400
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7255
7401
|
}
|
|
@@ -7390,7 +7536,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
7390
7536
|
|
|
7391
7537
|
|
|
7392
7538
|
|
|
7393
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7539
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7394
7540
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7395
7541
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7396
7542
|
}
|
|
@@ -7509,7 +7655,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7509
7655
|
|
|
7510
7656
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7511
7657
|
|
|
7512
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7658
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7513
7659
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7514
7660
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7515
7661
|
}
|
|
@@ -7583,7 +7729,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7583
7729
|
|
|
7584
7730
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7585
7731
|
|
|
7586
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7732
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7587
7733
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7588
7734
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7589
7735
|
}
|
|
@@ -7656,7 +7802,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7656
7802
|
|
|
7657
7803
|
|
|
7658
7804
|
|
|
7659
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7805
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7660
7806
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7661
7807
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7662
7808
|
}
|
|
@@ -7738,7 +7884,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7738
7884
|
|
|
7739
7885
|
|
|
7740
7886
|
|
|
7741
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
7887
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7742
7888
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7743
7889
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7744
7890
|
}
|
|
@@ -7915,7 +8061,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
7915
8061
|
|
|
7916
8062
|
|
|
7917
8063
|
|
|
7918
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
8064
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7919
8065
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7920
8066
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7921
8067
|
}
|
|
@@ -7991,7 +8137,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
7991
8137
|
|
|
7992
8138
|
|
|
7993
8139
|
|
|
7994
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
8140
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
7995
8141
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7996
8142
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7997
8143
|
}
|
|
@@ -8070,7 +8216,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8070
8216
|
|
|
8071
8217
|
|
|
8072
8218
|
|
|
8073
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
8219
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
8074
8220
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8075
8221
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8076
8222
|
}
|
|
@@ -8146,7 +8292,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8146
8292
|
|
|
8147
8293
|
|
|
8148
8294
|
|
|
8149
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.
|
|
8295
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.0.2';
|
|
8150
8296
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8151
8297
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8152
8298
|
}
|
|
@@ -8374,7 +8520,7 @@ export class Cashfree {
|
|
|
8374
8520
|
} else {
|
|
8375
8521
|
scope.setExtra('environment', 'production');
|
|
8376
8522
|
}
|
|
8377
|
-
scope.setExtra('release', "4.0.
|
|
8523
|
+
scope.setExtra('release', "4.0.2");
|
|
8378
8524
|
});
|
|
8379
8525
|
}
|
|
8380
8526
|
try {
|
|
@@ -8434,7 +8580,7 @@ export class Cashfree {
|
|
|
8434
8580
|
} else {
|
|
8435
8581
|
scope.setExtra('environment', 'production');
|
|
8436
8582
|
}
|
|
8437
|
-
scope.setExtra('release', "4.0.
|
|
8583
|
+
scope.setExtra('release', "4.0.2");
|
|
8438
8584
|
});
|
|
8439
8585
|
}
|
|
8440
8586
|
try {
|
|
@@ -8494,7 +8640,7 @@ export class Cashfree {
|
|
|
8494
8640
|
} else {
|
|
8495
8641
|
scope.setExtra('environment', 'production');
|
|
8496
8642
|
}
|
|
8497
|
-
scope.setExtra('release', "4.0.
|
|
8643
|
+
scope.setExtra('release', "4.0.2");
|
|
8498
8644
|
});
|
|
8499
8645
|
}
|
|
8500
8646
|
try {
|
|
@@ -8554,7 +8700,7 @@ export class Cashfree {
|
|
|
8554
8700
|
} else {
|
|
8555
8701
|
scope.setExtra('environment', 'production');
|
|
8556
8702
|
}
|
|
8557
|
-
scope.setExtra('release', "4.0.
|
|
8703
|
+
scope.setExtra('release', "4.0.2");
|
|
8558
8704
|
});
|
|
8559
8705
|
}
|
|
8560
8706
|
try {
|
|
@@ -8614,7 +8760,7 @@ export class Cashfree {
|
|
|
8614
8760
|
} else {
|
|
8615
8761
|
scope.setExtra('environment', 'production');
|
|
8616
8762
|
}
|
|
8617
|
-
scope.setExtra('release', "4.0.
|
|
8763
|
+
scope.setExtra('release', "4.0.2");
|
|
8618
8764
|
});
|
|
8619
8765
|
}
|
|
8620
8766
|
try {
|
|
@@ -8674,7 +8820,7 @@ export class Cashfree {
|
|
|
8674
8820
|
} else {
|
|
8675
8821
|
scope.setExtra('environment', 'production');
|
|
8676
8822
|
}
|
|
8677
|
-
scope.setExtra('release', "4.0.
|
|
8823
|
+
scope.setExtra('release', "4.0.2");
|
|
8678
8824
|
});
|
|
8679
8825
|
}
|
|
8680
8826
|
try {
|
|
@@ -8734,7 +8880,7 @@ export class Cashfree {
|
|
|
8734
8880
|
} else {
|
|
8735
8881
|
scope.setExtra('environment', 'production');
|
|
8736
8882
|
}
|
|
8737
|
-
scope.setExtra('release', "4.0.
|
|
8883
|
+
scope.setExtra('release', "4.0.2");
|
|
8738
8884
|
});
|
|
8739
8885
|
}
|
|
8740
8886
|
try {
|
|
@@ -8794,7 +8940,7 @@ export class Cashfree {
|
|
|
8794
8940
|
} else {
|
|
8795
8941
|
scope.setExtra('environment', 'production');
|
|
8796
8942
|
}
|
|
8797
|
-
scope.setExtra('release', "4.0.
|
|
8943
|
+
scope.setExtra('release', "4.0.2");
|
|
8798
8944
|
});
|
|
8799
8945
|
}
|
|
8800
8946
|
try {
|
|
@@ -8854,7 +9000,7 @@ export class Cashfree {
|
|
|
8854
9000
|
} else {
|
|
8855
9001
|
scope.setExtra('environment', 'production');
|
|
8856
9002
|
}
|
|
8857
|
-
scope.setExtra('release', "4.0.
|
|
9003
|
+
scope.setExtra('release', "4.0.2");
|
|
8858
9004
|
});
|
|
8859
9005
|
}
|
|
8860
9006
|
try {
|
|
@@ -8915,7 +9061,7 @@ export class Cashfree {
|
|
|
8915
9061
|
} else {
|
|
8916
9062
|
scope.setExtra('environment', 'production');
|
|
8917
9063
|
}
|
|
8918
|
-
scope.setExtra('release', "4.0.
|
|
9064
|
+
scope.setExtra('release', "4.0.2");
|
|
8919
9065
|
});
|
|
8920
9066
|
}
|
|
8921
9067
|
try {
|
|
@@ -8977,7 +9123,7 @@ export class Cashfree {
|
|
|
8977
9123
|
} else {
|
|
8978
9124
|
scope.setExtra('environment', 'production');
|
|
8979
9125
|
}
|
|
8980
|
-
scope.setExtra('release', "4.0.
|
|
9126
|
+
scope.setExtra('release', "4.0.2");
|
|
8981
9127
|
});
|
|
8982
9128
|
}
|
|
8983
9129
|
try {
|
|
@@ -9037,7 +9183,7 @@ export class Cashfree {
|
|
|
9037
9183
|
} else {
|
|
9038
9184
|
scope.setExtra('environment', 'production');
|
|
9039
9185
|
}
|
|
9040
|
-
scope.setExtra('release', "4.0.
|
|
9186
|
+
scope.setExtra('release', "4.0.2");
|
|
9041
9187
|
});
|
|
9042
9188
|
}
|
|
9043
9189
|
try {
|
|
@@ -9097,7 +9243,7 @@ export class Cashfree {
|
|
|
9097
9243
|
} else {
|
|
9098
9244
|
scope.setExtra('environment', 'production');
|
|
9099
9245
|
}
|
|
9100
|
-
scope.setExtra('release', "4.0.
|
|
9246
|
+
scope.setExtra('release', "4.0.2");
|
|
9101
9247
|
});
|
|
9102
9248
|
}
|
|
9103
9249
|
try {
|
|
@@ -9157,7 +9303,7 @@ export class Cashfree {
|
|
|
9157
9303
|
} else {
|
|
9158
9304
|
scope.setExtra('environment', 'production');
|
|
9159
9305
|
}
|
|
9160
|
-
scope.setExtra('release', "4.0.
|
|
9306
|
+
scope.setExtra('release', "4.0.2");
|
|
9161
9307
|
});
|
|
9162
9308
|
}
|
|
9163
9309
|
try {
|
|
@@ -9217,7 +9363,7 @@ export class Cashfree {
|
|
|
9217
9363
|
} else {
|
|
9218
9364
|
scope.setExtra('environment', 'production');
|
|
9219
9365
|
}
|
|
9220
|
-
scope.setExtra('release', "4.0.
|
|
9366
|
+
scope.setExtra('release', "4.0.2");
|
|
9221
9367
|
});
|
|
9222
9368
|
}
|
|
9223
9369
|
try {
|
|
@@ -9278,7 +9424,7 @@ export class Cashfree {
|
|
|
9278
9424
|
} else {
|
|
9279
9425
|
scope.setExtra('environment', 'production');
|
|
9280
9426
|
}
|
|
9281
|
-
scope.setExtra('release', "4.0.
|
|
9427
|
+
scope.setExtra('release', "4.0.2");
|
|
9282
9428
|
});
|
|
9283
9429
|
}
|
|
9284
9430
|
try {
|
|
@@ -9339,7 +9485,7 @@ export class Cashfree {
|
|
|
9339
9485
|
} else {
|
|
9340
9486
|
scope.setExtra('environment', 'production');
|
|
9341
9487
|
}
|
|
9342
|
-
scope.setExtra('release', "4.0.
|
|
9488
|
+
scope.setExtra('release', "4.0.2");
|
|
9343
9489
|
});
|
|
9344
9490
|
}
|
|
9345
9491
|
try {
|
|
@@ -9400,7 +9546,7 @@ export class Cashfree {
|
|
|
9400
9546
|
} else {
|
|
9401
9547
|
scope.setExtra('environment', 'production');
|
|
9402
9548
|
}
|
|
9403
|
-
scope.setExtra('release', "4.0.
|
|
9549
|
+
scope.setExtra('release', "4.0.2");
|
|
9404
9550
|
});
|
|
9405
9551
|
}
|
|
9406
9552
|
try {
|
|
@@ -9460,7 +9606,7 @@ export class Cashfree {
|
|
|
9460
9606
|
} else {
|
|
9461
9607
|
scope.setExtra('environment', 'production');
|
|
9462
9608
|
}
|
|
9463
|
-
scope.setExtra('release', "4.0.
|
|
9609
|
+
scope.setExtra('release', "4.0.2");
|
|
9464
9610
|
});
|
|
9465
9611
|
}
|
|
9466
9612
|
try {
|
|
@@ -9520,7 +9666,7 @@ export class Cashfree {
|
|
|
9520
9666
|
} else {
|
|
9521
9667
|
scope.setExtra('environment', 'production');
|
|
9522
9668
|
}
|
|
9523
|
-
scope.setExtra('release', "4.0.
|
|
9669
|
+
scope.setExtra('release', "4.0.2");
|
|
9524
9670
|
});
|
|
9525
9671
|
}
|
|
9526
9672
|
try {
|
|
@@ -9581,7 +9727,7 @@ export class Cashfree {
|
|
|
9581
9727
|
} else {
|
|
9582
9728
|
scope.setExtra('environment', 'production');
|
|
9583
9729
|
}
|
|
9584
|
-
scope.setExtra('release', "4.0.
|
|
9730
|
+
scope.setExtra('release', "4.0.2");
|
|
9585
9731
|
});
|
|
9586
9732
|
}
|
|
9587
9733
|
try {
|
|
@@ -9642,7 +9788,7 @@ export class Cashfree {
|
|
|
9642
9788
|
} else {
|
|
9643
9789
|
scope.setExtra('environment', 'production');
|
|
9644
9790
|
}
|
|
9645
|
-
scope.setExtra('release', "4.0.
|
|
9791
|
+
scope.setExtra('release', "4.0.2");
|
|
9646
9792
|
});
|
|
9647
9793
|
}
|
|
9648
9794
|
try {
|
|
@@ -9702,7 +9848,7 @@ export class Cashfree {
|
|
|
9702
9848
|
} else {
|
|
9703
9849
|
scope.setExtra('environment', 'production');
|
|
9704
9850
|
}
|
|
9705
|
-
scope.setExtra('release', "4.0.
|
|
9851
|
+
scope.setExtra('release', "4.0.2");
|
|
9706
9852
|
});
|
|
9707
9853
|
}
|
|
9708
9854
|
try {
|
|
@@ -9764,7 +9910,7 @@ export class Cashfree {
|
|
|
9764
9910
|
} else {
|
|
9765
9911
|
scope.setExtra('environment', 'production');
|
|
9766
9912
|
}
|
|
9767
|
-
scope.setExtra('release', "4.0.
|
|
9913
|
+
scope.setExtra('release', "4.0.2");
|
|
9768
9914
|
});
|
|
9769
9915
|
}
|
|
9770
9916
|
try {
|
|
@@ -9826,7 +9972,7 @@ export class Cashfree {
|
|
|
9826
9972
|
} else {
|
|
9827
9973
|
scope.setExtra('environment', 'production');
|
|
9828
9974
|
}
|
|
9829
|
-
scope.setExtra('release', "4.0.
|
|
9975
|
+
scope.setExtra('release', "4.0.2");
|
|
9830
9976
|
});
|
|
9831
9977
|
}
|
|
9832
9978
|
try {
|
|
@@ -9886,7 +10032,7 @@ export class Cashfree {
|
|
|
9886
10032
|
} else {
|
|
9887
10033
|
scope.setExtra('environment', 'production');
|
|
9888
10034
|
}
|
|
9889
|
-
scope.setExtra('release', "4.0.
|
|
10035
|
+
scope.setExtra('release', "4.0.2");
|
|
9890
10036
|
});
|
|
9891
10037
|
}
|
|
9892
10038
|
try {
|
|
@@ -9946,7 +10092,7 @@ export class Cashfree {
|
|
|
9946
10092
|
} else {
|
|
9947
10093
|
scope.setExtra('environment', 'production');
|
|
9948
10094
|
}
|
|
9949
|
-
scope.setExtra('release', "4.0.
|
|
10095
|
+
scope.setExtra('release', "4.0.2");
|
|
9950
10096
|
});
|
|
9951
10097
|
}
|
|
9952
10098
|
try {
|
|
@@ -10006,7 +10152,7 @@ export class Cashfree {
|
|
|
10006
10152
|
} else {
|
|
10007
10153
|
scope.setExtra('environment', 'production');
|
|
10008
10154
|
}
|
|
10009
|
-
scope.setExtra('release', "4.0.
|
|
10155
|
+
scope.setExtra('release', "4.0.2");
|
|
10010
10156
|
});
|
|
10011
10157
|
}
|
|
10012
10158
|
try {
|
|
@@ -10066,7 +10212,7 @@ export class Cashfree {
|
|
|
10066
10212
|
} else {
|
|
10067
10213
|
scope.setExtra('environment', 'production');
|
|
10068
10214
|
}
|
|
10069
|
-
scope.setExtra('release', "4.0.
|
|
10215
|
+
scope.setExtra('release', "4.0.2");
|
|
10070
10216
|
});
|
|
10071
10217
|
}
|
|
10072
10218
|
try {
|
|
@@ -10127,7 +10273,7 @@ export class Cashfree {
|
|
|
10127
10273
|
} else {
|
|
10128
10274
|
scope.setExtra('environment', 'production');
|
|
10129
10275
|
}
|
|
10130
|
-
scope.setExtra('release', "4.0.
|
|
10276
|
+
scope.setExtra('release', "4.0.2");
|
|
10131
10277
|
});
|
|
10132
10278
|
}
|
|
10133
10279
|
try {
|
|
@@ -10188,7 +10334,7 @@ export class Cashfree {
|
|
|
10188
10334
|
} else {
|
|
10189
10335
|
scope.setExtra('environment', 'production');
|
|
10190
10336
|
}
|
|
10191
|
-
scope.setExtra('release', "4.0.
|
|
10337
|
+
scope.setExtra('release', "4.0.2");
|
|
10192
10338
|
});
|
|
10193
10339
|
}
|
|
10194
10340
|
try {
|
|
@@ -10249,7 +10395,7 @@ export class Cashfree {
|
|
|
10249
10395
|
} else {
|
|
10250
10396
|
scope.setExtra('environment', 'production');
|
|
10251
10397
|
}
|
|
10252
|
-
scope.setExtra('release', "4.0.
|
|
10398
|
+
scope.setExtra('release', "4.0.2");
|
|
10253
10399
|
});
|
|
10254
10400
|
}
|
|
10255
10401
|
try {
|
|
@@ -10310,7 +10456,7 @@ export class Cashfree {
|
|
|
10310
10456
|
} else {
|
|
10311
10457
|
scope.setExtra('environment', 'production');
|
|
10312
10458
|
}
|
|
10313
|
-
scope.setExtra('release', "4.0.
|
|
10459
|
+
scope.setExtra('release', "4.0.2");
|
|
10314
10460
|
});
|
|
10315
10461
|
}
|
|
10316
10462
|
try {
|
|
@@ -10371,7 +10517,7 @@ export class Cashfree {
|
|
|
10371
10517
|
} else {
|
|
10372
10518
|
scope.setExtra('environment', 'production');
|
|
10373
10519
|
}
|
|
10374
|
-
scope.setExtra('release', "4.0.
|
|
10520
|
+
scope.setExtra('release', "4.0.2");
|
|
10375
10521
|
});
|
|
10376
10522
|
}
|
|
10377
10523
|
try {
|