cashfree-pg 3.2.1 → 3.2.3
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/.github/workflows/publish.yml +21 -0
- package/api.ts +72 -85
- package/dist/api.d.ts +7 -20
- package/dist/api.js +64 -64
- package/dist/esm/api.d.ts +7 -20
- package/dist/esm/api.js +64 -64
- package/package.json +1 -1
|
@@ -23,3 +23,24 @@ jobs:
|
|
|
23
23
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
24
24
|
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
25
25
|
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
|
|
26
|
+
|
|
27
|
+
- name: Get Latest Tag
|
|
28
|
+
uses: actions-ecosystem/action-get-latest-tag@v1
|
|
29
|
+
id: get-latest-tag
|
|
30
|
+
|
|
31
|
+
- name: Release
|
|
32
|
+
run: |
|
|
33
|
+
curl --location --request POST 'https://api.github.com/repos/cashfree/cashfree-pg-sdk-nodejs/releases' \
|
|
34
|
+
--header 'Accept: application/vnd.github+json' \
|
|
35
|
+
--header "Authorization: Bearer ${{ secrets.TOKEN_GITHUB }}" \
|
|
36
|
+
--header 'X-GitHub-Api-Version: 2022-11-28' \
|
|
37
|
+
--header 'Content-Type: application/json' \
|
|
38
|
+
--data-raw '{
|
|
39
|
+
"tag_name": "${{ steps.get-latest-tag.outputs.tag }}",
|
|
40
|
+
"target_commitish": "main",
|
|
41
|
+
"name": "${{ steps.get-latest-tag.outputs.tag }}",
|
|
42
|
+
"body": "Release version ${{ steps.get-latest-tag.outputs.tag }}",
|
|
43
|
+
"draft": false,
|
|
44
|
+
"prerelease": false,
|
|
45
|
+
"generate_release_notes": false
|
|
46
|
+
}'
|
package/api.ts
CHANGED
|
@@ -2942,10 +2942,10 @@ export interface PaymentEntity {
|
|
|
2942
2942
|
'authorization'?: AuthorizationInPaymentsEntity;
|
|
2943
2943
|
/**
|
|
2944
2944
|
*
|
|
2945
|
-
* @type {
|
|
2945
|
+
* @type {PaymentEntityPaymentMethod}
|
|
2946
2946
|
* @memberof PaymentEntity
|
|
2947
2947
|
*/
|
|
2948
|
-
'payment_method'?:
|
|
2948
|
+
'payment_method'?: PaymentEntityPaymentMethod;
|
|
2949
2949
|
}
|
|
2950
2950
|
|
|
2951
2951
|
export const PaymentEntityPaymentStatusEnum = {
|
|
@@ -2961,6 +2961,12 @@ export const PaymentEntityPaymentStatusEnum = {
|
|
|
2961
2961
|
|
|
2962
2962
|
export type PaymentEntityPaymentStatusEnum = typeof PaymentEntityPaymentStatusEnum[keyof typeof PaymentEntityPaymentStatusEnum];
|
|
2963
2963
|
|
|
2964
|
+
/**
|
|
2965
|
+
* @type PaymentEntityPaymentMethod
|
|
2966
|
+
* @export
|
|
2967
|
+
*/
|
|
2968
|
+
export type PaymentEntityPaymentMethod = PaymentMethodAppInPaymentsEntity | PaymentMethodCardEMIInPaymentsEntity | PaymentMethodCardInPaymentsEntity | PaymentMethodCardlessEMIInPaymentsEntity | PaymentMethodNetBankingInPaymentsEntity | PaymentMethodPaylaterInPaymentsEntity | PaymentMethodUPIInPaymentsEntity;
|
|
2969
|
+
|
|
2964
2970
|
/**
|
|
2965
2971
|
* The customer details that are necessary. Note that you can pass dummy details if your use case does not require the customer details.
|
|
2966
2972
|
* @export
|
|
@@ -3337,25 +3343,6 @@ export interface PaymentMethodCardlessEMIInPaymentsEntity {
|
|
|
3337
3343
|
*/
|
|
3338
3344
|
'cardless_emi'?: PaymentMethodAppInPaymentsEntityApp;
|
|
3339
3345
|
}
|
|
3340
|
-
/**
|
|
3341
|
-
* payment methods all
|
|
3342
|
-
* @export
|
|
3343
|
-
* @interface PaymentMethodInPaymentsEntity
|
|
3344
|
-
*/
|
|
3345
|
-
export interface PaymentMethodInPaymentsEntity {
|
|
3346
|
-
/**
|
|
3347
|
-
*
|
|
3348
|
-
* @type {PaymentMethodInPaymentsEntityPaymentMethod}
|
|
3349
|
-
* @memberof PaymentMethodInPaymentsEntity
|
|
3350
|
-
*/
|
|
3351
|
-
'payment_method'?: PaymentMethodInPaymentsEntityPaymentMethod;
|
|
3352
|
-
}
|
|
3353
|
-
/**
|
|
3354
|
-
* @type PaymentMethodInPaymentsEntityPaymentMethod
|
|
3355
|
-
* @export
|
|
3356
|
-
*/
|
|
3357
|
-
export type PaymentMethodInPaymentsEntityPaymentMethod = PaymentMethodAppInPaymentsEntity | PaymentMethodCardEMIInPaymentsEntity | PaymentMethodCardInPaymentsEntity | PaymentMethodCardlessEMIInPaymentsEntity | PaymentMethodNetBankingInPaymentsEntity | PaymentMethodPaylaterInPaymentsEntity | PaymentMethodUPIInPaymentsEntity;
|
|
3358
|
-
|
|
3359
3346
|
/**
|
|
3360
3347
|
* netbanking payment method object for pay
|
|
3361
3348
|
* @export
|
|
@@ -5155,7 +5142,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
5155
5142
|
|
|
5156
5143
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5157
5144
|
|
|
5158
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
5145
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
5159
5146
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5160
5147
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5161
5148
|
}
|
|
@@ -5229,7 +5216,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
5229
5216
|
|
|
5230
5217
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5231
5218
|
|
|
5232
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
5219
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
5233
5220
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5234
5221
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5235
5222
|
}
|
|
@@ -5303,7 +5290,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
5303
5290
|
|
|
5304
5291
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5305
5292
|
|
|
5306
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
5293
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
5307
5294
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5308
5295
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5309
5296
|
}
|
|
@@ -5377,7 +5364,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
5377
5364
|
|
|
5378
5365
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5379
5366
|
|
|
5380
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
5367
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
5381
5368
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5382
5369
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5383
5370
|
}
|
|
@@ -5551,7 +5538,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5551
5538
|
|
|
5552
5539
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5553
5540
|
|
|
5554
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
5541
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
5555
5542
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5556
5543
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5557
5544
|
}
|
|
@@ -5624,7 +5611,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5624
5611
|
|
|
5625
5612
|
|
|
5626
5613
|
|
|
5627
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
5614
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
5628
5615
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5629
5616
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5630
5617
|
}
|
|
@@ -5761,7 +5748,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5761
5748
|
|
|
5762
5749
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5763
5750
|
|
|
5764
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
5751
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
5765
5752
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5766
5753
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5767
5754
|
}
|
|
@@ -5834,7 +5821,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
5834
5821
|
|
|
5835
5822
|
|
|
5836
5823
|
|
|
5837
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
5824
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
5838
5825
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5839
5826
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5840
5827
|
}
|
|
@@ -5973,7 +5960,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura
|
|
|
5973
5960
|
|
|
5974
5961
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5975
5962
|
|
|
5976
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
5963
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
5977
5964
|
if (x_api_version != null && x_api_version != undefined) {
|
|
5978
5965
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
5979
5966
|
}
|
|
@@ -6094,7 +6081,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6094
6081
|
|
|
6095
6082
|
|
|
6096
6083
|
|
|
6097
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6084
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6098
6085
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6099
6086
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6100
6087
|
}
|
|
@@ -6167,7 +6154,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6167
6154
|
|
|
6168
6155
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6169
6156
|
|
|
6170
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6157
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6171
6158
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6172
6159
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6173
6160
|
}
|
|
@@ -6240,7 +6227,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6240
6227
|
|
|
6241
6228
|
|
|
6242
6229
|
|
|
6243
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6230
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6244
6231
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6245
6232
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6246
6233
|
}
|
|
@@ -6312,7 +6299,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6312
6299
|
|
|
6313
6300
|
|
|
6314
6301
|
|
|
6315
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6302
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6316
6303
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6317
6304
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6318
6305
|
}
|
|
@@ -6489,7 +6476,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6489
6476
|
|
|
6490
6477
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6491
6478
|
|
|
6492
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6479
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6493
6480
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6494
6481
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6495
6482
|
}
|
|
@@ -6552,7 +6539,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6552
6539
|
|
|
6553
6540
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6554
6541
|
|
|
6555
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6542
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6556
6543
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6557
6544
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6558
6545
|
}
|
|
@@ -6629,7 +6616,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6629
6616
|
|
|
6630
6617
|
|
|
6631
6618
|
|
|
6632
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6619
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6633
6620
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6634
6621
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6635
6622
|
}
|
|
@@ -6701,7 +6688,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6701
6688
|
|
|
6702
6689
|
|
|
6703
6690
|
|
|
6704
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6691
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6705
6692
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6706
6693
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6707
6694
|
}
|
|
@@ -6759,7 +6746,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6759
6746
|
|
|
6760
6747
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6761
6748
|
|
|
6762
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6749
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6763
6750
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6764
6751
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6765
6752
|
}
|
|
@@ -6958,7 +6945,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6958
6945
|
|
|
6959
6946
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6960
6947
|
|
|
6961
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
6948
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
6962
6949
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6963
6950
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6964
6951
|
}
|
|
@@ -7035,7 +7022,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7035
7022
|
|
|
7036
7023
|
|
|
7037
7024
|
|
|
7038
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7025
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
7039
7026
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7040
7027
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7041
7028
|
}
|
|
@@ -7107,7 +7094,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7107
7094
|
|
|
7108
7095
|
|
|
7109
7096
|
|
|
7110
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7097
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
7111
7098
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7112
7099
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7113
7100
|
}
|
|
@@ -7266,7 +7253,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
|
|
|
7266
7253
|
|
|
7267
7254
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7268
7255
|
|
|
7269
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7256
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
7270
7257
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7271
7258
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7272
7259
|
}
|
|
@@ -7342,7 +7329,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
|
|
|
7342
7329
|
|
|
7343
7330
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7344
7331
|
|
|
7345
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7332
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
7346
7333
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7347
7334
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7348
7335
|
}
|
|
@@ -7483,7 +7470,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
7483
7470
|
|
|
7484
7471
|
|
|
7485
7472
|
|
|
7486
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7473
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
7487
7474
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7488
7475
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7489
7476
|
}
|
|
@@ -7602,7 +7589,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7602
7589
|
|
|
7603
7590
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7604
7591
|
|
|
7605
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7592
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
7606
7593
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7607
7594
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7608
7595
|
}
|
|
@@ -7676,7 +7663,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7676
7663
|
|
|
7677
7664
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7678
7665
|
|
|
7679
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7666
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
7680
7667
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7681
7668
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7682
7669
|
}
|
|
@@ -7749,7 +7736,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7749
7736
|
|
|
7750
7737
|
|
|
7751
7738
|
|
|
7752
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7739
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
7753
7740
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7754
7741
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7755
7742
|
}
|
|
@@ -7831,7 +7818,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7831
7818
|
|
|
7832
7819
|
|
|
7833
7820
|
|
|
7834
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7821
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
7835
7822
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7836
7823
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7837
7824
|
}
|
|
@@ -8008,7 +7995,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8008
7995
|
|
|
8009
7996
|
|
|
8010
7997
|
|
|
8011
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
7998
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
8012
7999
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8013
8000
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8014
8001
|
}
|
|
@@ -8084,7 +8071,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8084
8071
|
|
|
8085
8072
|
|
|
8086
8073
|
|
|
8087
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
8074
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
8088
8075
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8089
8076
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8090
8077
|
}
|
|
@@ -8163,7 +8150,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8163
8150
|
|
|
8164
8151
|
|
|
8165
8152
|
|
|
8166
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
8153
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
8167
8154
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8168
8155
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8169
8156
|
}
|
|
@@ -8239,7 +8226,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8239
8226
|
|
|
8240
8227
|
|
|
8241
8228
|
|
|
8242
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.
|
|
8229
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-3.2.3';
|
|
8243
8230
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8244
8231
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8245
8232
|
}
|
|
@@ -8467,7 +8454,7 @@ export class Cashfree {
|
|
|
8467
8454
|
} else {
|
|
8468
8455
|
scope.setExtra('environment', 'production');
|
|
8469
8456
|
}
|
|
8470
|
-
scope.setExtra('release', "3.2.
|
|
8457
|
+
scope.setExtra('release', "3.2.3");
|
|
8471
8458
|
});
|
|
8472
8459
|
}
|
|
8473
8460
|
try {
|
|
@@ -8527,7 +8514,7 @@ export class Cashfree {
|
|
|
8527
8514
|
} else {
|
|
8528
8515
|
scope.setExtra('environment', 'production');
|
|
8529
8516
|
}
|
|
8530
|
-
scope.setExtra('release', "3.2.
|
|
8517
|
+
scope.setExtra('release', "3.2.3");
|
|
8531
8518
|
});
|
|
8532
8519
|
}
|
|
8533
8520
|
try {
|
|
@@ -8587,7 +8574,7 @@ export class Cashfree {
|
|
|
8587
8574
|
} else {
|
|
8588
8575
|
scope.setExtra('environment', 'production');
|
|
8589
8576
|
}
|
|
8590
|
-
scope.setExtra('release', "3.2.
|
|
8577
|
+
scope.setExtra('release', "3.2.3");
|
|
8591
8578
|
});
|
|
8592
8579
|
}
|
|
8593
8580
|
try {
|
|
@@ -8647,7 +8634,7 @@ export class Cashfree {
|
|
|
8647
8634
|
} else {
|
|
8648
8635
|
scope.setExtra('environment', 'production');
|
|
8649
8636
|
}
|
|
8650
|
-
scope.setExtra('release', "3.2.
|
|
8637
|
+
scope.setExtra('release', "3.2.3");
|
|
8651
8638
|
});
|
|
8652
8639
|
}
|
|
8653
8640
|
try {
|
|
@@ -8707,7 +8694,7 @@ export class Cashfree {
|
|
|
8707
8694
|
} else {
|
|
8708
8695
|
scope.setExtra('environment', 'production');
|
|
8709
8696
|
}
|
|
8710
|
-
scope.setExtra('release', "3.2.
|
|
8697
|
+
scope.setExtra('release', "3.2.3");
|
|
8711
8698
|
});
|
|
8712
8699
|
}
|
|
8713
8700
|
try {
|
|
@@ -8767,7 +8754,7 @@ export class Cashfree {
|
|
|
8767
8754
|
} else {
|
|
8768
8755
|
scope.setExtra('environment', 'production');
|
|
8769
8756
|
}
|
|
8770
|
-
scope.setExtra('release', "3.2.
|
|
8757
|
+
scope.setExtra('release', "3.2.3");
|
|
8771
8758
|
});
|
|
8772
8759
|
}
|
|
8773
8760
|
try {
|
|
@@ -8827,7 +8814,7 @@ export class Cashfree {
|
|
|
8827
8814
|
} else {
|
|
8828
8815
|
scope.setExtra('environment', 'production');
|
|
8829
8816
|
}
|
|
8830
|
-
scope.setExtra('release', "3.2.
|
|
8817
|
+
scope.setExtra('release', "3.2.3");
|
|
8831
8818
|
});
|
|
8832
8819
|
}
|
|
8833
8820
|
try {
|
|
@@ -8887,7 +8874,7 @@ export class Cashfree {
|
|
|
8887
8874
|
} else {
|
|
8888
8875
|
scope.setExtra('environment', 'production');
|
|
8889
8876
|
}
|
|
8890
|
-
scope.setExtra('release', "3.2.
|
|
8877
|
+
scope.setExtra('release', "3.2.3");
|
|
8891
8878
|
});
|
|
8892
8879
|
}
|
|
8893
8880
|
try {
|
|
@@ -8949,7 +8936,7 @@ export class Cashfree {
|
|
|
8949
8936
|
} else {
|
|
8950
8937
|
scope.setExtra('environment', 'production');
|
|
8951
8938
|
}
|
|
8952
|
-
scope.setExtra('release', "3.2.
|
|
8939
|
+
scope.setExtra('release', "3.2.3");
|
|
8953
8940
|
});
|
|
8954
8941
|
}
|
|
8955
8942
|
try {
|
|
@@ -9009,7 +8996,7 @@ export class Cashfree {
|
|
|
9009
8996
|
} else {
|
|
9010
8997
|
scope.setExtra('environment', 'production');
|
|
9011
8998
|
}
|
|
9012
|
-
scope.setExtra('release', "3.2.
|
|
8999
|
+
scope.setExtra('release', "3.2.3");
|
|
9013
9000
|
});
|
|
9014
9001
|
}
|
|
9015
9002
|
try {
|
|
@@ -9069,7 +9056,7 @@ export class Cashfree {
|
|
|
9069
9056
|
} else {
|
|
9070
9057
|
scope.setExtra('environment', 'production');
|
|
9071
9058
|
}
|
|
9072
|
-
scope.setExtra('release', "3.2.
|
|
9059
|
+
scope.setExtra('release', "3.2.3");
|
|
9073
9060
|
});
|
|
9074
9061
|
}
|
|
9075
9062
|
try {
|
|
@@ -9129,7 +9116,7 @@ export class Cashfree {
|
|
|
9129
9116
|
} else {
|
|
9130
9117
|
scope.setExtra('environment', 'production');
|
|
9131
9118
|
}
|
|
9132
|
-
scope.setExtra('release', "3.2.
|
|
9119
|
+
scope.setExtra('release', "3.2.3");
|
|
9133
9120
|
});
|
|
9134
9121
|
}
|
|
9135
9122
|
try {
|
|
@@ -9189,7 +9176,7 @@ export class Cashfree {
|
|
|
9189
9176
|
} else {
|
|
9190
9177
|
scope.setExtra('environment', 'production');
|
|
9191
9178
|
}
|
|
9192
|
-
scope.setExtra('release', "3.2.
|
|
9179
|
+
scope.setExtra('release', "3.2.3");
|
|
9193
9180
|
});
|
|
9194
9181
|
}
|
|
9195
9182
|
try {
|
|
@@ -9250,7 +9237,7 @@ export class Cashfree {
|
|
|
9250
9237
|
} else {
|
|
9251
9238
|
scope.setExtra('environment', 'production');
|
|
9252
9239
|
}
|
|
9253
|
-
scope.setExtra('release', "3.2.
|
|
9240
|
+
scope.setExtra('release', "3.2.3");
|
|
9254
9241
|
});
|
|
9255
9242
|
}
|
|
9256
9243
|
try {
|
|
@@ -9311,7 +9298,7 @@ export class Cashfree {
|
|
|
9311
9298
|
} else {
|
|
9312
9299
|
scope.setExtra('environment', 'production');
|
|
9313
9300
|
}
|
|
9314
|
-
scope.setExtra('release', "3.2.
|
|
9301
|
+
scope.setExtra('release', "3.2.3");
|
|
9315
9302
|
});
|
|
9316
9303
|
}
|
|
9317
9304
|
try {
|
|
@@ -9372,7 +9359,7 @@ export class Cashfree {
|
|
|
9372
9359
|
} else {
|
|
9373
9360
|
scope.setExtra('environment', 'production');
|
|
9374
9361
|
}
|
|
9375
|
-
scope.setExtra('release', "3.2.
|
|
9362
|
+
scope.setExtra('release', "3.2.3");
|
|
9376
9363
|
});
|
|
9377
9364
|
}
|
|
9378
9365
|
try {
|
|
@@ -9432,7 +9419,7 @@ export class Cashfree {
|
|
|
9432
9419
|
} else {
|
|
9433
9420
|
scope.setExtra('environment', 'production');
|
|
9434
9421
|
}
|
|
9435
|
-
scope.setExtra('release', "3.2.
|
|
9422
|
+
scope.setExtra('release', "3.2.3");
|
|
9436
9423
|
});
|
|
9437
9424
|
}
|
|
9438
9425
|
try {
|
|
@@ -9492,7 +9479,7 @@ export class Cashfree {
|
|
|
9492
9479
|
} else {
|
|
9493
9480
|
scope.setExtra('environment', 'production');
|
|
9494
9481
|
}
|
|
9495
|
-
scope.setExtra('release', "3.2.
|
|
9482
|
+
scope.setExtra('release', "3.2.3");
|
|
9496
9483
|
});
|
|
9497
9484
|
}
|
|
9498
9485
|
try {
|
|
@@ -9553,7 +9540,7 @@ export class Cashfree {
|
|
|
9553
9540
|
} else {
|
|
9554
9541
|
scope.setExtra('environment', 'production');
|
|
9555
9542
|
}
|
|
9556
|
-
scope.setExtra('release', "3.2.
|
|
9543
|
+
scope.setExtra('release', "3.2.3");
|
|
9557
9544
|
});
|
|
9558
9545
|
}
|
|
9559
9546
|
try {
|
|
@@ -9614,7 +9601,7 @@ export class Cashfree {
|
|
|
9614
9601
|
} else {
|
|
9615
9602
|
scope.setExtra('environment', 'production');
|
|
9616
9603
|
}
|
|
9617
|
-
scope.setExtra('release', "3.2.
|
|
9604
|
+
scope.setExtra('release', "3.2.3");
|
|
9618
9605
|
});
|
|
9619
9606
|
}
|
|
9620
9607
|
try {
|
|
@@ -9674,7 +9661,7 @@ export class Cashfree {
|
|
|
9674
9661
|
} else {
|
|
9675
9662
|
scope.setExtra('environment', 'production');
|
|
9676
9663
|
}
|
|
9677
|
-
scope.setExtra('release', "3.2.
|
|
9664
|
+
scope.setExtra('release', "3.2.3");
|
|
9678
9665
|
});
|
|
9679
9666
|
}
|
|
9680
9667
|
try {
|
|
@@ -9736,7 +9723,7 @@ export class Cashfree {
|
|
|
9736
9723
|
} else {
|
|
9737
9724
|
scope.setExtra('environment', 'production');
|
|
9738
9725
|
}
|
|
9739
|
-
scope.setExtra('release', "3.2.
|
|
9726
|
+
scope.setExtra('release', "3.2.3");
|
|
9740
9727
|
});
|
|
9741
9728
|
}
|
|
9742
9729
|
try {
|
|
@@ -9798,7 +9785,7 @@ export class Cashfree {
|
|
|
9798
9785
|
} else {
|
|
9799
9786
|
scope.setExtra('environment', 'production');
|
|
9800
9787
|
}
|
|
9801
|
-
scope.setExtra('release', "3.2.
|
|
9788
|
+
scope.setExtra('release', "3.2.3");
|
|
9802
9789
|
});
|
|
9803
9790
|
}
|
|
9804
9791
|
try {
|
|
@@ -9858,7 +9845,7 @@ export class Cashfree {
|
|
|
9858
9845
|
} else {
|
|
9859
9846
|
scope.setExtra('environment', 'production');
|
|
9860
9847
|
}
|
|
9861
|
-
scope.setExtra('release', "3.2.
|
|
9848
|
+
scope.setExtra('release', "3.2.3");
|
|
9862
9849
|
});
|
|
9863
9850
|
}
|
|
9864
9851
|
try {
|
|
@@ -9918,7 +9905,7 @@ export class Cashfree {
|
|
|
9918
9905
|
} else {
|
|
9919
9906
|
scope.setExtra('environment', 'production');
|
|
9920
9907
|
}
|
|
9921
|
-
scope.setExtra('release', "3.2.
|
|
9908
|
+
scope.setExtra('release', "3.2.3");
|
|
9922
9909
|
});
|
|
9923
9910
|
}
|
|
9924
9911
|
try {
|
|
@@ -9978,7 +9965,7 @@ export class Cashfree {
|
|
|
9978
9965
|
} else {
|
|
9979
9966
|
scope.setExtra('environment', 'production');
|
|
9980
9967
|
}
|
|
9981
|
-
scope.setExtra('release', "3.2.
|
|
9968
|
+
scope.setExtra('release', "3.2.3");
|
|
9982
9969
|
});
|
|
9983
9970
|
}
|
|
9984
9971
|
try {
|
|
@@ -10038,7 +10025,7 @@ export class Cashfree {
|
|
|
10038
10025
|
} else {
|
|
10039
10026
|
scope.setExtra('environment', 'production');
|
|
10040
10027
|
}
|
|
10041
|
-
scope.setExtra('release', "3.2.
|
|
10028
|
+
scope.setExtra('release', "3.2.3");
|
|
10042
10029
|
});
|
|
10043
10030
|
}
|
|
10044
10031
|
try {
|
|
@@ -10099,7 +10086,7 @@ export class Cashfree {
|
|
|
10099
10086
|
} else {
|
|
10100
10087
|
scope.setExtra('environment', 'production');
|
|
10101
10088
|
}
|
|
10102
|
-
scope.setExtra('release', "3.2.
|
|
10089
|
+
scope.setExtra('release', "3.2.3");
|
|
10103
10090
|
});
|
|
10104
10091
|
}
|
|
10105
10092
|
try {
|
|
@@ -10160,7 +10147,7 @@ export class Cashfree {
|
|
|
10160
10147
|
} else {
|
|
10161
10148
|
scope.setExtra('environment', 'production');
|
|
10162
10149
|
}
|
|
10163
|
-
scope.setExtra('release', "3.2.
|
|
10150
|
+
scope.setExtra('release', "3.2.3");
|
|
10164
10151
|
});
|
|
10165
10152
|
}
|
|
10166
10153
|
try {
|
|
@@ -10221,7 +10208,7 @@ export class Cashfree {
|
|
|
10221
10208
|
} else {
|
|
10222
10209
|
scope.setExtra('environment', 'production');
|
|
10223
10210
|
}
|
|
10224
|
-
scope.setExtra('release', "3.2.
|
|
10211
|
+
scope.setExtra('release', "3.2.3");
|
|
10225
10212
|
});
|
|
10226
10213
|
}
|
|
10227
10214
|
try {
|
|
@@ -10282,7 +10269,7 @@ export class Cashfree {
|
|
|
10282
10269
|
} else {
|
|
10283
10270
|
scope.setExtra('environment', 'production');
|
|
10284
10271
|
}
|
|
10285
|
-
scope.setExtra('release', "3.2.
|
|
10272
|
+
scope.setExtra('release', "3.2.3");
|
|
10286
10273
|
});
|
|
10287
10274
|
}
|
|
10288
10275
|
try {
|
|
@@ -10343,7 +10330,7 @@ export class Cashfree {
|
|
|
10343
10330
|
} else {
|
|
10344
10331
|
scope.setExtra('environment', 'production');
|
|
10345
10332
|
}
|
|
10346
|
-
scope.setExtra('release', "3.2.
|
|
10333
|
+
scope.setExtra('release', "3.2.3");
|
|
10347
10334
|
});
|
|
10348
10335
|
}
|
|
10349
10336
|
try {
|