@drxsuperapp/sdk 1.1.410 → 1.1.411
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/deploy.log
CHANGED
|
@@ -823,20 +823,20 @@
|
|
|
823
823
|
# https://opencollective.com/openapi_generator/donate #
|
|
824
824
|
################################################################################
|
|
825
825
|
✅ SDK generated
|
|
826
|
-
[master
|
|
827
|
-
1 file changed,
|
|
826
|
+
[master 62aba80] VPS: Generated API SDK
|
|
827
|
+
1 file changed, 27 insertions(+)
|
|
828
828
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
829
|
-
|
|
829
|
+
613decd..62aba80 master -> master
|
|
830
830
|
✅ Changes committed and pushed
|
|
831
|
-
v1.1.
|
|
831
|
+
v1.1.411
|
|
832
832
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
833
|
-
|
|
833
|
+
62aba80..a508531 master -> master
|
|
834
834
|
✅ Version bumped
|
|
835
835
|
|
|
836
|
-
> @drxsuperapp/sdk@1.1.
|
|
836
|
+
> @drxsuperapp/sdk@1.1.411 prepublishOnly
|
|
837
837
|
> npm run build
|
|
838
838
|
|
|
839
839
|
|
|
840
|
-
> @drxsuperapp/sdk@1.1.
|
|
840
|
+
> @drxsuperapp/sdk@1.1.411 build
|
|
841
841
|
> tsc
|
|
842
842
|
|
|
@@ -33,6 +33,12 @@ export interface ApiWeb3SwapLimitsGet200ResponseResponseObject {
|
|
|
33
33
|
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
34
34
|
*/
|
|
35
35
|
pointsToDrxRate: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
40
|
+
*/
|
|
41
|
+
maxRequestsPerDay: number;
|
|
36
42
|
/**
|
|
37
43
|
*
|
|
38
44
|
* @type {string}
|
|
@@ -45,12 +51,24 @@ export interface ApiWeb3SwapLimitsGet200ResponseResponseObject {
|
|
|
45
51
|
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
46
52
|
*/
|
|
47
53
|
todayUsedPoints: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
58
|
+
*/
|
|
59
|
+
todayRequestCount: string;
|
|
48
60
|
/**
|
|
49
61
|
*
|
|
50
62
|
* @type {string}
|
|
51
63
|
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
52
64
|
*/
|
|
53
65
|
remainingDailyLimit: string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
70
|
+
*/
|
|
71
|
+
remainingRequests: string;
|
|
54
72
|
}
|
|
55
73
|
/**
|
|
56
74
|
* Check if a given object implements the ApiWeb3SwapLimitsGet200ResponseResponseObject interface.
|
|
@@ -21,12 +21,18 @@ export function instanceOfApiWeb3SwapLimitsGet200ResponseResponseObject(value) {
|
|
|
21
21
|
return false;
|
|
22
22
|
if (!('pointsToDrxRate' in value) || value['pointsToDrxRate'] === undefined)
|
|
23
23
|
return false;
|
|
24
|
+
if (!('maxRequestsPerDay' in value) || value['maxRequestsPerDay'] === undefined)
|
|
25
|
+
return false;
|
|
24
26
|
if (!('availablePoints' in value) || value['availablePoints'] === undefined)
|
|
25
27
|
return false;
|
|
26
28
|
if (!('todayUsedPoints' in value) || value['todayUsedPoints'] === undefined)
|
|
27
29
|
return false;
|
|
30
|
+
if (!('todayRequestCount' in value) || value['todayRequestCount'] === undefined)
|
|
31
|
+
return false;
|
|
28
32
|
if (!('remainingDailyLimit' in value) || value['remainingDailyLimit'] === undefined)
|
|
29
33
|
return false;
|
|
34
|
+
if (!('remainingRequests' in value) || value['remainingRequests'] === undefined)
|
|
35
|
+
return false;
|
|
30
36
|
return true;
|
|
31
37
|
}
|
|
32
38
|
export function ApiWeb3SwapLimitsGet200ResponseResponseObjectFromJSON(json) {
|
|
@@ -40,9 +46,12 @@ export function ApiWeb3SwapLimitsGet200ResponseResponseObjectFromJSONTyped(json,
|
|
|
40
46
|
'dailyLimitPoints': json['dailyLimitPoints'],
|
|
41
47
|
'minSwapAmount': json['minSwapAmount'],
|
|
42
48
|
'pointsToDrxRate': json['pointsToDrxRate'],
|
|
49
|
+
'maxRequestsPerDay': json['maxRequestsPerDay'],
|
|
43
50
|
'availablePoints': json['availablePoints'],
|
|
44
51
|
'todayUsedPoints': json['todayUsedPoints'],
|
|
52
|
+
'todayRequestCount': json['todayRequestCount'],
|
|
45
53
|
'remainingDailyLimit': json['remainingDailyLimit'],
|
|
54
|
+
'remainingRequests': json['remainingRequests'],
|
|
46
55
|
};
|
|
47
56
|
}
|
|
48
57
|
export function ApiWeb3SwapLimitsGet200ResponseResponseObjectToJSON(json) {
|
|
@@ -56,8 +65,11 @@ export function ApiWeb3SwapLimitsGet200ResponseResponseObjectToJSONTyped(value,
|
|
|
56
65
|
'dailyLimitPoints': value['dailyLimitPoints'],
|
|
57
66
|
'minSwapAmount': value['minSwapAmount'],
|
|
58
67
|
'pointsToDrxRate': value['pointsToDrxRate'],
|
|
68
|
+
'maxRequestsPerDay': value['maxRequestsPerDay'],
|
|
59
69
|
'availablePoints': value['availablePoints'],
|
|
60
70
|
'todayUsedPoints': value['todayUsedPoints'],
|
|
71
|
+
'todayRequestCount': value['todayRequestCount'],
|
|
61
72
|
'remainingDailyLimit': value['remainingDailyLimit'],
|
|
73
|
+
'remainingRequests': value['remainingRequests'],
|
|
62
74
|
};
|
|
63
75
|
}
|
|
@@ -37,6 +37,12 @@ export interface ApiWeb3SwapLimitsGet200ResponseResponseObject {
|
|
|
37
37
|
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
38
38
|
*/
|
|
39
39
|
pointsToDrxRate: number;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {number}
|
|
43
|
+
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
44
|
+
*/
|
|
45
|
+
maxRequestsPerDay: number;
|
|
40
46
|
/**
|
|
41
47
|
*
|
|
42
48
|
* @type {string}
|
|
@@ -49,12 +55,24 @@ export interface ApiWeb3SwapLimitsGet200ResponseResponseObject {
|
|
|
49
55
|
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
50
56
|
*/
|
|
51
57
|
todayUsedPoints: string;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
62
|
+
*/
|
|
63
|
+
todayRequestCount: string;
|
|
52
64
|
/**
|
|
53
65
|
*
|
|
54
66
|
* @type {string}
|
|
55
67
|
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
56
68
|
*/
|
|
57
69
|
remainingDailyLimit: string;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
|
|
74
|
+
*/
|
|
75
|
+
remainingRequests: string;
|
|
58
76
|
}
|
|
59
77
|
|
|
60
78
|
/**
|
|
@@ -64,9 +82,12 @@ export function instanceOfApiWeb3SwapLimitsGet200ResponseResponseObject(value: o
|
|
|
64
82
|
if (!('dailyLimitPoints' in value) || value['dailyLimitPoints'] === undefined) return false;
|
|
65
83
|
if (!('minSwapAmount' in value) || value['minSwapAmount'] === undefined) return false;
|
|
66
84
|
if (!('pointsToDrxRate' in value) || value['pointsToDrxRate'] === undefined) return false;
|
|
85
|
+
if (!('maxRequestsPerDay' in value) || value['maxRequestsPerDay'] === undefined) return false;
|
|
67
86
|
if (!('availablePoints' in value) || value['availablePoints'] === undefined) return false;
|
|
68
87
|
if (!('todayUsedPoints' in value) || value['todayUsedPoints'] === undefined) return false;
|
|
88
|
+
if (!('todayRequestCount' in value) || value['todayRequestCount'] === undefined) return false;
|
|
69
89
|
if (!('remainingDailyLimit' in value) || value['remainingDailyLimit'] === undefined) return false;
|
|
90
|
+
if (!('remainingRequests' in value) || value['remainingRequests'] === undefined) return false;
|
|
70
91
|
return true;
|
|
71
92
|
}
|
|
72
93
|
|
|
@@ -83,9 +104,12 @@ export function ApiWeb3SwapLimitsGet200ResponseResponseObjectFromJSONTyped(json:
|
|
|
83
104
|
'dailyLimitPoints': json['dailyLimitPoints'],
|
|
84
105
|
'minSwapAmount': json['minSwapAmount'],
|
|
85
106
|
'pointsToDrxRate': json['pointsToDrxRate'],
|
|
107
|
+
'maxRequestsPerDay': json['maxRequestsPerDay'],
|
|
86
108
|
'availablePoints': json['availablePoints'],
|
|
87
109
|
'todayUsedPoints': json['todayUsedPoints'],
|
|
110
|
+
'todayRequestCount': json['todayRequestCount'],
|
|
88
111
|
'remainingDailyLimit': json['remainingDailyLimit'],
|
|
112
|
+
'remainingRequests': json['remainingRequests'],
|
|
89
113
|
};
|
|
90
114
|
}
|
|
91
115
|
|
|
@@ -103,9 +127,12 @@ export function ApiWeb3SwapLimitsGet200ResponseResponseObjectToJSONTyped(value?:
|
|
|
103
127
|
'dailyLimitPoints': value['dailyLimitPoints'],
|
|
104
128
|
'minSwapAmount': value['minSwapAmount'],
|
|
105
129
|
'pointsToDrxRate': value['pointsToDrxRate'],
|
|
130
|
+
'maxRequestsPerDay': value['maxRequestsPerDay'],
|
|
106
131
|
'availablePoints': value['availablePoints'],
|
|
107
132
|
'todayUsedPoints': value['todayUsedPoints'],
|
|
133
|
+
'todayRequestCount': value['todayRequestCount'],
|
|
108
134
|
'remainingDailyLimit': value['remainingDailyLimit'],
|
|
135
|
+
'remainingRequests': value['remainingRequests'],
|
|
109
136
|
};
|
|
110
137
|
}
|
|
111
138
|
|