@infisale-client/api 1.2.24 → 1.2.25
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/dist/api/api.d.ts +51 -2
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2844,6 +2844,12 @@ export interface ICompanyPatchRequestPaymentGatewaysInner {
|
|
|
2844
2844
|
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2845
2845
|
*/
|
|
2846
2846
|
'apiKey': string;
|
|
2847
|
+
/**
|
|
2848
|
+
*
|
|
2849
|
+
* @type {string}
|
|
2850
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2851
|
+
*/
|
|
2852
|
+
'merchantId': string;
|
|
2847
2853
|
/**
|
|
2848
2854
|
*
|
|
2849
2855
|
* @type {PaymentGatewayEnum}
|
|
@@ -2865,10 +2871,53 @@ export interface ICompanyPatchRequestPaymentGatewaysInner {
|
|
|
2865
2871
|
export interface ICompanyPaymentGatewaysResponse {
|
|
2866
2872
|
/**
|
|
2867
2873
|
*
|
|
2868
|
-
* @type {Array<
|
|
2874
|
+
* @type {Array<ICompanyPaymentGatewaysResponseDataInner>}
|
|
2869
2875
|
* @memberof ICompanyPaymentGatewaysResponse
|
|
2870
2876
|
*/
|
|
2871
|
-
'data': Array<
|
|
2877
|
+
'data': Array<ICompanyPaymentGatewaysResponseDataInner>;
|
|
2878
|
+
}
|
|
2879
|
+
/**
|
|
2880
|
+
*
|
|
2881
|
+
* @export
|
|
2882
|
+
* @interface ICompanyPaymentGatewaysResponseDataInner
|
|
2883
|
+
*/
|
|
2884
|
+
export interface ICompanyPaymentGatewaysResponseDataInner {
|
|
2885
|
+
/**
|
|
2886
|
+
*
|
|
2887
|
+
* @type {boolean}
|
|
2888
|
+
* @memberof ICompanyPaymentGatewaysResponseDataInner
|
|
2889
|
+
*/
|
|
2890
|
+
'active': boolean;
|
|
2891
|
+
/**
|
|
2892
|
+
*
|
|
2893
|
+
* @type {boolean}
|
|
2894
|
+
* @memberof ICompanyPaymentGatewaysResponseDataInner
|
|
2895
|
+
*/
|
|
2896
|
+
'testMode': boolean;
|
|
2897
|
+
/**
|
|
2898
|
+
*
|
|
2899
|
+
* @type {string}
|
|
2900
|
+
* @memberof ICompanyPaymentGatewaysResponseDataInner
|
|
2901
|
+
*/
|
|
2902
|
+
'secretKey': string;
|
|
2903
|
+
/**
|
|
2904
|
+
*
|
|
2905
|
+
* @type {string}
|
|
2906
|
+
* @memberof ICompanyPaymentGatewaysResponseDataInner
|
|
2907
|
+
*/
|
|
2908
|
+
'apiKey': string;
|
|
2909
|
+
/**
|
|
2910
|
+
*
|
|
2911
|
+
* @type {PaymentGatewayEnum}
|
|
2912
|
+
* @memberof ICompanyPaymentGatewaysResponseDataInner
|
|
2913
|
+
*/
|
|
2914
|
+
'type': PaymentGatewayEnum;
|
|
2915
|
+
/**
|
|
2916
|
+
*
|
|
2917
|
+
* @type {string}
|
|
2918
|
+
* @memberof ICompanyPaymentGatewaysResponseDataInner
|
|
2919
|
+
*/
|
|
2920
|
+
'_id': string;
|
|
2872
2921
|
}
|
|
2873
2922
|
/**
|
|
2874
2923
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.25",
|
|
4
4
|
"description": "api-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "0b674dafcec48022e507111db0487ca6d0238f23"
|
|
41
41
|
}
|