cashfree-pg 4.0.10 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +292 -124
- package/dist/api.d.ts +36 -26
- package/dist/api.js +259 -98
- package/dist/esm/api.d.ts +36 -26
- package/dist/esm/api.js +259 -98
- package/package.json +1 -1
- package/tests/orders.test.ts +75 -76
package/api.ts
CHANGED
|
@@ -1052,6 +1052,12 @@ export interface CreateLinkRequest {
|
|
|
1052
1052
|
* @memberof CreateLinkRequest
|
|
1053
1053
|
*/
|
|
1054
1054
|
'link_meta'?: LinkMetaResponseEntity;
|
|
1055
|
+
/**
|
|
1056
|
+
* If you have Easy split enabled in your Cashfree account then you can use this option to split the order amount.
|
|
1057
|
+
* @type {Array<VendorSplit>}
|
|
1058
|
+
* @memberof CreateLinkRequest
|
|
1059
|
+
*/
|
|
1060
|
+
'order_splits'?: Array<VendorSplit>;
|
|
1055
1061
|
}
|
|
1056
1062
|
/**
|
|
1057
1063
|
* create offer backend request object
|
|
@@ -2708,6 +2714,12 @@ export interface LinkEntity {
|
|
|
2708
2714
|
* @memberof LinkEntity
|
|
2709
2715
|
*/
|
|
2710
2716
|
'link_qrcode'?: string;
|
|
2717
|
+
/**
|
|
2718
|
+
*
|
|
2719
|
+
* @type {Array<VendorSplit>}
|
|
2720
|
+
* @memberof LinkEntity
|
|
2721
|
+
*/
|
|
2722
|
+
'order_splits'?: Array<VendorSplit>;
|
|
2711
2723
|
}
|
|
2712
2724
|
/**
|
|
2713
2725
|
* Payment link meta information object
|
|
@@ -6561,31 +6573,6 @@ export interface UploadTerminalDocsEntity {
|
|
|
6561
6573
|
*/
|
|
6562
6574
|
'status'?: string;
|
|
6563
6575
|
}
|
|
6564
|
-
/**
|
|
6565
|
-
* Update Vendor Request
|
|
6566
|
-
* @export
|
|
6567
|
-
* @interface UploadVendorDocsRequest
|
|
6568
|
-
*/
|
|
6569
|
-
export interface UploadVendorDocsRequest {
|
|
6570
|
-
/**
|
|
6571
|
-
* Mention the type of the document you are uploading. Possible values: UIDAI_FRONT, UIDAI_BACK, UIDAI_NUMBER, DL, DL_NUMBER, PASSPORT_FRONT, PASSPORT_BACK, PASSPORT_NUMBER, VOTER_ID, VOTER_ID_NUMBER, PAN, PAN_NUMBER, GST, GSTIN_NUMBER, CIN, CIN_NUMBER, NBFC_CERTIFICATE. If the doc type ends with a number you should add the doc value else upload the doc file.
|
|
6572
|
-
* @type {string}
|
|
6573
|
-
* @memberof UploadVendorDocsRequest
|
|
6574
|
-
*/
|
|
6575
|
-
'doc_type'?: string;
|
|
6576
|
-
/**
|
|
6577
|
-
* Enter the display name of the uploaded file.
|
|
6578
|
-
* @type {File}
|
|
6579
|
-
* @memberof UploadVendorDocsRequest
|
|
6580
|
-
*/
|
|
6581
|
-
'doc_value'?: File;
|
|
6582
|
-
/**
|
|
6583
|
-
* Select the document that should be uploaded or provide the path of that file. You cannot upload a file that is more than 2MB in size.
|
|
6584
|
-
* @type {string}
|
|
6585
|
-
* @memberof UploadVendorDocsRequest
|
|
6586
|
-
*/
|
|
6587
|
-
'file'?: string;
|
|
6588
|
-
}
|
|
6589
6576
|
/**
|
|
6590
6577
|
* Upload Vendor Document
|
|
6591
6578
|
* @export
|
|
@@ -6856,7 +6843,7 @@ export interface VendorSplit {
|
|
|
6856
6843
|
* @type {string}
|
|
6857
6844
|
* @memberof VendorSplit
|
|
6858
6845
|
*/
|
|
6859
|
-
'vendor_id'
|
|
6846
|
+
'vendor_id': string;
|
|
6860
6847
|
/**
|
|
6861
6848
|
* Amount which will be associated with this vendor
|
|
6862
6849
|
* @type {number}
|
|
@@ -6869,6 +6856,12 @@ export interface VendorSplit {
|
|
|
6869
6856
|
* @memberof VendorSplit
|
|
6870
6857
|
*/
|
|
6871
6858
|
'percentage'?: number;
|
|
6859
|
+
/**
|
|
6860
|
+
* Custom Tags in thr form of {\"key\":\"value\"} which can be passed for an order. A maximum of 10 tags can be added
|
|
6861
|
+
* @type {{ [key: string]: object; }}
|
|
6862
|
+
* @memberof VendorSplit
|
|
6863
|
+
*/
|
|
6864
|
+
'tags'?: { [key: string]: object; };
|
|
6872
6865
|
}
|
|
6873
6866
|
/**
|
|
6874
6867
|
*
|
|
@@ -6942,7 +6935,7 @@ const CustomersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
6942
6935
|
|
|
6943
6936
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6944
6937
|
|
|
6945
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
6938
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
6946
6939
|
if (x_api_version != null && x_api_version != undefined) {
|
|
6947
6940
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
6948
6941
|
}
|
|
@@ -7064,7 +7057,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7064
7057
|
|
|
7065
7058
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7066
7059
|
|
|
7067
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7060
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7068
7061
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7069
7062
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7070
7063
|
}
|
|
@@ -7136,7 +7129,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7136
7129
|
|
|
7137
7130
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7138
7131
|
|
|
7139
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7132
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7140
7133
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7141
7134
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7142
7135
|
}
|
|
@@ -7213,7 +7206,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7213
7206
|
|
|
7214
7207
|
|
|
7215
7208
|
|
|
7216
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7209
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7217
7210
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7218
7211
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7219
7212
|
}
|
|
@@ -7285,7 +7278,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7285
7278
|
|
|
7286
7279
|
|
|
7287
7280
|
|
|
7288
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7281
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7289
7282
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7290
7283
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7291
7284
|
}
|
|
@@ -7357,7 +7350,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7357
7350
|
|
|
7358
7351
|
|
|
7359
7352
|
|
|
7360
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7353
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7361
7354
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7362
7355
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7363
7356
|
}
|
|
@@ -7436,7 +7429,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7436
7429
|
|
|
7437
7430
|
|
|
7438
7431
|
|
|
7439
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7432
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7440
7433
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7441
7434
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7442
7435
|
}
|
|
@@ -7508,7 +7501,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7508
7501
|
|
|
7509
7502
|
|
|
7510
7503
|
|
|
7511
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7504
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7512
7505
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7513
7506
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7514
7507
|
}
|
|
@@ -7579,7 +7572,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7579
7572
|
|
|
7580
7573
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7581
7574
|
|
|
7582
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7575
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7583
7576
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7584
7577
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7585
7578
|
}
|
|
@@ -7655,7 +7648,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7655
7648
|
|
|
7656
7649
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7657
7650
|
|
|
7658
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7651
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7659
7652
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7660
7653
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7661
7654
|
}
|
|
@@ -7677,6 +7670,97 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7677
7670
|
options: localVarRequestOptions,
|
|
7678
7671
|
};
|
|
7679
7672
|
},
|
|
7673
|
+
/**
|
|
7674
|
+
* Use this API to upload KYC documents of a specific vendor.
|
|
7675
|
+
* @summary Upload Vendor Docs
|
|
7676
|
+
|
|
7677
|
+
* @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
|
|
7678
|
+
* @param {string} vendor_id The id which uniquely identifies your vendor.
|
|
7679
|
+
* @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
|
|
7680
|
+
* @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
|
|
7681
|
+
* @param {string} [doc_type] Mention the type of the document you are uploading. Possible values: UIDAI_FRONT, UIDAI_BACK, UIDAI_NUMBER, DL, DL_NUMBER, PASSPORT_FRONT, PASSPORT_BACK, PASSPORT_NUMBER, VOTER_ID, VOTER_ID_NUMBER, PAN, PAN_NUMBER, GST, GSTIN_NUMBER, CIN, CIN_NUMBER, NBFC_CERTIFICATE. If the doc type ends with a number you should add the doc value else upload the doc file.
|
|
7682
|
+
* @param {string} [doc_value] Enter the display name of the uploaded file.
|
|
7683
|
+
* @param {File} [file] Select the document that should be uploaded or provide the path of that file. You cannot upload a file that is more than 2MB in size.
|
|
7684
|
+
* @param {*} [options] Override http request option.
|
|
7685
|
+
* @throws {RequiredError}
|
|
7686
|
+
* x_idempotency_key?: string,
|
|
7687
|
+
*/
|
|
7688
|
+
pGESUploadVendorsDocs: async (x_api_version: string, vendor_id: string, x_request_id?: string, x_idempotency_key?: string, doc_type?: string, doc_value?: string, file?: File, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7689
|
+
// verify required parameter 'x_api_version' is not null or undefined
|
|
7690
|
+
assertParamExists('pGESUploadVendorsDocs', 'x_api_version', x_api_version)
|
|
7691
|
+
// verify required parameter 'vendor_id' is not null or undefined
|
|
7692
|
+
assertParamExists('pGESUploadVendorsDocs', 'vendor_id', vendor_id)
|
|
7693
|
+
const localVarPath = `/easy-split/vendor-docs/{vendor_id}`
|
|
7694
|
+
.replace(`{${"vendor_id"}}`, encodeURIComponent(String(vendor_id)));
|
|
7695
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7696
|
+
var url = "https://sandbox.cashfree.com/pg";
|
|
7697
|
+
if(Cashfree.XEnvironment == CFEnvironment.PRODUCTION) {
|
|
7698
|
+
url = "https://api.cashfree.com/pg"
|
|
7699
|
+
}
|
|
7700
|
+
const localVarUrlObj = new URL(localVarPath, url);
|
|
7701
|
+
let baseOptions;
|
|
7702
|
+
if (configuration) {
|
|
7703
|
+
baseOptions = configuration.baseOptions;
|
|
7704
|
+
}
|
|
7705
|
+
|
|
7706
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
7707
|
+
const localVarHeaderParameter = {} as any;
|
|
7708
|
+
const localVarQueryParameter = {} as any;
|
|
7709
|
+
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
7710
|
+
|
|
7711
|
+
// authentication XPartnerAPIKey required
|
|
7712
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-partner-apikey")
|
|
7713
|
+
|
|
7714
|
+
// authentication XClientSecret required
|
|
7715
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-client-secret")
|
|
7716
|
+
|
|
7717
|
+
// authentication XPartnerMerchantID required
|
|
7718
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-partner-merchantid")
|
|
7719
|
+
|
|
7720
|
+
// authentication XClientID required
|
|
7721
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-client-id")
|
|
7722
|
+
|
|
7723
|
+
// authentication XClientSignatureHeader required
|
|
7724
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-client-signature")
|
|
7725
|
+
|
|
7726
|
+
|
|
7727
|
+
if (doc_type !== undefined) {
|
|
7728
|
+
localVarFormParams.append('doc_type', doc_type as any);
|
|
7729
|
+
}
|
|
7730
|
+
|
|
7731
|
+
if (doc_value !== undefined) {
|
|
7732
|
+
localVarFormParams.append('doc_value', doc_value as any);
|
|
7733
|
+
}
|
|
7734
|
+
|
|
7735
|
+
if (file !== undefined) {
|
|
7736
|
+
localVarFormParams.append('file', file as any);
|
|
7737
|
+
}
|
|
7738
|
+
|
|
7739
|
+
|
|
7740
|
+
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
7741
|
+
|
|
7742
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7743
|
+
if (x_api_version != null && x_api_version != undefined) {
|
|
7744
|
+
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7745
|
+
}
|
|
7746
|
+
|
|
7747
|
+
if (x_request_id != null && x_request_id != undefined) {
|
|
7748
|
+
localVarHeaderParameter['x-request-id'] = x_request_id;
|
|
7749
|
+
}
|
|
7750
|
+
|
|
7751
|
+
if (x_idempotency_key != null && x_idempotency_key != undefined) {
|
|
7752
|
+
localVarHeaderParameter['x-idempotency-key'] = x_idempotency_key;
|
|
7753
|
+
}
|
|
7754
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7755
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7756
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
7757
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
7758
|
+
|
|
7759
|
+
return {
|
|
7760
|
+
url: toPathString(localVarUrlObj),
|
|
7761
|
+
options: localVarRequestOptions,
|
|
7762
|
+
};
|
|
7763
|
+
},
|
|
7680
7764
|
/**
|
|
7681
7765
|
* Split After Payment API splits the payments to vendors after successful payment from the customers.
|
|
7682
7766
|
* @summary Split After Payment
|
|
@@ -7731,7 +7815,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7731
7815
|
|
|
7732
7816
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7733
7817
|
|
|
7734
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7818
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7735
7819
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7736
7820
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7737
7821
|
}
|
|
@@ -7803,7 +7887,7 @@ const EasySplitApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
7803
7887
|
|
|
7804
7888
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7805
7889
|
|
|
7806
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
7890
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
7807
7891
|
if (x_api_version != null && x_api_version != undefined) {
|
|
7808
7892
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
7809
7893
|
}
|
|
@@ -8001,6 +8085,27 @@ const EasySplitApiFp = function(configuration?: Configuration) {
|
|
|
8001
8085
|
}
|
|
8002
8086
|
return createRequestFunction(localVarAxiosArgs, globalAxios, url, configuration);
|
|
8003
8087
|
},
|
|
8088
|
+
/**
|
|
8089
|
+
* Use this API to upload KYC documents of a specific vendor.
|
|
8090
|
+
* @summary Upload Vendor Docs
|
|
8091
|
+
* @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
|
|
8092
|
+
* @param {string} vendor_id The id which uniquely identifies your vendor.
|
|
8093
|
+
* @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
|
|
8094
|
+
* @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
|
|
8095
|
+
* @param {string} [doc_type] Mention the type of the document you are uploading. Possible values: UIDAI_FRONT, UIDAI_BACK, UIDAI_NUMBER, DL, DL_NUMBER, PASSPORT_FRONT, PASSPORT_BACK, PASSPORT_NUMBER, VOTER_ID, VOTER_ID_NUMBER, PAN, PAN_NUMBER, GST, GSTIN_NUMBER, CIN, CIN_NUMBER, NBFC_CERTIFICATE. If the doc type ends with a number you should add the doc value else upload the doc file.
|
|
8096
|
+
* @param {string} [doc_value] Enter the display name of the uploaded file.
|
|
8097
|
+
* @param {File} [file] Select the document that should be uploaded or provide the path of that file. You cannot upload a file that is more than 2MB in size.
|
|
8098
|
+
* @param {*} [options] Override http request option.
|
|
8099
|
+
* @throws {RequiredError}
|
|
8100
|
+
*/
|
|
8101
|
+
async pGESUploadVendorsDocs(x_api_version: string, vendor_id: string, x_request_id?: string, x_idempotency_key?: string, doc_type?: string, doc_value?: string, file?: File, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadVendorDocumentsResponse>> {
|
|
8102
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.pGESUploadVendorsDocs(x_api_version, vendor_id, x_request_id, x_idempotency_key, doc_type, doc_value, file, options);
|
|
8103
|
+
var url = "https://sandbox.cashfree.com/pg";
|
|
8104
|
+
if(Cashfree.XEnvironment == CFEnvironment.PRODUCTION) {
|
|
8105
|
+
url = "https://api.cashfree.com/pg"
|
|
8106
|
+
}
|
|
8107
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, url, configuration);
|
|
8108
|
+
},
|
|
8004
8109
|
/**
|
|
8005
8110
|
* Split After Payment API splits the payments to vendors after successful payment from the customers.
|
|
8006
8111
|
* @summary Split After Payment
|
|
@@ -8108,7 +8213,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8108
8213
|
|
|
8109
8214
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
8110
8215
|
|
|
8111
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
8216
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
8112
8217
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8113
8218
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8114
8219
|
}
|
|
@@ -8182,7 +8287,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8182
8287
|
|
|
8183
8288
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
8184
8289
|
|
|
8185
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
8290
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
8186
8291
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8187
8292
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8188
8293
|
}
|
|
@@ -8256,7 +8361,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8256
8361
|
|
|
8257
8362
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
8258
8363
|
|
|
8259
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
8364
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
8260
8365
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8261
8366
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8262
8367
|
}
|
|
@@ -8330,7 +8435,7 @@ const EligibilityApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
8330
8435
|
|
|
8331
8436
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
8332
8437
|
|
|
8333
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
8438
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
8334
8439
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8335
8440
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8336
8441
|
}
|
|
@@ -8504,7 +8609,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
8504
8609
|
|
|
8505
8610
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
8506
8611
|
|
|
8507
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
8612
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
8508
8613
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8509
8614
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8510
8615
|
}
|
|
@@ -8577,7 +8682,7 @@ const OffersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
8577
8682
|
|
|
8578
8683
|
|
|
8579
8684
|
|
|
8580
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
8685
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
8581
8686
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8582
8687
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8583
8688
|
}
|
|
@@ -8714,7 +8819,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
8714
8819
|
|
|
8715
8820
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
8716
8821
|
|
|
8717
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
8822
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
8718
8823
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8719
8824
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8720
8825
|
}
|
|
@@ -8787,7 +8892,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
8787
8892
|
|
|
8788
8893
|
|
|
8789
8894
|
|
|
8790
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
8895
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
8791
8896
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8792
8897
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8793
8898
|
}
|
|
@@ -8864,7 +8969,7 @@ const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
8864
8969
|
|
|
8865
8970
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
8866
8971
|
|
|
8867
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
8972
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
8868
8973
|
if (x_api_version != null && x_api_version != undefined) {
|
|
8869
8974
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
8870
8975
|
}
|
|
@@ -9023,7 +9128,7 @@ const PGReconciliationApiAxiosParamCreator = function (configuration?: Configura
|
|
|
9023
9128
|
|
|
9024
9129
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
9025
9130
|
|
|
9026
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9131
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9027
9132
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9028
9133
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9029
9134
|
}
|
|
@@ -9144,7 +9249,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
9144
9249
|
|
|
9145
9250
|
|
|
9146
9251
|
|
|
9147
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9252
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9148
9253
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9149
9254
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9150
9255
|
}
|
|
@@ -9217,7 +9322,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
9217
9322
|
|
|
9218
9323
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
9219
9324
|
|
|
9220
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9325
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9221
9326
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9222
9327
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9223
9328
|
}
|
|
@@ -9290,7 +9395,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
9290
9395
|
|
|
9291
9396
|
|
|
9292
9397
|
|
|
9293
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9398
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9294
9399
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9295
9400
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9296
9401
|
}
|
|
@@ -9362,7 +9467,7 @@ const PaymentLinksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
9362
9467
|
|
|
9363
9468
|
|
|
9364
9469
|
|
|
9365
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9470
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9366
9471
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9367
9472
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9368
9473
|
}
|
|
@@ -9539,7 +9644,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
9539
9644
|
|
|
9540
9645
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
9541
9646
|
|
|
9542
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9647
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9543
9648
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9544
9649
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9545
9650
|
}
|
|
@@ -9602,7 +9707,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
9602
9707
|
|
|
9603
9708
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
9604
9709
|
|
|
9605
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9710
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9606
9711
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9607
9712
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9608
9713
|
}
|
|
@@ -9679,7 +9784,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
9679
9784
|
|
|
9680
9785
|
|
|
9681
9786
|
|
|
9682
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9787
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9683
9788
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9684
9789
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9685
9790
|
}
|
|
@@ -9751,7 +9856,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
9751
9856
|
|
|
9752
9857
|
|
|
9753
9858
|
|
|
9754
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9859
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9755
9860
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9756
9861
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9757
9862
|
}
|
|
@@ -9809,7 +9914,7 @@ const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
9809
9914
|
|
|
9810
9915
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
9811
9916
|
|
|
9812
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
9917
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
9813
9918
|
if (x_api_version != null && x_api_version != undefined) {
|
|
9814
9919
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
9815
9920
|
}
|
|
@@ -10008,7 +10113,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
10008
10113
|
|
|
10009
10114
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
10010
10115
|
|
|
10011
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10116
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10012
10117
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10013
10118
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10014
10119
|
}
|
|
@@ -10085,7 +10190,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
10085
10190
|
|
|
10086
10191
|
|
|
10087
10192
|
|
|
10088
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10193
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10089
10194
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10090
10195
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10091
10196
|
}
|
|
@@ -10157,7 +10262,7 @@ const RefundsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
10157
10262
|
|
|
10158
10263
|
|
|
10159
10264
|
|
|
10160
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10265
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10161
10266
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10162
10267
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10163
10268
|
}
|
|
@@ -10316,7 +10421,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
|
|
|
10316
10421
|
|
|
10317
10422
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
10318
10423
|
|
|
10319
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10424
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10320
10425
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10321
10426
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10322
10427
|
}
|
|
@@ -10392,7 +10497,7 @@ const SettlementReconciliationApiAxiosParamCreator = function (configuration?: C
|
|
|
10392
10497
|
|
|
10393
10498
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
10394
10499
|
|
|
10395
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10500
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10396
10501
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10397
10502
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10398
10503
|
}
|
|
@@ -10533,7 +10638,7 @@ const SettlementsApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
10533
10638
|
|
|
10534
10639
|
|
|
10535
10640
|
|
|
10536
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10641
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10537
10642
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10538
10643
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10539
10644
|
}
|
|
@@ -10652,7 +10757,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
10652
10757
|
|
|
10653
10758
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
10654
10759
|
|
|
10655
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10760
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10656
10761
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10657
10762
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10658
10763
|
}
|
|
@@ -10726,7 +10831,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
10726
10831
|
|
|
10727
10832
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
10728
10833
|
|
|
10729
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10834
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10730
10835
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10731
10836
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10732
10837
|
}
|
|
@@ -10799,7 +10904,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
10799
10904
|
|
|
10800
10905
|
|
|
10801
10906
|
|
|
10802
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10907
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10803
10908
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10804
10909
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10805
10910
|
}
|
|
@@ -10881,7 +10986,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
10881
10986
|
|
|
10882
10987
|
|
|
10883
10988
|
|
|
10884
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
10989
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10885
10990
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10886
10991
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10887
10992
|
}
|
|
@@ -10960,7 +11065,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
10960
11065
|
|
|
10961
11066
|
|
|
10962
11067
|
|
|
10963
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
11068
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
10964
11069
|
if (x_api_version != null && x_api_version != undefined) {
|
|
10965
11070
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
10966
11071
|
}
|
|
@@ -11037,7 +11142,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
11037
11142
|
|
|
11038
11143
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11039
11144
|
|
|
11040
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
11145
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
11041
11146
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11042
11147
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11043
11148
|
}
|
|
@@ -11115,7 +11220,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
11115
11220
|
|
|
11116
11221
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11117
11222
|
|
|
11118
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
11223
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
11119
11224
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11120
11225
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11121
11226
|
}
|
|
@@ -11193,7 +11298,7 @@ const SoftPOSApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
11193
11298
|
|
|
11194
11299
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11195
11300
|
|
|
11196
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
11301
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
11197
11302
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11198
11303
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11199
11304
|
}
|
|
@@ -11447,7 +11552,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
11447
11552
|
|
|
11448
11553
|
|
|
11449
11554
|
|
|
11450
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
11555
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
11451
11556
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11452
11557
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11453
11558
|
}
|
|
@@ -11523,7 +11628,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
11523
11628
|
|
|
11524
11629
|
|
|
11525
11630
|
|
|
11526
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
11631
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
11527
11632
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11528
11633
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11529
11634
|
}
|
|
@@ -11602,7 +11707,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
11602
11707
|
|
|
11603
11708
|
|
|
11604
11709
|
|
|
11605
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
11710
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
11606
11711
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11607
11712
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11608
11713
|
}
|
|
@@ -11678,7 +11783,7 @@ const TokenVaultApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
11678
11783
|
|
|
11679
11784
|
|
|
11680
11785
|
|
|
11681
|
-
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.
|
|
11786
|
+
localVarHeaderParameter['x-sdk-platform'] = 'nodejssdk-4.1.2';
|
|
11682
11787
|
if (x_api_version != null && x_api_version != undefined) {
|
|
11683
11788
|
localVarHeaderParameter['x-api-version'] = x_api_version;
|
|
11684
11789
|
}
|
|
@@ -11906,7 +12011,7 @@ export class Cashfree {
|
|
|
11906
12011
|
} else {
|
|
11907
12012
|
scope.setExtra('environment', 'production');
|
|
11908
12013
|
}
|
|
11909
|
-
scope.setExtra('release', "4.
|
|
12014
|
+
scope.setExtra('release', "4.1.2");
|
|
11910
12015
|
});
|
|
11911
12016
|
}
|
|
11912
12017
|
try {
|
|
@@ -11967,7 +12072,7 @@ export class Cashfree {
|
|
|
11967
12072
|
} else {
|
|
11968
12073
|
scope.setExtra('environment', 'production');
|
|
11969
12074
|
}
|
|
11970
|
-
scope.setExtra('release', "4.
|
|
12075
|
+
scope.setExtra('release', "4.1.2");
|
|
11971
12076
|
});
|
|
11972
12077
|
}
|
|
11973
12078
|
try {
|
|
@@ -12027,7 +12132,7 @@ export class Cashfree {
|
|
|
12027
12132
|
} else {
|
|
12028
12133
|
scope.setExtra('environment', 'production');
|
|
12029
12134
|
}
|
|
12030
|
-
scope.setExtra('release', "4.
|
|
12135
|
+
scope.setExtra('release', "4.1.2");
|
|
12031
12136
|
});
|
|
12032
12137
|
}
|
|
12033
12138
|
try {
|
|
@@ -12088,7 +12193,7 @@ export class Cashfree {
|
|
|
12088
12193
|
} else {
|
|
12089
12194
|
scope.setExtra('environment', 'production');
|
|
12090
12195
|
}
|
|
12091
|
-
scope.setExtra('release', "4.
|
|
12196
|
+
scope.setExtra('release', "4.1.2");
|
|
12092
12197
|
});
|
|
12093
12198
|
}
|
|
12094
12199
|
try {
|
|
@@ -12148,7 +12253,7 @@ export class Cashfree {
|
|
|
12148
12253
|
} else {
|
|
12149
12254
|
scope.setExtra('environment', 'production');
|
|
12150
12255
|
}
|
|
12151
|
-
scope.setExtra('release', "4.
|
|
12256
|
+
scope.setExtra('release', "4.1.2");
|
|
12152
12257
|
});
|
|
12153
12258
|
}
|
|
12154
12259
|
try {
|
|
@@ -12208,7 +12313,7 @@ export class Cashfree {
|
|
|
12208
12313
|
} else {
|
|
12209
12314
|
scope.setExtra('environment', 'production');
|
|
12210
12315
|
}
|
|
12211
|
-
scope.setExtra('release', "4.
|
|
12316
|
+
scope.setExtra('release', "4.1.2");
|
|
12212
12317
|
});
|
|
12213
12318
|
}
|
|
12214
12319
|
try {
|
|
@@ -12269,7 +12374,7 @@ export class Cashfree {
|
|
|
12269
12374
|
} else {
|
|
12270
12375
|
scope.setExtra('environment', 'production');
|
|
12271
12376
|
}
|
|
12272
|
-
scope.setExtra('release', "4.
|
|
12377
|
+
scope.setExtra('release', "4.1.2");
|
|
12273
12378
|
});
|
|
12274
12379
|
}
|
|
12275
12380
|
try {
|
|
@@ -12329,7 +12434,7 @@ export class Cashfree {
|
|
|
12329
12434
|
} else {
|
|
12330
12435
|
scope.setExtra('environment', 'production');
|
|
12331
12436
|
}
|
|
12332
|
-
scope.setExtra('release', "4.
|
|
12437
|
+
scope.setExtra('release', "4.1.2");
|
|
12333
12438
|
});
|
|
12334
12439
|
}
|
|
12335
12440
|
try {
|
|
@@ -12389,7 +12494,7 @@ export class Cashfree {
|
|
|
12389
12494
|
} else {
|
|
12390
12495
|
scope.setExtra('environment', 'production');
|
|
12391
12496
|
}
|
|
12392
|
-
scope.setExtra('release', "4.
|
|
12497
|
+
scope.setExtra('release', "4.1.2");
|
|
12393
12498
|
});
|
|
12394
12499
|
}
|
|
12395
12500
|
try {
|
|
@@ -12450,7 +12555,7 @@ export class Cashfree {
|
|
|
12450
12555
|
} else {
|
|
12451
12556
|
scope.setExtra('environment', 'production');
|
|
12452
12557
|
}
|
|
12453
|
-
scope.setExtra('release', "4.
|
|
12558
|
+
scope.setExtra('release', "4.1.2");
|
|
12454
12559
|
});
|
|
12455
12560
|
}
|
|
12456
12561
|
try {
|
|
@@ -12463,6 +12568,69 @@ export class Cashfree {
|
|
|
12463
12568
|
}
|
|
12464
12569
|
}
|
|
12465
12570
|
|
|
12571
|
+
/**
|
|
12572
|
+
* Use this API to upload KYC documents of a specific vendor.
|
|
12573
|
+
* @summary Upload Vendor Docs
|
|
12574
|
+
* @param {string} x_api_version API version to be used. Format is in YYYY-MM-DD
|
|
12575
|
+
* @param {string} vendor_id The id which uniquely identifies your vendor.
|
|
12576
|
+
* @param {string} [x_request_id] Request id for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to cashfree
|
|
12577
|
+
* @param {string} [x_idempotency_key] An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
|
|
12578
|
+
* @param {string} [doc_type] Mention the type of the document you are uploading. Possible values: UIDAI_FRONT, UIDAI_BACK, UIDAI_NUMBER, DL, DL_NUMBER, PASSPORT_FRONT, PASSPORT_BACK, PASSPORT_NUMBER, VOTER_ID, VOTER_ID_NUMBER, PAN, PAN_NUMBER, GST, GSTIN_NUMBER, CIN, CIN_NUMBER, NBFC_CERTIFICATE. If the doc type ends with a number you should add the doc value else upload the doc file.
|
|
12579
|
+
* @param {string} [doc_value] Enter the display name of the uploaded file.
|
|
12580
|
+
* @param {File} [file] Select the document that should be uploaded or provide the path of that file. You cannot upload a file that is more than 2MB in size.
|
|
12581
|
+
* @param {*} [options] Override http request option.
|
|
12582
|
+
* @throws {RequiredError}
|
|
12583
|
+
* @memberof EasySplitApi
|
|
12584
|
+
*/
|
|
12585
|
+
public static PGESUploadVendorsDocs(x_api_version: string, vendor_id: string, x_request_id?: string, x_idempotency_key?: string, doc_type?: string, doc_value?: string, file?: File, options?: AxiosRequestConfig) {
|
|
12586
|
+
if(Cashfree.XEnableErrorAnalytics) {
|
|
12587
|
+
Sentry.init({
|
|
12588
|
+
dsn: 'https://748d9dcfc4286488867c59651cb6121a@o330525.ingest.sentry.io/4506692796350464',
|
|
12589
|
+
// Performance Monitoring
|
|
12590
|
+
tracesSampleRate: 1.0, // Capture 100% of the transactions, reduce in production!
|
|
12591
|
+
// Set sampling rate for profiling - this is relative to tracesSampleRate
|
|
12592
|
+
profilesSampleRate: 1.0, // Capture 100% of the transactions, reduce in production!,
|
|
12593
|
+
attachStacktrace: true,
|
|
12594
|
+
enableTracing: true,
|
|
12595
|
+
beforeSend: (event) => {
|
|
12596
|
+
delete event.contexts.os;
|
|
12597
|
+
delete event.contexts.device;
|
|
12598
|
+
delete event.server_name;
|
|
12599
|
+
if (event.exception && event.exception.values && event.exception.values.length && event.exception.values[0].stacktrace) {
|
|
12600
|
+
const stackTrace = event.exception.values[0].stacktrace;
|
|
12601
|
+
if (stackTrace && stackTrace.frames) {
|
|
12602
|
+
|
|
12603
|
+
const filteredDomains = stackTrace.frames.filter((x) => x.filename.includes("cashfree-pg")).map((x) => x.filename);
|
|
12604
|
+
if (filteredDomains && filteredDomains.length > 0 && filteredDomains[0].includes("cashfree-pg")) {
|
|
12605
|
+
if(Cashfree.XEnableErrorAnalytics) {
|
|
12606
|
+
return event;
|
|
12607
|
+
}
|
|
12608
|
+
return null;
|
|
12609
|
+
}
|
|
12610
|
+
}
|
|
12611
|
+
}
|
|
12612
|
+
return null;
|
|
12613
|
+
},
|
|
12614
|
+
});
|
|
12615
|
+
Sentry.configureScope((scope) => {
|
|
12616
|
+
if(Cashfree.XEnvironment == CFEnvironment.SANDBOX) {
|
|
12617
|
+
scope.setExtra('environment', 'sandbox');
|
|
12618
|
+
} else {
|
|
12619
|
+
scope.setExtra('environment', 'production');
|
|
12620
|
+
}
|
|
12621
|
+
scope.setExtra('release', "4.1.2");
|
|
12622
|
+
});
|
|
12623
|
+
}
|
|
12624
|
+
try {
|
|
12625
|
+
return EasySplitApiFp().pGESUploadVendorsDocs(x_api_version, vendor_id, x_request_id, x_idempotency_key, doc_type, doc_value, file, options).then((request) => request(Cashfree.axios, Cashfree.basePath));
|
|
12626
|
+
} catch (error) {
|
|
12627
|
+
if(Cashfree.XEnableErrorAnalytics) {
|
|
12628
|
+
Sentry.captureException(error);
|
|
12629
|
+
}
|
|
12630
|
+
throw error;
|
|
12631
|
+
}
|
|
12632
|
+
}
|
|
12633
|
+
|
|
12466
12634
|
/**
|
|
12467
12635
|
* Split After Payment API splits the payments to vendors after successful payment from the customers.
|
|
12468
12636
|
* @summary Split After Payment
|
|
@@ -12511,7 +12679,7 @@ export class Cashfree {
|
|
|
12511
12679
|
} else {
|
|
12512
12680
|
scope.setExtra('environment', 'production');
|
|
12513
12681
|
}
|
|
12514
|
-
scope.setExtra('release', "4.
|
|
12682
|
+
scope.setExtra('release', "4.1.2");
|
|
12515
12683
|
});
|
|
12516
12684
|
}
|
|
12517
12685
|
try {
|
|
@@ -12571,7 +12739,7 @@ export class Cashfree {
|
|
|
12571
12739
|
} else {
|
|
12572
12740
|
scope.setExtra('environment', 'production');
|
|
12573
12741
|
}
|
|
12574
|
-
scope.setExtra('release', "4.
|
|
12742
|
+
scope.setExtra('release', "4.1.2");
|
|
12575
12743
|
});
|
|
12576
12744
|
}
|
|
12577
12745
|
try {
|
|
@@ -12631,7 +12799,7 @@ export class Cashfree {
|
|
|
12631
12799
|
} else {
|
|
12632
12800
|
scope.setExtra('environment', 'production');
|
|
12633
12801
|
}
|
|
12634
|
-
scope.setExtra('release', "4.
|
|
12802
|
+
scope.setExtra('release', "4.1.2");
|
|
12635
12803
|
});
|
|
12636
12804
|
}
|
|
12637
12805
|
try {
|
|
@@ -12691,7 +12859,7 @@ export class Cashfree {
|
|
|
12691
12859
|
} else {
|
|
12692
12860
|
scope.setExtra('environment', 'production');
|
|
12693
12861
|
}
|
|
12694
|
-
scope.setExtra('release', "4.
|
|
12862
|
+
scope.setExtra('release', "4.1.2");
|
|
12695
12863
|
});
|
|
12696
12864
|
}
|
|
12697
12865
|
try {
|
|
@@ -12751,7 +12919,7 @@ export class Cashfree {
|
|
|
12751
12919
|
} else {
|
|
12752
12920
|
scope.setExtra('environment', 'production');
|
|
12753
12921
|
}
|
|
12754
|
-
scope.setExtra('release', "4.
|
|
12922
|
+
scope.setExtra('release', "4.1.2");
|
|
12755
12923
|
});
|
|
12756
12924
|
}
|
|
12757
12925
|
try {
|
|
@@ -12811,7 +12979,7 @@ export class Cashfree {
|
|
|
12811
12979
|
} else {
|
|
12812
12980
|
scope.setExtra('environment', 'production');
|
|
12813
12981
|
}
|
|
12814
|
-
scope.setExtra('release', "4.
|
|
12982
|
+
scope.setExtra('release', "4.1.2");
|
|
12815
12983
|
});
|
|
12816
12984
|
}
|
|
12817
12985
|
try {
|
|
@@ -12871,7 +13039,7 @@ export class Cashfree {
|
|
|
12871
13039
|
} else {
|
|
12872
13040
|
scope.setExtra('environment', 'production');
|
|
12873
13041
|
}
|
|
12874
|
-
scope.setExtra('release', "4.
|
|
13042
|
+
scope.setExtra('release', "4.1.2");
|
|
12875
13043
|
});
|
|
12876
13044
|
}
|
|
12877
13045
|
try {
|
|
@@ -12931,7 +13099,7 @@ export class Cashfree {
|
|
|
12931
13099
|
} else {
|
|
12932
13100
|
scope.setExtra('environment', 'production');
|
|
12933
13101
|
}
|
|
12934
|
-
scope.setExtra('release', "4.
|
|
13102
|
+
scope.setExtra('release', "4.1.2");
|
|
12935
13103
|
});
|
|
12936
13104
|
}
|
|
12937
13105
|
try {
|
|
@@ -12991,7 +13159,7 @@ export class Cashfree {
|
|
|
12991
13159
|
} else {
|
|
12992
13160
|
scope.setExtra('environment', 'production');
|
|
12993
13161
|
}
|
|
12994
|
-
scope.setExtra('release', "4.
|
|
13162
|
+
scope.setExtra('release', "4.1.2");
|
|
12995
13163
|
});
|
|
12996
13164
|
}
|
|
12997
13165
|
try {
|
|
@@ -13051,7 +13219,7 @@ export class Cashfree {
|
|
|
13051
13219
|
} else {
|
|
13052
13220
|
scope.setExtra('environment', 'production');
|
|
13053
13221
|
}
|
|
13054
|
-
scope.setExtra('release', "4.
|
|
13222
|
+
scope.setExtra('release', "4.1.2");
|
|
13055
13223
|
});
|
|
13056
13224
|
}
|
|
13057
13225
|
try {
|
|
@@ -13112,7 +13280,7 @@ export class Cashfree {
|
|
|
13112
13280
|
} else {
|
|
13113
13281
|
scope.setExtra('environment', 'production');
|
|
13114
13282
|
}
|
|
13115
|
-
scope.setExtra('release', "4.
|
|
13283
|
+
scope.setExtra('release', "4.1.2");
|
|
13116
13284
|
});
|
|
13117
13285
|
}
|
|
13118
13286
|
try {
|
|
@@ -13174,7 +13342,7 @@ export class Cashfree {
|
|
|
13174
13342
|
} else {
|
|
13175
13343
|
scope.setExtra('environment', 'production');
|
|
13176
13344
|
}
|
|
13177
|
-
scope.setExtra('release', "4.
|
|
13345
|
+
scope.setExtra('release', "4.1.2");
|
|
13178
13346
|
});
|
|
13179
13347
|
}
|
|
13180
13348
|
try {
|
|
@@ -13234,7 +13402,7 @@ export class Cashfree {
|
|
|
13234
13402
|
} else {
|
|
13235
13403
|
scope.setExtra('environment', 'production');
|
|
13236
13404
|
}
|
|
13237
|
-
scope.setExtra('release', "4.
|
|
13405
|
+
scope.setExtra('release', "4.1.2");
|
|
13238
13406
|
});
|
|
13239
13407
|
}
|
|
13240
13408
|
try {
|
|
@@ -13294,7 +13462,7 @@ export class Cashfree {
|
|
|
13294
13462
|
} else {
|
|
13295
13463
|
scope.setExtra('environment', 'production');
|
|
13296
13464
|
}
|
|
13297
|
-
scope.setExtra('release', "4.
|
|
13465
|
+
scope.setExtra('release', "4.1.2");
|
|
13298
13466
|
});
|
|
13299
13467
|
}
|
|
13300
13468
|
try {
|
|
@@ -13354,7 +13522,7 @@ export class Cashfree {
|
|
|
13354
13522
|
} else {
|
|
13355
13523
|
scope.setExtra('environment', 'production');
|
|
13356
13524
|
}
|
|
13357
|
-
scope.setExtra('release', "4.
|
|
13525
|
+
scope.setExtra('release', "4.1.2");
|
|
13358
13526
|
});
|
|
13359
13527
|
}
|
|
13360
13528
|
try {
|
|
@@ -13414,7 +13582,7 @@ export class Cashfree {
|
|
|
13414
13582
|
} else {
|
|
13415
13583
|
scope.setExtra('environment', 'production');
|
|
13416
13584
|
}
|
|
13417
|
-
scope.setExtra('release', "4.
|
|
13585
|
+
scope.setExtra('release', "4.1.2");
|
|
13418
13586
|
});
|
|
13419
13587
|
}
|
|
13420
13588
|
try {
|
|
@@ -13475,7 +13643,7 @@ export class Cashfree {
|
|
|
13475
13643
|
} else {
|
|
13476
13644
|
scope.setExtra('environment', 'production');
|
|
13477
13645
|
}
|
|
13478
|
-
scope.setExtra('release', "4.
|
|
13646
|
+
scope.setExtra('release', "4.1.2");
|
|
13479
13647
|
});
|
|
13480
13648
|
}
|
|
13481
13649
|
try {
|
|
@@ -13536,7 +13704,7 @@ export class Cashfree {
|
|
|
13536
13704
|
} else {
|
|
13537
13705
|
scope.setExtra('environment', 'production');
|
|
13538
13706
|
}
|
|
13539
|
-
scope.setExtra('release', "4.
|
|
13707
|
+
scope.setExtra('release', "4.1.2");
|
|
13540
13708
|
});
|
|
13541
13709
|
}
|
|
13542
13710
|
try {
|
|
@@ -13597,7 +13765,7 @@ export class Cashfree {
|
|
|
13597
13765
|
} else {
|
|
13598
13766
|
scope.setExtra('environment', 'production');
|
|
13599
13767
|
}
|
|
13600
|
-
scope.setExtra('release', "4.
|
|
13768
|
+
scope.setExtra('release', "4.1.2");
|
|
13601
13769
|
});
|
|
13602
13770
|
}
|
|
13603
13771
|
try {
|
|
@@ -13657,7 +13825,7 @@ export class Cashfree {
|
|
|
13657
13825
|
} else {
|
|
13658
13826
|
scope.setExtra('environment', 'production');
|
|
13659
13827
|
}
|
|
13660
|
-
scope.setExtra('release', "4.
|
|
13828
|
+
scope.setExtra('release', "4.1.2");
|
|
13661
13829
|
});
|
|
13662
13830
|
}
|
|
13663
13831
|
try {
|
|
@@ -13717,7 +13885,7 @@ export class Cashfree {
|
|
|
13717
13885
|
} else {
|
|
13718
13886
|
scope.setExtra('environment', 'production');
|
|
13719
13887
|
}
|
|
13720
|
-
scope.setExtra('release', "4.
|
|
13888
|
+
scope.setExtra('release', "4.1.2");
|
|
13721
13889
|
});
|
|
13722
13890
|
}
|
|
13723
13891
|
try {
|
|
@@ -13778,7 +13946,7 @@ export class Cashfree {
|
|
|
13778
13946
|
} else {
|
|
13779
13947
|
scope.setExtra('environment', 'production');
|
|
13780
13948
|
}
|
|
13781
|
-
scope.setExtra('release', "4.
|
|
13949
|
+
scope.setExtra('release', "4.1.2");
|
|
13782
13950
|
});
|
|
13783
13951
|
}
|
|
13784
13952
|
try {
|
|
@@ -13839,7 +14007,7 @@ export class Cashfree {
|
|
|
13839
14007
|
} else {
|
|
13840
14008
|
scope.setExtra('environment', 'production');
|
|
13841
14009
|
}
|
|
13842
|
-
scope.setExtra('release', "4.
|
|
14010
|
+
scope.setExtra('release', "4.1.2");
|
|
13843
14011
|
});
|
|
13844
14012
|
}
|
|
13845
14013
|
try {
|
|
@@ -13899,7 +14067,7 @@ export class Cashfree {
|
|
|
13899
14067
|
} else {
|
|
13900
14068
|
scope.setExtra('environment', 'production');
|
|
13901
14069
|
}
|
|
13902
|
-
scope.setExtra('release', "4.
|
|
14070
|
+
scope.setExtra('release', "4.1.2");
|
|
13903
14071
|
});
|
|
13904
14072
|
}
|
|
13905
14073
|
try {
|
|
@@ -13961,7 +14129,7 @@ export class Cashfree {
|
|
|
13961
14129
|
} else {
|
|
13962
14130
|
scope.setExtra('environment', 'production');
|
|
13963
14131
|
}
|
|
13964
|
-
scope.setExtra('release', "4.
|
|
14132
|
+
scope.setExtra('release', "4.1.2");
|
|
13965
14133
|
});
|
|
13966
14134
|
}
|
|
13967
14135
|
try {
|
|
@@ -14023,7 +14191,7 @@ export class Cashfree {
|
|
|
14023
14191
|
} else {
|
|
14024
14192
|
scope.setExtra('environment', 'production');
|
|
14025
14193
|
}
|
|
14026
|
-
scope.setExtra('release', "4.
|
|
14194
|
+
scope.setExtra('release', "4.1.2");
|
|
14027
14195
|
});
|
|
14028
14196
|
}
|
|
14029
14197
|
try {
|
|
@@ -14083,7 +14251,7 @@ export class Cashfree {
|
|
|
14083
14251
|
} else {
|
|
14084
14252
|
scope.setExtra('environment', 'production');
|
|
14085
14253
|
}
|
|
14086
|
-
scope.setExtra('release', "4.
|
|
14254
|
+
scope.setExtra('release', "4.1.2");
|
|
14087
14255
|
});
|
|
14088
14256
|
}
|
|
14089
14257
|
try {
|
|
@@ -14143,7 +14311,7 @@ export class Cashfree {
|
|
|
14143
14311
|
} else {
|
|
14144
14312
|
scope.setExtra('environment', 'production');
|
|
14145
14313
|
}
|
|
14146
|
-
scope.setExtra('release', "4.
|
|
14314
|
+
scope.setExtra('release', "4.1.2");
|
|
14147
14315
|
});
|
|
14148
14316
|
}
|
|
14149
14317
|
try {
|
|
@@ -14203,7 +14371,7 @@ export class Cashfree {
|
|
|
14203
14371
|
} else {
|
|
14204
14372
|
scope.setExtra('environment', 'production');
|
|
14205
14373
|
}
|
|
14206
|
-
scope.setExtra('release', "4.
|
|
14374
|
+
scope.setExtra('release', "4.1.2");
|
|
14207
14375
|
});
|
|
14208
14376
|
}
|
|
14209
14377
|
try {
|
|
@@ -14263,7 +14431,7 @@ export class Cashfree {
|
|
|
14263
14431
|
} else {
|
|
14264
14432
|
scope.setExtra('environment', 'production');
|
|
14265
14433
|
}
|
|
14266
|
-
scope.setExtra('release', "4.
|
|
14434
|
+
scope.setExtra('release', "4.1.2");
|
|
14267
14435
|
});
|
|
14268
14436
|
}
|
|
14269
14437
|
try {
|
|
@@ -14324,7 +14492,7 @@ export class Cashfree {
|
|
|
14324
14492
|
} else {
|
|
14325
14493
|
scope.setExtra('environment', 'production');
|
|
14326
14494
|
}
|
|
14327
|
-
scope.setExtra('release', "4.
|
|
14495
|
+
scope.setExtra('release', "4.1.2");
|
|
14328
14496
|
});
|
|
14329
14497
|
}
|
|
14330
14498
|
try {
|
|
@@ -14385,7 +14553,7 @@ export class Cashfree {
|
|
|
14385
14553
|
} else {
|
|
14386
14554
|
scope.setExtra('environment', 'production');
|
|
14387
14555
|
}
|
|
14388
|
-
scope.setExtra('release', "4.
|
|
14556
|
+
scope.setExtra('release', "4.1.2");
|
|
14389
14557
|
});
|
|
14390
14558
|
}
|
|
14391
14559
|
try {
|
|
@@ -14446,7 +14614,7 @@ export class Cashfree {
|
|
|
14446
14614
|
} else {
|
|
14447
14615
|
scope.setExtra('environment', 'production');
|
|
14448
14616
|
}
|
|
14449
|
-
scope.setExtra('release', "4.
|
|
14617
|
+
scope.setExtra('release', "4.1.2");
|
|
14450
14618
|
});
|
|
14451
14619
|
}
|
|
14452
14620
|
try {
|
|
@@ -14507,7 +14675,7 @@ export class Cashfree {
|
|
|
14507
14675
|
} else {
|
|
14508
14676
|
scope.setExtra('environment', 'production');
|
|
14509
14677
|
}
|
|
14510
|
-
scope.setExtra('release', "4.
|
|
14678
|
+
scope.setExtra('release', "4.1.2");
|
|
14511
14679
|
});
|
|
14512
14680
|
}
|
|
14513
14681
|
try {
|
|
@@ -14568,7 +14736,7 @@ export class Cashfree {
|
|
|
14568
14736
|
} else {
|
|
14569
14737
|
scope.setExtra('environment', 'production');
|
|
14570
14738
|
}
|
|
14571
|
-
scope.setExtra('release', "4.
|
|
14739
|
+
scope.setExtra('release', "4.1.2");
|
|
14572
14740
|
});
|
|
14573
14741
|
}
|
|
14574
14742
|
try {
|
|
@@ -14629,7 +14797,7 @@ export class Cashfree {
|
|
|
14629
14797
|
} else {
|
|
14630
14798
|
scope.setExtra('environment', 'production');
|
|
14631
14799
|
}
|
|
14632
|
-
scope.setExtra('release', "4.
|
|
14800
|
+
scope.setExtra('release', "4.1.2");
|
|
14633
14801
|
});
|
|
14634
14802
|
}
|
|
14635
14803
|
try {
|
|
@@ -14690,7 +14858,7 @@ export class Cashfree {
|
|
|
14690
14858
|
} else {
|
|
14691
14859
|
scope.setExtra('environment', 'production');
|
|
14692
14860
|
}
|
|
14693
|
-
scope.setExtra('release', "4.
|
|
14861
|
+
scope.setExtra('release', "4.1.2");
|
|
14694
14862
|
});
|
|
14695
14863
|
}
|
|
14696
14864
|
try {
|
|
@@ -14751,7 +14919,7 @@ export class Cashfree {
|
|
|
14751
14919
|
} else {
|
|
14752
14920
|
scope.setExtra('environment', 'production');
|
|
14753
14921
|
}
|
|
14754
|
-
scope.setExtra('release', "4.
|
|
14922
|
+
scope.setExtra('release', "4.1.2");
|
|
14755
14923
|
});
|
|
14756
14924
|
}
|
|
14757
14925
|
try {
|
|
@@ -14812,7 +14980,7 @@ export class Cashfree {
|
|
|
14812
14980
|
} else {
|
|
14813
14981
|
scope.setExtra('environment', 'production');
|
|
14814
14982
|
}
|
|
14815
|
-
scope.setExtra('release', "4.
|
|
14983
|
+
scope.setExtra('release', "4.1.2");
|
|
14816
14984
|
});
|
|
14817
14985
|
}
|
|
14818
14986
|
try {
|