diff --git a/api.ts b/api.ts index d5f2be4..8cae77b 100644 --- a/api.ts +++ b/api.ts @@ -568,61 +568,6 @@ export interface BanktransferPaymentMethod { */ 'banktransfer': Banktransfer; } -/** - * payment method card. - * @export - * @interface CARD - */ -export interface CARD { - /** - * Channel. can be link - * @type {string} - * @memberof CARD - */ - 'channel'?: string; - /** - * Card number - * @type {string} - * @memberof CARD - */ - 'card_number'?: string; - /** - * Card holder name - * @type {string} - * @memberof CARD - */ - 'card_holder_name'?: string; - /** - * Card expiry month - * @type {string} - * @memberof CARD - */ - 'card_expiry_mm'?: string; - /** - * Card expiry year - * @type {string} - * @memberof CARD - */ - 'card_expiry_yy'?: string; - /** - * Card CVV - * @type {string} - * @memberof CARD - */ - 'card_cvv'?: string; - /** - * Card network - * @type {string} - * @memberof CARD - */ - 'card_network'?: string; - /** - * Card type - * @type {string} - * @memberof CARD - */ - 'card_type'?: string; -} /** * Card Payment method * @export @@ -1423,13 +1368,172 @@ export interface CreateSubscriptionPaymentRequest { */ 'payment_method'?: CreateSubscriptionPaymentRequestPaymentMethod; } +/** + * payment method card. + * @export + * @interface CreateSubscriptionPaymentRequestCard + */ +export interface CreateSubscriptionPaymentRequestCard { + /** + * Channel. can be link + * @type {string} + * @memberof CreateSubscriptionPaymentRequestCard + */ + 'channel'?: string; + /** + * Card number + * @type {string} + * @memberof CreateSubscriptionPaymentRequestCard + */ + 'card_number'?: string; + /** + * Card holder name + * @type {string} + * @memberof CreateSubscriptionPaymentRequestCard + */ + 'card_holder_name'?: string; + /** + * Card expiry month + * @type {string} + * @memberof CreateSubscriptionPaymentRequestCard + */ + 'card_expiry_mm'?: string; + /** + * Card expiry year + * @type {string} + * @memberof CreateSubscriptionPaymentRequestCard + */ + 'card_expiry_yy'?: string; + /** + * Card CVV + * @type {string} + * @memberof CreateSubscriptionPaymentRequestCard + */ + 'card_cvv'?: string; + /** + * Card network + * @type {string} + * @memberof CreateSubscriptionPaymentRequestCard + */ + 'card_network'?: string; + /** + * Card type + * @type {string} + * @memberof CreateSubscriptionPaymentRequestCard + */ + 'card_type'?: string; +} +/** + * payment method enach. + * @export + * @interface CreateSubscriptionPaymentRequestEnack + */ +export interface CreateSubscriptionPaymentRequestEnack { + /** + * Channel. can be link + * @type {string} + * @memberof CreateSubscriptionPaymentRequestEnack + */ + 'channel'?: string; + /** + * Authentication mode. can be debit_card, aadhaar, or net_banking + * @type {string} + * @memberof CreateSubscriptionPaymentRequestEnack + */ + 'auth_mode'?: string; + /** + * Account holder name + * @type {string} + * @memberof CreateSubscriptionPaymentRequestEnack + */ + 'account_holder_name'?: string; + /** + * Account number + * @type {string} + * @memberof CreateSubscriptionPaymentRequestEnack + */ + 'account_number'?: string; + /** + * Account bank code (required without AccountIFSC) + * @type {string} + * @memberof CreateSubscriptionPaymentRequestEnack + */ + 'account_bank_code'?: string; + /** + * Account type + * @type {string} + * @memberof CreateSubscriptionPaymentRequestEnack + */ + 'account_type'?: string; + /** + * Account IFSC + * @type {string} + * @memberof CreateSubscriptionPaymentRequestEnack + */ + 'account_ifsc'?: string; +} /** * @type CreateSubscriptionPaymentRequestPaymentMethod * Payment method. Can be one of [\"upi\", \"enach\", \"pnach\", \"card\"] * @export */ -export type CreateSubscriptionPaymentRequestPaymentMethod = CARD | ENACH | PNACH | UPI; +export type CreateSubscriptionPaymentRequestPaymentMethod = CreateSubscriptionPaymentRequestCard | CreateSubscriptionPaymentRequestEnack | CreateSubscriptionPaymentRequestPnach | CreateSubscriptonPaymentRequestUpi; +/** + * payment method pnach. + * @export + * @interface CreateSubscriptionPaymentRequestPnach + */ +export interface CreateSubscriptionPaymentRequestPnach { + /** + * Channel. can be post + * @type {string} + * @memberof CreateSubscriptionPaymentRequestPnach + */ + 'channel'?: string; + /** + * Account holder name + * @type {string} + * @memberof CreateSubscriptionPaymentRequestPnach + */ + 'account_holder_name'?: string; + /** + * Account number + * @type {string} + * @memberof CreateSubscriptionPaymentRequestPnach + */ + 'account_number'?: string; + /** + * Account bank code + * @type {string} + * @memberof CreateSubscriptionPaymentRequestPnach + */ + 'account_bank_code'?: string; + /** + * Account type + * @type {string} + * @memberof CreateSubscriptionPaymentRequestPnach + */ + 'account_type'?: string; + /** + * Account IFSC + * @type {string} + * @memberof CreateSubscriptionPaymentRequestPnach + */ + 'account_ifsc'?: string; + /** + * Mandate creation date + * @type {string} + * @memberof CreateSubscriptionPaymentRequestPnach + */ + 'mandate_creation_date'?: string; + /** + * Mandate start date + * @type {string} + * @memberof CreateSubscriptionPaymentRequestPnach + */ + 'mandate_start_date'?: string; +} /** * The response returned is Create Subscription Auth or Charge APIs. * @export @@ -1718,6 +1822,25 @@ export interface CreateSubscriptionRequestSubscriptionMeta { */ 'notification_channel'?: Array; } +/** + * payment method upi. + * @export + * @interface CreateSubscriptonPaymentRequestUpi + */ +export interface CreateSubscriptonPaymentRequestUpi { + /** + * + * @type {string} + * @memberof CreateSubscriptonPaymentRequestUpi + */ + 'upi_id'?: string; + /** + * Channel. can be link, qrcode, or collect + * @type {string} + * @memberof CreateSubscriptonPaymentRequestUpi + */ + 'channel'?: string; +} /** * Request body to create a terminal * @export @@ -2274,55 +2397,6 @@ export interface EMIPlansArray { */ 'total_amount'?: number; } -/** - * payment method enach. - * @export - * @interface ENACH - */ -export interface ENACH { - /** - * Channel. can be link - * @type {string} - * @memberof ENACH - */ - 'channel'?: string; - /** - * Authentication mode. can be debit_card, aadhaar, or net_banking - * @type {string} - * @memberof ENACH - */ - 'auth_mode'?: string; - /** - * Account holder name - * @type {string} - * @memberof ENACH - */ - 'account_holder_name'?: string; - /** - * Account number - * @type {string} - * @memberof ENACH - */ - 'account_number'?: string; - /** - * Account bank code (required without AccountIFSC) - * @type {string} - * @memberof ENACH - */ - 'account_bank_code'?: string; - /** - * Account type - * @type {string} - * @memberof ENACH - */ - 'account_type'?: string; - /** - * Account IFSC - * @type {string} - * @memberof ENACH - */ - 'account_ifsc'?: string; -} /** * ES Order Recon Request * @export @@ -4364,61 +4438,6 @@ export interface OrderPayData { */ 'method'?: string; } -/** - * payment method pnach. - * @export - * @interface PNACH - */ -export interface PNACH { - /** - * Channel. can be post - * @type {string} - * @memberof PNACH - */ - 'channel'?: string; - /** - * Account holder name - * @type {string} - * @memberof PNACH - */ - 'account_holder_name'?: string; - /** - * Account number - * @type {string} - * @memberof PNACH - */ - 'account_number'?: string; - /** - * Account bank code - * @type {string} - * @memberof PNACH - */ - 'account_bank_code'?: string; - /** - * Account type - * @type {string} - * @memberof PNACH - */ - 'account_type'?: string; - /** - * Account IFSC - * @type {string} - * @memberof PNACH - */ - 'account_ifsc'?: string; - /** - * Mandate creation date - * @type {string} - * @memberof PNACH - */ - 'mandate_creation_date'?: string; - /** - * Mandate start date - * @type {string} - * @memberof PNACH - */ - 'mandate_start_date'?: string; -} /** * Order Pay response once you create a transaction for that order * @export @@ -7660,25 +7679,6 @@ export interface TransferDetailsTagsInner { */ 'size'?: number; } -/** - * payment method upi. - * @export - * @interface UPI - */ -export interface UPI { - /** - * - * @type {string} - * @memberof UPI - */ - 'upi_id'?: string; - /** - * Channel. can be link, qrcode, or collect - * @type {string} - * @memberof UPI - */ - 'channel'?: string; -} /** * object when you are using preauth in UPI in order pay * @export @@ -8556,7 +8556,7 @@ const CustomersApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -8678,7 +8678,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -8750,7 +8750,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -8827,7 +8827,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -8899,7 +8899,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -8971,7 +8971,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9050,7 +9050,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9122,7 +9122,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9193,7 +9193,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9269,7 +9269,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9360,7 +9360,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9436,7 +9436,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9508,7 +9508,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9834,7 +9834,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration) localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9908,7 +9908,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration) localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -9982,7 +9982,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration) localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -10056,7 +10056,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration) localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -10230,7 +10230,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -10303,7 +10303,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -10440,7 +10440,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -10513,7 +10513,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -10590,7 +10590,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -10749,7 +10749,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -10870,7 +10870,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -10943,7 +10943,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11016,7 +11016,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11093,7 +11093,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11271,7 +11271,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11334,7 +11334,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11411,7 +11411,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11483,7 +11483,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11541,7 +11541,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11740,7 +11740,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11817,7 +11817,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -11889,7 +11889,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12048,7 +12048,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12124,7 +12124,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12264,7 +12264,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration) localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12337,7 +12337,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration) - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12473,7 +12473,7 @@ const SimulationApiAxiosParamCreator = function (configuration?: Configuration) - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12546,7 +12546,7 @@ const SimulationApiAxiosParamCreator = function (configuration?: Configuration) localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12684,7 +12684,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12758,7 +12758,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12831,7 +12831,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12913,7 +12913,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -12992,7 +12992,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) { - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13069,7 +13069,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13147,7 +13147,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13225,7 +13225,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) { localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13476,7 +13476,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13550,7 +13550,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13628,7 +13628,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13702,7 +13702,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13775,7 +13775,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13847,7 +13847,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13923,7 +13923,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -13995,7 +13995,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -14071,7 +14071,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -14148,7 +14148,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -14230,7 +14230,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -14327,7 +14327,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -14401,7 +14401,7 @@ const SubscriptionApiAxiosParamCreator = function (configuration?: Configuration localVarHeaderParameter['Content-Type'] = 'application/json'; - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -14749,7 +14749,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration) - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -14825,7 +14825,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration) - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -14904,7 +14904,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration) - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -14980,7 +14980,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration) - localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.2'; + localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.2.3'; if (x_api_version != null && x_api_version != undefined) { localVarHeaderParameter['x-api-version'] = x_api_version; } @@ -15208,7 +15208,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15269,7 +15269,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15329,7 +15329,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15390,7 +15390,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15450,7 +15450,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15510,7 +15510,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15571,7 +15571,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15631,7 +15631,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15691,7 +15691,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15752,7 +15752,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15815,7 +15815,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15876,7 +15876,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15936,7 +15936,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -15996,7 +15996,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16056,7 +16056,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16116,7 +16116,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16176,7 +16176,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16236,7 +16236,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16296,7 +16296,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16356,7 +16356,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16416,7 +16416,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16477,7 +16477,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16539,7 +16539,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16599,7 +16599,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16659,7 +16659,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16719,7 +16719,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16780,7 +16780,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16841,7 +16841,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16902,7 +16902,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -16963,7 +16963,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17023,7 +17023,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17083,7 +17083,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17144,7 +17144,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17205,7 +17205,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17265,7 +17265,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17327,7 +17327,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17389,7 +17389,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17449,7 +17449,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17509,7 +17509,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17569,7 +17569,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17629,7 +17629,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17689,7 +17689,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17749,7 +17749,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17809,7 +17809,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17870,7 +17870,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17931,7 +17931,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -17992,7 +17992,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18053,7 +18053,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18114,7 +18114,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18174,7 +18174,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18234,7 +18234,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18295,7 +18295,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18355,7 +18355,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18415,7 +18415,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18475,7 +18475,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18536,7 +18536,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18596,7 +18596,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18657,7 +18657,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18718,7 +18718,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18780,7 +18780,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18843,7 +18843,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18903,7 +18903,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -18964,7 +18964,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -19025,7 +19025,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -19086,7 +19086,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { @@ -19147,7 +19147,7 @@ export class Cashfree { } else { scope.setExtra('environment', 'production'); } - scope.setExtra('release', "4.2.2"); + scope.setExtra('release', "4.2.3"); }); } try { diff --git a/package.json b/package.json index 28e731f..246d827 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cashfree-pg", - "version": "4.2.2", + "version": "4.2.3", "description": "Cashfree client for cashfree-pg", "author": "Cashfree Payments", "repository": {