cashfree-pg 5.0.3 → 5.0.8-node
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/run-tests.yml +8 -7
- package/README.md +1 -1
- package/api.ts +133 -89
- package/dist/api.d.ts +52 -8
- package/dist/api.js +81 -81
- package/dist/esm/api.d.ts +52 -8
- package/dist/esm/api.js +81 -81
- package/docs/Webhook.md +1 -1
- package/jest.config.js +1 -0
- package/package.json +4 -3
- package/tests/ordersV5.test.js +285 -0
- package/tests/orders.test.ts +0 -567
package/api.ts
CHANGED
|
@@ -2733,6 +2733,31 @@ export const DiscountDetailsDiscountTypeEnum = {
|
|
|
2733
2733
|
|
|
2734
2734
|
export type DiscountDetailsDiscountTypeEnum = typeof DiscountDetailsDiscountTypeEnum[keyof typeof DiscountDetailsDiscountTypeEnum];
|
|
2735
2735
|
|
|
2736
|
+
/**
|
|
2737
|
+
*
|
|
2738
|
+
* @export
|
|
2739
|
+
* @interface DisputeEvidenceInner
|
|
2740
|
+
*/
|
|
2741
|
+
export interface DisputeEvidenceInner {
|
|
2742
|
+
/**
|
|
2743
|
+
*
|
|
2744
|
+
* @type {number}
|
|
2745
|
+
* @memberof DisputeEvidenceInner
|
|
2746
|
+
*/
|
|
2747
|
+
'document_id'?: number;
|
|
2748
|
+
/**
|
|
2749
|
+
*
|
|
2750
|
+
* @type {string}
|
|
2751
|
+
* @memberof DisputeEvidenceInner
|
|
2752
|
+
*/
|
|
2753
|
+
'document_name'?: string;
|
|
2754
|
+
/**
|
|
2755
|
+
*
|
|
2756
|
+
* @type {string}
|
|
2757
|
+
* @memberof DisputeEvidenceInner
|
|
2758
|
+
*/
|
|
2759
|
+
'document_type'?: string;
|
|
2760
|
+
}
|
|
2736
2761
|
/**
|
|
2737
2762
|
*
|
|
2738
2763
|
* @export
|
|
@@ -2813,16 +2838,16 @@ export interface DisputesEntity {
|
|
|
2813
2838
|
'cf_dispute_remarks'?: string;
|
|
2814
2839
|
/**
|
|
2815
2840
|
*
|
|
2816
|
-
* @type {Array<
|
|
2841
|
+
* @type {Array<PreferredEvidenceInner>}
|
|
2817
2842
|
* @memberof DisputesEntity
|
|
2818
2843
|
*/
|
|
2819
|
-
'preferred_evidence'?: Array<
|
|
2844
|
+
'preferred_evidence'?: Array<PreferredEvidenceInner>;
|
|
2820
2845
|
/**
|
|
2821
2846
|
*
|
|
2822
|
-
* @type {Array<
|
|
2847
|
+
* @type {Array<DisputeEvidenceInner>}
|
|
2823
2848
|
* @memberof DisputesEntity
|
|
2824
2849
|
*/
|
|
2825
|
-
'dispute_evidence'?: Array<
|
|
2850
|
+
'dispute_evidence'?: Array<DisputeEvidenceInner>;
|
|
2826
2851
|
/**
|
|
2827
2852
|
*
|
|
2828
2853
|
* @type {OrderDetailsInDisputesEntity}
|
|
@@ -2962,16 +2987,16 @@ export interface DisputesEntityMerchantAccepted {
|
|
|
2962
2987
|
'cf_dispute_remarks'?: string;
|
|
2963
2988
|
/**
|
|
2964
2989
|
*
|
|
2965
|
-
* @type {Array<
|
|
2990
|
+
* @type {Array<PreferredEvidenceInner>}
|
|
2966
2991
|
* @memberof DisputesEntityMerchantAccepted
|
|
2967
2992
|
*/
|
|
2968
|
-
'preferred_evidence'?: Array<
|
|
2993
|
+
'preferred_evidence'?: Array<PreferredEvidenceInner>;
|
|
2969
2994
|
/**
|
|
2970
2995
|
*
|
|
2971
|
-
* @type {Array<
|
|
2996
|
+
* @type {Array<DisputeEvidenceInner>}
|
|
2972
2997
|
* @memberof DisputesEntityMerchantAccepted
|
|
2973
2998
|
*/
|
|
2974
|
-
'dispute_evidence'?: Array<
|
|
2999
|
+
'dispute_evidence'?: Array<DisputeEvidenceInner>;
|
|
2975
3000
|
/**
|
|
2976
3001
|
*
|
|
2977
3002
|
* @type {OrderDetailsInDisputesEntity}
|
|
@@ -7187,6 +7212,25 @@ export interface PlanEntity {
|
|
|
7187
7212
|
*/
|
|
7188
7213
|
'plan_type'?: string;
|
|
7189
7214
|
}
|
|
7215
|
+
/**
|
|
7216
|
+
*
|
|
7217
|
+
* @export
|
|
7218
|
+
* @interface PreferredEvidenceInner
|
|
7219
|
+
*/
|
|
7220
|
+
export interface PreferredEvidenceInner {
|
|
7221
|
+
/**
|
|
7222
|
+
*
|
|
7223
|
+
* @type {string}
|
|
7224
|
+
* @memberof PreferredEvidenceInner
|
|
7225
|
+
*/
|
|
7226
|
+
'document_type'?: string;
|
|
7227
|
+
/**
|
|
7228
|
+
*
|
|
7229
|
+
* @type {string}
|
|
7230
|
+
* @memberof PreferredEvidenceInner
|
|
7231
|
+
*/
|
|
7232
|
+
'document_description'?: string;
|
|
7233
|
+
}
|
|
7190
7234
|
/**
|
|
7191
7235
|
*
|
|
7192
7236
|
* @export
|
|
@@ -10943,7 +10987,7 @@ const CustomersApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
10943
10987
|
|
|
10944
10988
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
10945
10989
|
|
|
10946
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
10990
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
10947
10991
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10948
10992
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10949
10993
|
}
|
|
@@ -11058,7 +11102,7 @@ const DisputesApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11058
11102
|
|
|
11059
11103
|
|
|
11060
11104
|
|
|
11061
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11105
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11062
11106
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11063
11107
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11064
11108
|
}
|
|
@@ -11126,7 +11170,7 @@ const DisputesApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11126
11170
|
|
|
11127
11171
|
|
|
11128
11172
|
|
|
11129
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11173
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11130
11174
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11131
11175
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11132
11176
|
}
|
|
@@ -11194,7 +11238,7 @@ const DisputesApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11194
11238
|
|
|
11195
11239
|
|
|
11196
11240
|
|
|
11197
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11241
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11198
11242
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11199
11243
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11200
11244
|
}
|
|
@@ -11262,7 +11306,7 @@ const DisputesApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11262
11306
|
|
|
11263
11307
|
|
|
11264
11308
|
|
|
11265
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11309
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11266
11310
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11267
11311
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11268
11312
|
}
|
|
@@ -11352,7 +11396,7 @@ const DisputesApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11352
11396
|
|
|
11353
11397
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
11354
11398
|
|
|
11355
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11399
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11356
11400
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11357
11401
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11358
11402
|
}
|
|
@@ -11545,7 +11589,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11545
11589
|
|
|
11546
11590
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11547
11591
|
|
|
11548
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11592
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11549
11593
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11550
11594
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11551
11595
|
}
|
|
@@ -11617,7 +11661,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11617
11661
|
|
|
11618
11662
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11619
11663
|
|
|
11620
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11664
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11621
11665
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11622
11666
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11623
11667
|
}
|
|
@@ -11685,7 +11729,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11685
11729
|
|
|
11686
11730
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11687
11731
|
|
|
11688
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11732
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11689
11733
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11690
11734
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11691
11735
|
}
|
|
@@ -11758,7 +11802,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11758
11802
|
|
|
11759
11803
|
|
|
11760
11804
|
|
|
11761
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11805
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11762
11806
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11763
11807
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11764
11808
|
}
|
|
@@ -11826,7 +11870,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11826
11870
|
|
|
11827
11871
|
|
|
11828
11872
|
|
|
11829
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11873
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11830
11874
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11831
11875
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11832
11876
|
}
|
|
@@ -11894,7 +11938,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11894
11938
|
|
|
11895
11939
|
|
|
11896
11940
|
|
|
11897
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
11941
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11898
11942
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11899
11943
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11900
11944
|
}
|
|
@@ -11969,7 +12013,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
11969
12013
|
|
|
11970
12014
|
|
|
11971
12015
|
|
|
11972
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12016
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
11973
12017
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11974
12018
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11975
12019
|
}
|
|
@@ -12037,7 +12081,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12037
12081
|
|
|
12038
12082
|
|
|
12039
12083
|
|
|
12040
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12084
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12041
12085
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12042
12086
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12043
12087
|
}
|
|
@@ -12104,7 +12148,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12104
12148
|
|
|
12105
12149
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12106
12150
|
|
|
12107
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12151
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12108
12152
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12109
12153
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12110
12154
|
}
|
|
@@ -12176,7 +12220,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12176
12220
|
|
|
12177
12221
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12178
12222
|
|
|
12179
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12223
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12180
12224
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12181
12225
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12182
12226
|
}
|
|
@@ -12263,7 +12307,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12263
12307
|
|
|
12264
12308
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
12265
12309
|
|
|
12266
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12310
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12267
12311
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12268
12312
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12269
12313
|
}
|
|
@@ -12335,7 +12379,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12335
12379
|
|
|
12336
12380
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12337
12381
|
|
|
12338
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12382
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12339
12383
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12340
12384
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12341
12385
|
}
|
|
@@ -12403,7 +12447,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12403
12447
|
|
|
12404
12448
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12405
12449
|
|
|
12406
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12450
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12407
12451
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12408
12452
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12409
12453
|
}
|
|
@@ -12472,7 +12516,7 @@ const EasySplitApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12472
12516
|
|
|
12473
12517
|
|
|
12474
12518
|
|
|
12475
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12519
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12476
12520
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12477
12521
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12478
12522
|
}
|
|
@@ -12830,7 +12874,7 @@ const EligibilityApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12830
12874
|
|
|
12831
12875
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12832
12876
|
|
|
12833
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12877
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12834
12878
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12835
12879
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12836
12880
|
}
|
|
@@ -12900,7 +12944,7 @@ const EligibilityApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12900
12944
|
|
|
12901
12945
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12902
12946
|
|
|
12903
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
12947
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12904
12948
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12905
12949
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12906
12950
|
}
|
|
@@ -12970,7 +13014,7 @@ const EligibilityApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
12970
13014
|
|
|
12971
13015
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12972
13016
|
|
|
12973
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13017
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
12974
13018
|
if (x_api_version != null && x_api_version != undefined) {
|
|
12975
13019
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
12976
13020
|
}
|
|
@@ -13040,7 +13084,7 @@ const EligibilityApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
13040
13084
|
|
|
13041
13085
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
13042
13086
|
|
|
13043
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13087
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
13044
13088
|
if (x_api_version != null && x_api_version != undefined) {
|
|
13045
13089
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
13046
13090
|
}
|
|
@@ -13210,7 +13254,7 @@ const OffersApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
13210
13254
|
|
|
13211
13255
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
13212
13256
|
|
|
13213
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13257
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
13214
13258
|
if (x_api_version != null && x_api_version != undefined) {
|
|
13215
13259
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
13216
13260
|
}
|
|
@@ -13279,7 +13323,7 @@ const OffersApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
13279
13323
|
|
|
13280
13324
|
|
|
13281
13325
|
|
|
13282
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13326
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
13283
13327
|
if (x_api_version != null && x_api_version != undefined) {
|
|
13284
13328
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
13285
13329
|
}
|
|
@@ -13412,7 +13456,7 @@ const OrdersApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
13412
13456
|
|
|
13413
13457
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
13414
13458
|
|
|
13415
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13459
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
13416
13460
|
if (x_api_version != null && x_api_version != undefined) {
|
|
13417
13461
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
13418
13462
|
}
|
|
@@ -13481,7 +13525,7 @@ const OrdersApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
13481
13525
|
|
|
13482
13526
|
|
|
13483
13527
|
|
|
13484
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13528
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
13485
13529
|
if (x_api_version != null && x_api_version != undefined) {
|
|
13486
13530
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
13487
13531
|
}
|
|
@@ -13549,7 +13593,7 @@ const OrdersApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
13549
13593
|
|
|
13550
13594
|
|
|
13551
13595
|
|
|
13552
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13596
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
13553
13597
|
if (x_api_version != null && x_api_version != undefined) {
|
|
13554
13598
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
13555
13599
|
}
|
|
@@ -13622,7 +13666,7 @@ const OrdersApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
13622
13666
|
|
|
13623
13667
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
13624
13668
|
|
|
13625
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13669
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
13626
13670
|
if (x_api_version != null && x_api_version != undefined) {
|
|
13627
13671
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
13628
13672
|
}
|
|
@@ -13696,7 +13740,7 @@ const OrdersApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
13696
13740
|
|
|
13697
13741
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
13698
13742
|
|
|
13699
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13743
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
13700
13744
|
if (x_api_version != null && x_api_version != undefined) {
|
|
13701
13745
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
13702
13746
|
}
|
|
@@ -13888,7 +13932,7 @@ const PGReconciliationApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
13888
13932
|
|
|
13889
13933
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
13890
13934
|
|
|
13891
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
13935
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
13892
13936
|
if (x_api_version != null && x_api_version != undefined) {
|
|
13893
13937
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
13894
13938
|
}
|
|
@@ -14005,7 +14049,7 @@ const PaymentLinksApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14005
14049
|
|
|
14006
14050
|
|
|
14007
14051
|
|
|
14008
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14052
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14009
14053
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14010
14054
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14011
14055
|
}
|
|
@@ -14074,7 +14118,7 @@ const PaymentLinksApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14074
14118
|
|
|
14075
14119
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
14076
14120
|
|
|
14077
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14121
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14078
14122
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14079
14123
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14080
14124
|
}
|
|
@@ -14143,7 +14187,7 @@ const PaymentLinksApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14143
14187
|
|
|
14144
14188
|
|
|
14145
14189
|
|
|
14146
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14190
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14147
14191
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14148
14192
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14149
14193
|
}
|
|
@@ -14216,7 +14260,7 @@ const PaymentLinksApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14216
14260
|
|
|
14217
14261
|
|
|
14218
14262
|
|
|
14219
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14263
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14220
14264
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14221
14265
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14222
14266
|
}
|
|
@@ -14390,7 +14434,7 @@ const PaymentsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14390
14434
|
|
|
14391
14435
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
14392
14436
|
|
|
14393
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14437
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14394
14438
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14395
14439
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14396
14440
|
}
|
|
@@ -14449,7 +14493,7 @@ const PaymentsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14449
14493
|
|
|
14450
14494
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
14451
14495
|
|
|
14452
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14496
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14453
14497
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14454
14498
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14455
14499
|
}
|
|
@@ -14522,7 +14566,7 @@ const PaymentsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14522
14566
|
|
|
14523
14567
|
|
|
14524
14568
|
|
|
14525
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14569
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14526
14570
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14527
14571
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14528
14572
|
}
|
|
@@ -14590,7 +14634,7 @@ const PaymentsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14590
14634
|
|
|
14591
14635
|
|
|
14592
14636
|
|
|
14593
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14637
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14594
14638
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14595
14639
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14596
14640
|
}
|
|
@@ -14644,7 +14688,7 @@ const PaymentsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14644
14688
|
|
|
14645
14689
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
14646
14690
|
|
|
14647
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14691
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14648
14692
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14649
14693
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14650
14694
|
}
|
|
@@ -14839,7 +14883,7 @@ const RefundsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14839
14883
|
|
|
14840
14884
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
14841
14885
|
|
|
14842
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14886
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14843
14887
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14844
14888
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14845
14889
|
}
|
|
@@ -14912,7 +14956,7 @@ const RefundsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14912
14956
|
|
|
14913
14957
|
|
|
14914
14958
|
|
|
14915
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
14959
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14916
14960
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14917
14961
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14918
14962
|
}
|
|
@@ -14980,7 +15024,7 @@ const RefundsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
14980
15024
|
|
|
14981
15025
|
|
|
14982
15026
|
|
|
14983
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15027
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
14984
15028
|
if (x_api_version != null && x_api_version != undefined) {
|
|
14985
15029
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
14986
15030
|
}
|
|
@@ -15135,7 +15179,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (cashfree: Cashfre
|
|
|
15135
15179
|
|
|
15136
15180
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
15137
15181
|
|
|
15138
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15182
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15139
15183
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15140
15184
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15141
15185
|
}
|
|
@@ -15207,7 +15251,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (cashfree: Cashfre
|
|
|
15207
15251
|
|
|
15208
15252
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
15209
15253
|
|
|
15210
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15254
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15211
15255
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15212
15256
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15213
15257
|
}
|
|
@@ -15343,7 +15387,7 @@ const SettlementsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
15343
15387
|
|
|
15344
15388
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
15345
15389
|
|
|
15346
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15390
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15347
15391
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15348
15392
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15349
15393
|
}
|
|
@@ -15412,7 +15456,7 @@ const SettlementsApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
15412
15456
|
|
|
15413
15457
|
|
|
15414
15458
|
|
|
15415
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15459
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15416
15460
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15417
15461
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15418
15462
|
}
|
|
@@ -15544,7 +15588,7 @@ const SimulationApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
15544
15588
|
|
|
15545
15589
|
|
|
15546
15590
|
|
|
15547
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15591
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15548
15592
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15549
15593
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15550
15594
|
}
|
|
@@ -15613,7 +15657,7 @@ const SimulationApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
15613
15657
|
|
|
15614
15658
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
15615
15659
|
|
|
15616
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15660
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15617
15661
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15618
15662
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15619
15663
|
}
|
|
@@ -15747,7 +15791,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
15747
15791
|
|
|
15748
15792
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
15749
15793
|
|
|
15750
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15794
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15751
15795
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15752
15796
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15753
15797
|
}
|
|
@@ -15817,7 +15861,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
15817
15861
|
|
|
15818
15862
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
15819
15863
|
|
|
15820
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15864
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15821
15865
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15822
15866
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15823
15867
|
}
|
|
@@ -15887,7 +15931,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
15887
15931
|
|
|
15888
15932
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
15889
15933
|
|
|
15890
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
15934
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15891
15935
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15892
15936
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15893
15937
|
}
|
|
@@ -15956,7 +16000,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
15956
16000
|
|
|
15957
16001
|
|
|
15958
16002
|
|
|
15959
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16003
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
15960
16004
|
if (x_api_version != null && x_api_version != undefined) {
|
|
15961
16005
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
15962
16006
|
}
|
|
@@ -16034,7 +16078,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16034
16078
|
|
|
16035
16079
|
|
|
16036
16080
|
|
|
16037
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16081
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16038
16082
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16039
16083
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16040
16084
|
}
|
|
@@ -16112,7 +16156,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16112
16156
|
|
|
16113
16157
|
|
|
16114
16158
|
|
|
16115
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16159
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16116
16160
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16117
16161
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16118
16162
|
}
|
|
@@ -16187,7 +16231,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16187
16231
|
|
|
16188
16232
|
|
|
16189
16233
|
|
|
16190
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16234
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16191
16235
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16192
16236
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16193
16237
|
}
|
|
@@ -16256,7 +16300,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16256
16300
|
|
|
16257
16301
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
16258
16302
|
|
|
16259
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16303
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16260
16304
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16261
16305
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16262
16306
|
}
|
|
@@ -16330,7 +16374,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16330
16374
|
|
|
16331
16375
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
16332
16376
|
|
|
16333
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16377
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16334
16378
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16335
16379
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16336
16380
|
}
|
|
@@ -16404,7 +16448,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16404
16448
|
|
|
16405
16449
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
16406
16450
|
|
|
16407
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16451
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16408
16452
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16409
16453
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16410
16454
|
}
|
|
@@ -16478,7 +16522,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16478
16522
|
|
|
16479
16523
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
16480
16524
|
|
|
16481
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16525
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16482
16526
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16483
16527
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16484
16528
|
}
|
|
@@ -16552,7 +16596,7 @@ const SoftPOSApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16552
16596
|
|
|
16553
16597
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
16554
16598
|
|
|
16555
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16599
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16556
16600
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16557
16601
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16558
16602
|
}
|
|
@@ -16873,7 +16917,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16873
16917
|
|
|
16874
16918
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
16875
16919
|
|
|
16876
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16920
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16877
16921
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16878
16922
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16879
16923
|
}
|
|
@@ -16943,7 +16987,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
16943
16987
|
|
|
16944
16988
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
16945
16989
|
|
|
16946
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
16990
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
16947
16991
|
if (x_api_version != null && x_api_version != undefined) {
|
|
16948
16992
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
16949
16993
|
}
|
|
@@ -17017,7 +17061,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17017
17061
|
|
|
17018
17062
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
17019
17063
|
|
|
17020
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17064
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17021
17065
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17022
17066
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17023
17067
|
}
|
|
@@ -17087,7 +17131,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17087
17131
|
|
|
17088
17132
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
17089
17133
|
|
|
17090
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17134
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17091
17135
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17092
17136
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17093
17137
|
}
|
|
@@ -17156,7 +17200,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17156
17200
|
|
|
17157
17201
|
|
|
17158
17202
|
|
|
17159
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17203
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17160
17204
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17161
17205
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17162
17206
|
}
|
|
@@ -17224,7 +17268,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17224
17268
|
|
|
17225
17269
|
|
|
17226
17270
|
|
|
17227
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17271
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17228
17272
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17229
17273
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17230
17274
|
}
|
|
@@ -17296,7 +17340,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17296
17340
|
|
|
17297
17341
|
|
|
17298
17342
|
|
|
17299
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17343
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17300
17344
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17301
17345
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17302
17346
|
}
|
|
@@ -17364,7 +17408,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17364
17408
|
|
|
17365
17409
|
|
|
17366
17410
|
|
|
17367
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17411
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17368
17412
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17369
17413
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17370
17414
|
}
|
|
@@ -17436,7 +17480,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17436
17480
|
|
|
17437
17481
|
|
|
17438
17482
|
|
|
17439
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17483
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17440
17484
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17441
17485
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17442
17486
|
}
|
|
@@ -17509,7 +17553,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17509
17553
|
|
|
17510
17554
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
17511
17555
|
|
|
17512
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17556
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17513
17557
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17514
17558
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17515
17559
|
}
|
|
@@ -17587,7 +17631,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17587
17631
|
|
|
17588
17632
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
17589
17633
|
|
|
17590
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17634
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17591
17635
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17592
17636
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17593
17637
|
}
|
|
@@ -17680,7 +17724,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17680
17724
|
|
|
17681
17725
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
17682
17726
|
|
|
17683
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17727
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17684
17728
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17685
17729
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17686
17730
|
}
|
|
@@ -17750,7 +17794,7 @@ const SubscriptionApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
17750
17794
|
|
|
17751
17795
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
17752
17796
|
|
|
17753
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
17797
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
17754
17798
|
if (x_api_version != null && x_api_version != undefined) {
|
|
17755
17799
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
17756
17800
|
}
|
|
@@ -18094,7 +18138,7 @@ const TokenVaultApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
18094
18138
|
|
|
18095
18139
|
|
|
18096
18140
|
|
|
18097
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
18141
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
18098
18142
|
if (x_api_version != null && x_api_version != undefined) {
|
|
18099
18143
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
18100
18144
|
}
|
|
@@ -18166,7 +18210,7 @@ const TokenVaultApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
18166
18210
|
|
|
18167
18211
|
|
|
18168
18212
|
|
|
18169
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
18213
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
18170
18214
|
if (x_api_version != null && x_api_version != undefined) {
|
|
18171
18215
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
18172
18216
|
}
|
|
@@ -18241,7 +18285,7 @@ const TokenVaultApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
18241
18285
|
|
|
18242
18286
|
|
|
18243
18287
|
|
|
18244
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
18288
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
18245
18289
|
if (x_api_version != null && x_api_version != undefined) {
|
|
18246
18290
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
18247
18291
|
}
|
|
@@ -18313,7 +18357,7 @@ const TokenVaultApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
18313
18357
|
|
|
18314
18358
|
|
|
18315
18359
|
|
|
18316
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
18360
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
18317
18361
|
if (x_api_version != null && x_api_version != undefined) {
|
|
18318
18362
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
18319
18363
|
}
|
|
@@ -18494,7 +18538,7 @@ const UtilitiesApiAxiosParamCreator = function (cashfree: Cashfree) {
|
|
|
18494
18538
|
|
|
18495
18539
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
18496
18540
|
|
|
18497
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.
|
|
18541
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-5.0.8-node';
|
|
18498
18542
|
if (x_api_version != null && x_api_version != undefined) {
|
|
18499
18543
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
18500
18544
|
}
|
|
@@ -18649,7 +18693,7 @@ export class Cashfree {
|
|
|
18649
18693
|
} else {
|
|
18650
18694
|
scope.setExtra('environment', 'production');
|
|
18651
18695
|
}
|
|
18652
|
-
scope.setExtra('release', "5.0.
|
|
18696
|
+
scope.setExtra('release', "5.0.8-node");
|
|
18653
18697
|
});
|
|
18654
18698
|
}
|
|
18655
18699
|
if(axios) {
|