cashfree-pg 3.1.4 → 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 +401 -110
- package/dist/api.d.ts +339 -46
- package/dist/api.js +64 -64
- package/dist/esm/api.d.ts +339 -46
- package/dist/esm/api.js +64 -64
- package/docs/Eligibility.md +60 -190
- package/docs/Offers.md +61 -53
- package/docs/Orders.md +63 -59
- package/docs/PaymentLink.md +269 -113
- package/docs/Payments.md +111 -67
- package/docs/Reconciliation.md +1 -1
- package/docs/Refunds.md +74 -74
- package/docs/Settlements.md +1 -1
- package/docs/TokenVault.md +67 -64
- package/docs/Webhook.md +52 -0
- package/package.json +1 -1
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 [\'
|
|
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
|
*/
|
|
@@ -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
|
|
@@ -2969,96 +3133,209 @@ export type PaymentEntityPaymentStatusEnum = typeof PaymentEntityPaymentStatusEn
|
|
|
2969
3133
|
export interface PaymentMethodAppInPaymentsEntity {
|
|
2970
3134
|
/**
|
|
2971
3135
|
*
|
|
2972
|
-
* @type {
|
|
3136
|
+
* @type {PaymentMethodAppInPaymentsEntityApp}
|
|
2973
3137
|
* @memberof PaymentMethodAppInPaymentsEntity
|
|
2974
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
|
+
*/
|
|
2975
3152
|
'channel'?: string;
|
|
2976
3153
|
/**
|
|
2977
3154
|
*
|
|
2978
3155
|
* @type {string}
|
|
2979
|
-
* @memberof
|
|
3156
|
+
* @memberof PaymentMethodAppInPaymentsEntityApp
|
|
2980
3157
|
*/
|
|
2981
3158
|
'provider'?: string;
|
|
2982
3159
|
/**
|
|
2983
3160
|
*
|
|
2984
3161
|
* @type {string}
|
|
2985
|
-
* @memberof
|
|
3162
|
+
* @memberof PaymentMethodAppInPaymentsEntityApp
|
|
2986
3163
|
*/
|
|
2987
3164
|
'phone'?: string;
|
|
2988
3165
|
}
|
|
2989
3166
|
/**
|
|
2990
|
-
* payment method card object in payment entity
|
|
3167
|
+
* payment method card emi object in payment entity
|
|
2991
3168
|
* @export
|
|
2992
|
-
* @interface
|
|
3169
|
+
* @interface PaymentMethodCardEMIInPaymentsEntity
|
|
2993
3170
|
*/
|
|
2994
|
-
export interface
|
|
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 {
|
|
2995
3185
|
/**
|
|
2996
3186
|
*
|
|
2997
3187
|
* @type {string}
|
|
2998
|
-
* @memberof
|
|
3188
|
+
* @memberof PaymentMethodCardEMIInPaymentsEntityEmi
|
|
2999
3189
|
*/
|
|
3000
3190
|
'channel'?: string;
|
|
3001
3191
|
/**
|
|
3002
3192
|
*
|
|
3003
3193
|
* @type {string}
|
|
3004
|
-
* @memberof
|
|
3194
|
+
* @memberof PaymentMethodCardEMIInPaymentsEntityEmi
|
|
3005
3195
|
*/
|
|
3006
3196
|
'card_number'?: string;
|
|
3007
3197
|
/**
|
|
3008
3198
|
*
|
|
3009
3199
|
* @type {string}
|
|
3010
|
-
* @memberof
|
|
3200
|
+
* @memberof PaymentMethodCardEMIInPaymentsEntityEmi
|
|
3011
3201
|
*/
|
|
3012
3202
|
'card_network'?: string;
|
|
3013
3203
|
/**
|
|
3014
3204
|
*
|
|
3015
3205
|
* @type {string}
|
|
3016
|
-
* @memberof
|
|
3206
|
+
* @memberof PaymentMethodCardEMIInPaymentsEntityEmi
|
|
3017
3207
|
*/
|
|
3018
3208
|
'card_type'?: string;
|
|
3019
3209
|
/**
|
|
3020
3210
|
*
|
|
3021
3211
|
* @type {string}
|
|
3022
|
-
* @memberof
|
|
3212
|
+
* @memberof PaymentMethodCardEMIInPaymentsEntityEmi
|
|
3023
3213
|
*/
|
|
3024
3214
|
'card_country'?: string;
|
|
3025
3215
|
/**
|
|
3026
3216
|
*
|
|
3027
3217
|
* @type {string}
|
|
3028
|
-
* @memberof
|
|
3218
|
+
* @memberof PaymentMethodCardEMIInPaymentsEntityEmi
|
|
3029
3219
|
*/
|
|
3030
3220
|
'card_bank_name'?: string;
|
|
3031
3221
|
/**
|
|
3032
3222
|
*
|
|
3033
3223
|
* @type {string}
|
|
3034
|
-
* @memberof
|
|
3224
|
+
* @memberof PaymentMethodCardEMIInPaymentsEntityEmi
|
|
3035
3225
|
*/
|
|
3036
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;
|
|
3037
3239
|
}
|
|
3038
3240
|
/**
|
|
3039
|
-
*
|
|
3241
|
+
*
|
|
3040
3242
|
* @export
|
|
3041
|
-
* @interface
|
|
3243
|
+
* @interface PaymentMethodCardEMIInPaymentsEntityEmiEmiDetails
|
|
3042
3244
|
*/
|
|
3043
|
-
export interface
|
|
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 {
|
|
3044
3284
|
/**
|
|
3045
3285
|
*
|
|
3046
3286
|
* @type {string}
|
|
3047
|
-
* @memberof
|
|
3287
|
+
* @memberof PaymentMethodCardInPaymentsEntityCard
|
|
3048
3288
|
*/
|
|
3049
3289
|
'channel'?: string;
|
|
3050
3290
|
/**
|
|
3051
3291
|
*
|
|
3052
3292
|
* @type {string}
|
|
3053
|
-
* @memberof
|
|
3293
|
+
* @memberof PaymentMethodCardInPaymentsEntityCard
|
|
3054
3294
|
*/
|
|
3055
|
-
'
|
|
3295
|
+
'card_number'?: string;
|
|
3296
|
+
/**
|
|
3297
|
+
*
|
|
3298
|
+
* @type {string}
|
|
3299
|
+
* @memberof PaymentMethodCardInPaymentsEntityCard
|
|
3300
|
+
*/
|
|
3301
|
+
'card_network'?: string;
|
|
3056
3302
|
/**
|
|
3057
3303
|
*
|
|
3058
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}
|
|
3059
3336
|
* @memberof PaymentMethodCardlessEMIInPaymentsEntity
|
|
3060
3337
|
*/
|
|
3061
|
-
'
|
|
3338
|
+
'cardless_emi'?: PaymentMethodAppInPaymentsEntityApp;
|
|
3062
3339
|
}
|
|
3063
3340
|
/**
|
|
3064
3341
|
* payment methods all
|
|
@@ -3077,7 +3354,7 @@ export interface PaymentMethodInPaymentsEntity {
|
|
|
3077
3354
|
* @type PaymentMethodInPaymentsEntityPaymentMethod
|
|
3078
3355
|
* @export
|
|
3079
3356
|
*/
|
|
3080
|
-
export type PaymentMethodInPaymentsEntityPaymentMethod = PaymentMethodAppInPaymentsEntity | PaymentMethodCardInPaymentsEntity | PaymentMethodCardlessEMIInPaymentsEntity | PaymentMethodNetBankingInPaymentsEntity | PaymentMethodPaylaterInPaymentsEntity | PaymentMethodUPIInPaymentsEntity;
|
|
3357
|
+
export type PaymentMethodInPaymentsEntityPaymentMethod = PaymentMethodAppInPaymentsEntity | PaymentMethodCardEMIInPaymentsEntity | PaymentMethodCardInPaymentsEntity | PaymentMethodCardlessEMIInPaymentsEntity | PaymentMethodNetBankingInPaymentsEntity | PaymentMethodPaylaterInPaymentsEntity | PaymentMethodUPIInPaymentsEntity;
|
|
3081
3358
|
|
|
3082
3359
|
/**
|
|
3083
3360
|
* netbanking payment method object for pay
|
|
@@ -3087,22 +3364,35 @@ export type PaymentMethodInPaymentsEntityPaymentMethod = PaymentMethodAppInPayme
|
|
|
3087
3364
|
export interface PaymentMethodNetBankingInPaymentsEntity {
|
|
3088
3365
|
/**
|
|
3089
3366
|
*
|
|
3090
|
-
* @type {
|
|
3367
|
+
* @type {PaymentMethodNetBankingInPaymentsEntityNetbanking}
|
|
3091
3368
|
* @memberof PaymentMethodNetBankingInPaymentsEntity
|
|
3092
3369
|
*/
|
|
3093
|
-
'
|
|
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;
|
|
3094
3384
|
/**
|
|
3095
3385
|
*
|
|
3096
3386
|
* @type {number}
|
|
3097
|
-
* @memberof
|
|
3387
|
+
* @memberof PaymentMethodNetBankingInPaymentsEntityNetbanking
|
|
3098
3388
|
*/
|
|
3099
|
-
'netbanking_bank_code'
|
|
3389
|
+
'netbanking_bank_code'?: number;
|
|
3100
3390
|
/**
|
|
3101
3391
|
*
|
|
3102
3392
|
* @type {string}
|
|
3103
|
-
* @memberof
|
|
3393
|
+
* @memberof PaymentMethodNetBankingInPaymentsEntityNetbanking
|
|
3104
3394
|
*/
|
|
3105
|
-
'netbanking_bank_name'
|
|
3395
|
+
'netbanking_bank_name'?: string;
|
|
3106
3396
|
}
|
|
3107
3397
|
/**
|
|
3108
3398
|
* paylater payment method object for pay api
|
|
@@ -3112,22 +3402,10 @@ export interface PaymentMethodNetBankingInPaymentsEntity {
|
|
|
3112
3402
|
export interface PaymentMethodPaylaterInPaymentsEntity {
|
|
3113
3403
|
/**
|
|
3114
3404
|
*
|
|
3115
|
-
* @type {
|
|
3116
|
-
* @memberof PaymentMethodPaylaterInPaymentsEntity
|
|
3117
|
-
*/
|
|
3118
|
-
'channel'?: string;
|
|
3119
|
-
/**
|
|
3120
|
-
*
|
|
3121
|
-
* @type {string}
|
|
3405
|
+
* @type {PaymentMethodAppInPaymentsEntityApp}
|
|
3122
3406
|
* @memberof PaymentMethodPaylaterInPaymentsEntity
|
|
3123
3407
|
*/
|
|
3124
|
-
'
|
|
3125
|
-
/**
|
|
3126
|
-
*
|
|
3127
|
-
* @type {string}
|
|
3128
|
-
* @memberof PaymentMethodPaylaterInPaymentsEntity
|
|
3129
|
-
*/
|
|
3130
|
-
'phone'?: string;
|
|
3408
|
+
'paylater'?: PaymentMethodAppInPaymentsEntityApp;
|
|
3131
3409
|
}
|
|
3132
3410
|
/**
|
|
3133
3411
|
* UPI payment method for pay api
|
|
@@ -3137,14 +3415,27 @@ export interface PaymentMethodPaylaterInPaymentsEntity {
|
|
|
3137
3415
|
export interface PaymentMethodUPIInPaymentsEntity {
|
|
3138
3416
|
/**
|
|
3139
3417
|
*
|
|
3140
|
-
* @type {
|
|
3418
|
+
* @type {PaymentMethodUPIInPaymentsEntityUpi}
|
|
3141
3419
|
* @memberof PaymentMethodUPIInPaymentsEntity
|
|
3142
3420
|
*/
|
|
3143
|
-
'
|
|
3421
|
+
'upi'?: PaymentMethodUPIInPaymentsEntityUpi;
|
|
3422
|
+
}
|
|
3423
|
+
/**
|
|
3424
|
+
*
|
|
3425
|
+
* @export
|
|
3426
|
+
* @interface PaymentMethodUPIInPaymentsEntityUpi
|
|
3427
|
+
*/
|
|
3428
|
+
export interface PaymentMethodUPIInPaymentsEntityUpi {
|
|
3144
3429
|
/**
|
|
3145
3430
|
*
|
|
3146
3431
|
* @type {string}
|
|
3147
|
-
* @memberof
|
|
3432
|
+
* @memberof PaymentMethodUPIInPaymentsEntityUpi
|
|
3433
|
+
*/
|
|
3434
|
+
'channel'?: string;
|
|
3435
|
+
/**
|
|
3436
|
+
*
|
|
3437
|
+
* @type {string}
|
|
3438
|
+
* @memberof PaymentMethodUPIInPaymentsEntityUpi
|
|
3148
3439
|
*/
|
|
3149
3440
|
'upi_id'?: string;
|
|
3150
3441
|
}
|
|
@@ -4864,7 +5155,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
4864
5155
|
|
|
4865
5156
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4866
5157
|
|
|
4867
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
5158
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
4868
5159
|
if (x_api_version != null && x_api_version != undefined) {
|
|
4869
5160
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
4870
5161
|
}
|
|
@@ -4938,7 +5229,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
4938
5229
|
|
|
4939
5230
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4940
5231
|
|
|
4941
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
5232
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
4942
5233
|
if (x_api_version != null && x_api_version != undefined) {
|
|
4943
5234
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
4944
5235
|
}
|
|
@@ -5012,7 +5303,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
5012
5303
|
|
|
5013
5304
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5014
5305
|
|
|
5015
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
5306
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5016
5307
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5017
5308
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5018
5309
|
}
|
|
@@ -5086,7 +5377,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
5086
5377
|
|
|
5087
5378
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5088
5379
|
|
|
5089
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
5380
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5090
5381
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5091
5382
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5092
5383
|
}
|
|
@@ -5260,7 +5551,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5260
5551
|
|
|
5261
5552
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5262
5553
|
|
|
5263
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
5554
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5264
5555
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5265
5556
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5266
5557
|
}
|
|
@@ -5333,7 +5624,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5333
5624
|
|
|
5334
5625
|
|
|
5335
5626
|
|
|
5336
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
5627
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5337
5628
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5338
5629
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5339
5630
|
}
|
|
@@ -5470,7 +5761,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5470
5761
|
|
|
5471
5762
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5472
5763
|
|
|
5473
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
5764
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5474
5765
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5475
5766
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5476
5767
|
}
|
|
@@ -5543,7 +5834,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5543
5834
|
|
|
5544
5835
|
|
|
5545
5836
|
|
|
5546
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
5837
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5547
5838
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5548
5839
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5549
5840
|
}
|
|
@@ -5682,7 +5973,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura
|
|
|
5682
5973
|
|
|
5683
5974
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5684
5975
|
|
|
5685
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
5976
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5686
5977
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5687
5978
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5688
5979
|
}
|
|
@@ -5803,7 +6094,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
5803
6094
|
|
|
5804
6095
|
|
|
5805
6096
|
|
|
5806
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6097
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5807
6098
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5808
6099
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5809
6100
|
}
|
|
@@ -5876,7 +6167,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
5876
6167
|
|
|
5877
6168
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5878
6169
|
|
|
5879
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6170
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5880
6171
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5881
6172
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5882
6173
|
}
|
|
@@ -5949,7 +6240,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
5949
6240
|
|
|
5950
6241
|
|
|
5951
6242
|
|
|
5952
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6243
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
5953
6244
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5954
6245
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5955
6246
|
}
|
|
@@ -6021,7 +6312,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6021
6312
|
|
|
6022
6313
|
|
|
6023
6314
|
|
|
6024
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6315
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6025
6316
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6026
6317
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6027
6318
|
}
|
|
@@ -6116,7 +6407,7 @@ const PaymentLinksApiFp = function(configuration?: Configuration) {
|
|
|
6116
6407
|
* @param {*} [options] Override http request option.
|
|
6117
6408
|
* @throws {RequiredError}
|
|
6118
6409
|
*/
|
|
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<
|
|
6410
|
+
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
6411
|
const localVarAxiosArgs = await localVarAxiosParamCreator.pGLinkFetchOrders(x_api_version, link_id, x_request_id, x_idempotency_key, options);
|
|
6121
6412
|
var url = "https://sandbox.cashfree.com/pg";
|
|
6122
6413
|
if(Cashfree.XEnvironment == CFEnvironment.PRODUCTION) {
|
|
@@ -6198,7 +6489,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6198
6489
|
|
|
6199
6490
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6200
6491
|
|
|
6201
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6492
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6202
6493
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6203
6494
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6204
6495
|
}
|
|
@@ -6261,7 +6552,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6261
6552
|
|
|
6262
6553
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6263
6554
|
|
|
6264
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6555
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6265
6556
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6266
6557
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6267
6558
|
}
|
|
@@ -6338,7 +6629,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6338
6629
|
|
|
6339
6630
|
|
|
6340
6631
|
|
|
6341
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6632
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6342
6633
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6343
6634
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6344
6635
|
}
|
|
@@ -6410,7 +6701,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6410
6701
|
|
|
6411
6702
|
|
|
6412
6703
|
|
|
6413
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6704
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6414
6705
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6415
6706
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6416
6707
|
}
|
|
@@ -6468,7 +6759,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6468
6759
|
|
|
6469
6760
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6470
6761
|
|
|
6471
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6762
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6472
6763
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6473
6764
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6474
6765
|
}
|
|
@@ -6667,7 +6958,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6667
6958
|
|
|
6668
6959
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6669
6960
|
|
|
6670
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
6961
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6671
6962
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6672
6963
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6673
6964
|
}
|
|
@@ -6744,7 +7035,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6744
7035
|
|
|
6745
7036
|
|
|
6746
7037
|
|
|
6747
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
7038
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6748
7039
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6749
7040
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6750
7041
|
}
|
|
@@ -6816,7 +7107,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6816
7107
|
|
|
6817
7108
|
|
|
6818
7109
|
|
|
6819
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
7110
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6820
7111
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6821
7112
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6822
7113
|
}
|
|
@@ -6975,7 +7266,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
|
|
|
6975
7266
|
|
|
6976
7267
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6977
7268
|
|
|
6978
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
7269
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
6979
7270
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6980
7271
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6981
7272
|
}
|
|
@@ -7051,7 +7342,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
|
|
|
7051
7342
|
|
|
7052
7343
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7053
7344
|
|
|
7054
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
7345
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7055
7346
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7056
7347
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7057
7348
|
}
|
|
@@ -7192,7 +7483,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
7192
7483
|
|
|
7193
7484
|
|
|
7194
7485
|
|
|
7195
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
7486
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7196
7487
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7197
7488
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7198
7489
|
}
|
|
@@ -7311,7 +7602,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7311
7602
|
|
|
7312
7603
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7313
7604
|
|
|
7314
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
7605
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7315
7606
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7316
7607
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7317
7608
|
}
|
|
@@ -7385,7 +7676,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7385
7676
|
|
|
7386
7677
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7387
7678
|
|
|
7388
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
7679
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7389
7680
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7390
7681
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7391
7682
|
}
|
|
@@ -7458,7 +7749,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7458
7749
|
|
|
7459
7750
|
|
|
7460
7751
|
|
|
7461
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
7752
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7462
7753
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7463
7754
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7464
7755
|
}
|
|
@@ -7540,7 +7831,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7540
7831
|
|
|
7541
7832
|
|
|
7542
7833
|
|
|
7543
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
7834
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7544
7835
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7545
7836
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7546
7837
|
}
|
|
@@ -7717,7 +8008,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
7717
8008
|
|
|
7718
8009
|
|
|
7719
8010
|
|
|
7720
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
8011
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7721
8012
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7722
8013
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7723
8014
|
}
|
|
@@ -7793,7 +8084,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
7793
8084
|
|
|
7794
8085
|
|
|
7795
8086
|
|
|
7796
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
8087
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7797
8088
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7798
8089
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7799
8090
|
}
|
|
@@ -7872,7 +8163,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
7872
8163
|
|
|
7873
8164
|
|
|
7874
8165
|
|
|
7875
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
8166
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7876
8167
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7877
8168
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7878
8169
|
}
|
|
@@ -7948,7 +8239,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
7948
8239
|
|
|
7949
8240
|
|
|
7950
8241
|
|
|
7951
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.1
|
|
8242
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.1';
|
|
7952
8243
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7953
8244
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7954
8245
|
}
|
|
@@ -8176,7 +8467,7 @@ export class Cashfree {
|
|
|
8176
8467
|
} else {
|
|
8177
8468
|
scope.setExtra('environment', 'production');
|
|
8178
8469
|
}
|
|
8179
|
-
scope.setExtra('release', "3.1
|
|
8470
|
+
scope.setExtra('release', "3.2.1");
|
|
8180
8471
|
});
|
|
8181
8472
|
}
|
|
8182
8473
|
try {
|
|
@@ -8236,7 +8527,7 @@ export class Cashfree {
|
|
|
8236
8527
|
} else {
|
|
8237
8528
|
scope.setExtra('environment', 'production');
|
|
8238
8529
|
}
|
|
8239
|
-
scope.setExtra('release', "3.1
|
|
8530
|
+
scope.setExtra('release', "3.2.1");
|
|
8240
8531
|
});
|
|
8241
8532
|
}
|
|
8242
8533
|
try {
|
|
@@ -8296,7 +8587,7 @@ export class Cashfree {
|
|
|
8296
8587
|
} else {
|
|
8297
8588
|
scope.setExtra('environment', 'production');
|
|
8298
8589
|
}
|
|
8299
|
-
scope.setExtra('release', "3.1
|
|
8590
|
+
scope.setExtra('release', "3.2.1");
|
|
8300
8591
|
});
|
|
8301
8592
|
}
|
|
8302
8593
|
try {
|
|
@@ -8356,7 +8647,7 @@ export class Cashfree {
|
|
|
8356
8647
|
} else {
|
|
8357
8648
|
scope.setExtra('environment', 'production');
|
|
8358
8649
|
}
|
|
8359
|
-
scope.setExtra('release', "3.1
|
|
8650
|
+
scope.setExtra('release', "3.2.1");
|
|
8360
8651
|
});
|
|
8361
8652
|
}
|
|
8362
8653
|
try {
|
|
@@ -8416,7 +8707,7 @@ export class Cashfree {
|
|
|
8416
8707
|
} else {
|
|
8417
8708
|
scope.setExtra('environment', 'production');
|
|
8418
8709
|
}
|
|
8419
|
-
scope.setExtra('release', "3.1
|
|
8710
|
+
scope.setExtra('release', "3.2.1");
|
|
8420
8711
|
});
|
|
8421
8712
|
}
|
|
8422
8713
|
try {
|
|
@@ -8476,7 +8767,7 @@ export class Cashfree {
|
|
|
8476
8767
|
} else {
|
|
8477
8768
|
scope.setExtra('environment', 'production');
|
|
8478
8769
|
}
|
|
8479
|
-
scope.setExtra('release', "3.1
|
|
8770
|
+
scope.setExtra('release', "3.2.1");
|
|
8480
8771
|
});
|
|
8481
8772
|
}
|
|
8482
8773
|
try {
|
|
@@ -8536,7 +8827,7 @@ export class Cashfree {
|
|
|
8536
8827
|
} else {
|
|
8537
8828
|
scope.setExtra('environment', 'production');
|
|
8538
8829
|
}
|
|
8539
|
-
scope.setExtra('release', "3.1
|
|
8830
|
+
scope.setExtra('release', "3.2.1");
|
|
8540
8831
|
});
|
|
8541
8832
|
}
|
|
8542
8833
|
try {
|
|
@@ -8596,7 +8887,7 @@ export class Cashfree {
|
|
|
8596
8887
|
} else {
|
|
8597
8888
|
scope.setExtra('environment', 'production');
|
|
8598
8889
|
}
|
|
8599
|
-
scope.setExtra('release', "3.1
|
|
8890
|
+
scope.setExtra('release', "3.2.1");
|
|
8600
8891
|
});
|
|
8601
8892
|
}
|
|
8602
8893
|
try {
|
|
@@ -8658,7 +8949,7 @@ export class Cashfree {
|
|
|
8658
8949
|
} else {
|
|
8659
8950
|
scope.setExtra('environment', 'production');
|
|
8660
8951
|
}
|
|
8661
|
-
scope.setExtra('release', "3.1
|
|
8952
|
+
scope.setExtra('release', "3.2.1");
|
|
8662
8953
|
});
|
|
8663
8954
|
}
|
|
8664
8955
|
try {
|
|
@@ -8718,7 +9009,7 @@ export class Cashfree {
|
|
|
8718
9009
|
} else {
|
|
8719
9010
|
scope.setExtra('environment', 'production');
|
|
8720
9011
|
}
|
|
8721
|
-
scope.setExtra('release', "3.1
|
|
9012
|
+
scope.setExtra('release', "3.2.1");
|
|
8722
9013
|
});
|
|
8723
9014
|
}
|
|
8724
9015
|
try {
|
|
@@ -8778,7 +9069,7 @@ export class Cashfree {
|
|
|
8778
9069
|
} else {
|
|
8779
9070
|
scope.setExtra('environment', 'production');
|
|
8780
9071
|
}
|
|
8781
|
-
scope.setExtra('release', "3.1
|
|
9072
|
+
scope.setExtra('release', "3.2.1");
|
|
8782
9073
|
});
|
|
8783
9074
|
}
|
|
8784
9075
|
try {
|
|
@@ -8838,7 +9129,7 @@ export class Cashfree {
|
|
|
8838
9129
|
} else {
|
|
8839
9130
|
scope.setExtra('environment', 'production');
|
|
8840
9131
|
}
|
|
8841
|
-
scope.setExtra('release', "3.1
|
|
9132
|
+
scope.setExtra('release', "3.2.1");
|
|
8842
9133
|
});
|
|
8843
9134
|
}
|
|
8844
9135
|
try {
|
|
@@ -8898,7 +9189,7 @@ export class Cashfree {
|
|
|
8898
9189
|
} else {
|
|
8899
9190
|
scope.setExtra('environment', 'production');
|
|
8900
9191
|
}
|
|
8901
|
-
scope.setExtra('release', "3.1
|
|
9192
|
+
scope.setExtra('release', "3.2.1");
|
|
8902
9193
|
});
|
|
8903
9194
|
}
|
|
8904
9195
|
try {
|
|
@@ -8959,7 +9250,7 @@ export class Cashfree {
|
|
|
8959
9250
|
} else {
|
|
8960
9251
|
scope.setExtra('environment', 'production');
|
|
8961
9252
|
}
|
|
8962
|
-
scope.setExtra('release', "3.1
|
|
9253
|
+
scope.setExtra('release', "3.2.1");
|
|
8963
9254
|
});
|
|
8964
9255
|
}
|
|
8965
9256
|
try {
|
|
@@ -9020,7 +9311,7 @@ export class Cashfree {
|
|
|
9020
9311
|
} else {
|
|
9021
9312
|
scope.setExtra('environment', 'production');
|
|
9022
9313
|
}
|
|
9023
|
-
scope.setExtra('release', "3.1
|
|
9314
|
+
scope.setExtra('release', "3.2.1");
|
|
9024
9315
|
});
|
|
9025
9316
|
}
|
|
9026
9317
|
try {
|
|
@@ -9081,7 +9372,7 @@ export class Cashfree {
|
|
|
9081
9372
|
} else {
|
|
9082
9373
|
scope.setExtra('environment', 'production');
|
|
9083
9374
|
}
|
|
9084
|
-
scope.setExtra('release', "3.1
|
|
9375
|
+
scope.setExtra('release', "3.2.1");
|
|
9085
9376
|
});
|
|
9086
9377
|
}
|
|
9087
9378
|
try {
|
|
@@ -9141,7 +9432,7 @@ export class Cashfree {
|
|
|
9141
9432
|
} else {
|
|
9142
9433
|
scope.setExtra('environment', 'production');
|
|
9143
9434
|
}
|
|
9144
|
-
scope.setExtra('release', "3.1
|
|
9435
|
+
scope.setExtra('release', "3.2.1");
|
|
9145
9436
|
});
|
|
9146
9437
|
}
|
|
9147
9438
|
try {
|
|
@@ -9201,7 +9492,7 @@ export class Cashfree {
|
|
|
9201
9492
|
} else {
|
|
9202
9493
|
scope.setExtra('environment', 'production');
|
|
9203
9494
|
}
|
|
9204
|
-
scope.setExtra('release', "3.1
|
|
9495
|
+
scope.setExtra('release', "3.2.1");
|
|
9205
9496
|
});
|
|
9206
9497
|
}
|
|
9207
9498
|
try {
|
|
@@ -9262,7 +9553,7 @@ export class Cashfree {
|
|
|
9262
9553
|
} else {
|
|
9263
9554
|
scope.setExtra('environment', 'production');
|
|
9264
9555
|
}
|
|
9265
|
-
scope.setExtra('release', "3.1
|
|
9556
|
+
scope.setExtra('release', "3.2.1");
|
|
9266
9557
|
});
|
|
9267
9558
|
}
|
|
9268
9559
|
try {
|
|
@@ -9323,7 +9614,7 @@ export class Cashfree {
|
|
|
9323
9614
|
} else {
|
|
9324
9615
|
scope.setExtra('environment', 'production');
|
|
9325
9616
|
}
|
|
9326
|
-
scope.setExtra('release', "3.1
|
|
9617
|
+
scope.setExtra('release', "3.2.1");
|
|
9327
9618
|
});
|
|
9328
9619
|
}
|
|
9329
9620
|
try {
|
|
@@ -9383,7 +9674,7 @@ export class Cashfree {
|
|
|
9383
9674
|
} else {
|
|
9384
9675
|
scope.setExtra('environment', 'production');
|
|
9385
9676
|
}
|
|
9386
|
-
scope.setExtra('release', "3.1
|
|
9677
|
+
scope.setExtra('release', "3.2.1");
|
|
9387
9678
|
});
|
|
9388
9679
|
}
|
|
9389
9680
|
try {
|
|
@@ -9445,7 +9736,7 @@ export class Cashfree {
|
|
|
9445
9736
|
} else {
|
|
9446
9737
|
scope.setExtra('environment', 'production');
|
|
9447
9738
|
}
|
|
9448
|
-
scope.setExtra('release', "3.1
|
|
9739
|
+
scope.setExtra('release', "3.2.1");
|
|
9449
9740
|
});
|
|
9450
9741
|
}
|
|
9451
9742
|
try {
|
|
@@ -9507,7 +9798,7 @@ export class Cashfree {
|
|
|
9507
9798
|
} else {
|
|
9508
9799
|
scope.setExtra('environment', 'production');
|
|
9509
9800
|
}
|
|
9510
|
-
scope.setExtra('release', "3.1
|
|
9801
|
+
scope.setExtra('release', "3.2.1");
|
|
9511
9802
|
});
|
|
9512
9803
|
}
|
|
9513
9804
|
try {
|
|
@@ -9567,7 +9858,7 @@ export class Cashfree {
|
|
|
9567
9858
|
} else {
|
|
9568
9859
|
scope.setExtra('environment', 'production');
|
|
9569
9860
|
}
|
|
9570
|
-
scope.setExtra('release', "3.1
|
|
9861
|
+
scope.setExtra('release', "3.2.1");
|
|
9571
9862
|
});
|
|
9572
9863
|
}
|
|
9573
9864
|
try {
|
|
@@ -9627,7 +9918,7 @@ export class Cashfree {
|
|
|
9627
9918
|
} else {
|
|
9628
9919
|
scope.setExtra('environment', 'production');
|
|
9629
9920
|
}
|
|
9630
|
-
scope.setExtra('release', "3.1
|
|
9921
|
+
scope.setExtra('release', "3.2.1");
|
|
9631
9922
|
});
|
|
9632
9923
|
}
|
|
9633
9924
|
try {
|
|
@@ -9687,7 +9978,7 @@ export class Cashfree {
|
|
|
9687
9978
|
} else {
|
|
9688
9979
|
scope.setExtra('environment', 'production');
|
|
9689
9980
|
}
|
|
9690
|
-
scope.setExtra('release', "3.1
|
|
9981
|
+
scope.setExtra('release', "3.2.1");
|
|
9691
9982
|
});
|
|
9692
9983
|
}
|
|
9693
9984
|
try {
|
|
@@ -9747,7 +10038,7 @@ export class Cashfree {
|
|
|
9747
10038
|
} else {
|
|
9748
10039
|
scope.setExtra('environment', 'production');
|
|
9749
10040
|
}
|
|
9750
|
-
scope.setExtra('release', "3.1
|
|
10041
|
+
scope.setExtra('release', "3.2.1");
|
|
9751
10042
|
});
|
|
9752
10043
|
}
|
|
9753
10044
|
try {
|
|
@@ -9808,7 +10099,7 @@ export class Cashfree {
|
|
|
9808
10099
|
} else {
|
|
9809
10100
|
scope.setExtra('environment', 'production');
|
|
9810
10101
|
}
|
|
9811
|
-
scope.setExtra('release', "3.1
|
|
10102
|
+
scope.setExtra('release', "3.2.1");
|
|
9812
10103
|
});
|
|
9813
10104
|
}
|
|
9814
10105
|
try {
|
|
@@ -9869,7 +10160,7 @@ export class Cashfree {
|
|
|
9869
10160
|
} else {
|
|
9870
10161
|
scope.setExtra('environment', 'production');
|
|
9871
10162
|
}
|
|
9872
|
-
scope.setExtra('release', "3.1
|
|
10163
|
+
scope.setExtra('release', "3.2.1");
|
|
9873
10164
|
});
|
|
9874
10165
|
}
|
|
9875
10166
|
try {
|
|
@@ -9930,7 +10221,7 @@ export class Cashfree {
|
|
|
9930
10221
|
} else {
|
|
9931
10222
|
scope.setExtra('environment', 'production');
|
|
9932
10223
|
}
|
|
9933
|
-
scope.setExtra('release', "3.1
|
|
10224
|
+
scope.setExtra('release', "3.2.1");
|
|
9934
10225
|
});
|
|
9935
10226
|
}
|
|
9936
10227
|
try {
|
|
@@ -9991,7 +10282,7 @@ export class Cashfree {
|
|
|
9991
10282
|
} else {
|
|
9992
10283
|
scope.setExtra('environment', 'production');
|
|
9993
10284
|
}
|
|
9994
|
-
scope.setExtra('release', "3.1
|
|
10285
|
+
scope.setExtra('release', "3.2.1");
|
|
9995
10286
|
});
|
|
9996
10287
|
}
|
|
9997
10288
|
try {
|
|
@@ -10052,7 +10343,7 @@ export class Cashfree {
|
|
|
10052
10343
|
} else {
|
|
10053
10344
|
scope.setExtra('environment', 'production');
|
|
10054
10345
|
}
|
|
10055
|
-
scope.setExtra('release', "3.1
|
|
10346
|
+
scope.setExtra('release', "3.2.1");
|
|
10056
10347
|
});
|
|
10057
10348
|
}
|
|
10058
10349
|
try {
|