@drxsuperapp/sdk 1.1.473 → 1.1.474

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
@@ -876,21 +876,20 @@
876
876
  # https://opencollective.com/openapi_generator/donate #
877
877
  ################################################################################
878
878
  ✅ SDK generated
879
- On branch master
880
- Your branch is up to date with 'origin/master'.
881
-
882
- nothing to commit, working tree clean
883
- Everything up-to-date
879
+ [master e7c1aa0] VPS: Generated API SDK
880
+ 1 file changed, 9 insertions(+)
881
+ To https://gitlab.com/drx-super/drx-sdk.git
882
+ 66b9e40..e7c1aa0 master -> master
884
883
  ✅ Changes committed and pushed
885
- v1.1.473
884
+ v1.1.474
886
885
  To https://gitlab.com/drx-super/drx-sdk.git
887
- 634b654..66b9e40 master -> master
886
+ e7c1aa0..ee3de9d master -> master
888
887
  ✅ Version bumped
889
888
 
890
- > @drxsuperapp/sdk@1.1.473 prepublishOnly
889
+ > @drxsuperapp/sdk@1.1.474 prepublishOnly
891
890
  > npm run build
892
891
 
893
892
 
894
- > @drxsuperapp/sdk@1.1.473 build
893
+ > @drxsuperapp/sdk@1.1.474 build
895
894
  > tsc
896
895
 
@@ -39,6 +39,12 @@ export interface ApiWeb3SwapLimitsGet200ResponseResponseObject {
39
39
  * @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
40
40
  */
41
41
  maxRequestsPerDay: number;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
46
+ */
47
+ autoApprovalThreshold: number;
42
48
  /**
43
49
  *
44
50
  * @type {string}
@@ -23,6 +23,8 @@ export function instanceOfApiWeb3SwapLimitsGet200ResponseResponseObject(value) {
23
23
  return false;
24
24
  if (!('maxRequestsPerDay' in value) || value['maxRequestsPerDay'] === undefined)
25
25
  return false;
26
+ if (!('autoApprovalThreshold' in value) || value['autoApprovalThreshold'] === undefined)
27
+ return false;
26
28
  if (!('availablePoints' in value) || value['availablePoints'] === undefined)
27
29
  return false;
28
30
  if (!('todayUsedPoints' in value) || value['todayUsedPoints'] === undefined)
@@ -47,6 +49,7 @@ export function ApiWeb3SwapLimitsGet200ResponseResponseObjectFromJSONTyped(json,
47
49
  'minSwapAmount': json['minSwapAmount'],
48
50
  'pointsToDrxRate': json['pointsToDrxRate'],
49
51
  'maxRequestsPerDay': json['maxRequestsPerDay'],
52
+ 'autoApprovalThreshold': json['autoApprovalThreshold'],
50
53
  'availablePoints': json['availablePoints'],
51
54
  'todayUsedPoints': json['todayUsedPoints'],
52
55
  'todayRequestCount': json['todayRequestCount'],
@@ -66,6 +69,7 @@ export function ApiWeb3SwapLimitsGet200ResponseResponseObjectToJSONTyped(value,
66
69
  'minSwapAmount': value['minSwapAmount'],
67
70
  'pointsToDrxRate': value['pointsToDrxRate'],
68
71
  'maxRequestsPerDay': value['maxRequestsPerDay'],
72
+ 'autoApprovalThreshold': value['autoApprovalThreshold'],
69
73
  'availablePoints': value['availablePoints'],
70
74
  'todayUsedPoints': value['todayUsedPoints'],
71
75
  'todayRequestCount': value['todayRequestCount'],
@@ -43,6 +43,12 @@ export interface ApiWeb3SwapLimitsGet200ResponseResponseObject {
43
43
  * @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
44
44
  */
45
45
  maxRequestsPerDay: number;
46
+ /**
47
+ *
48
+ * @type {number}
49
+ * @memberof ApiWeb3SwapLimitsGet200ResponseResponseObject
50
+ */
51
+ autoApprovalThreshold: number;
46
52
  /**
47
53
  *
48
54
  * @type {string}
@@ -83,6 +89,7 @@ export function instanceOfApiWeb3SwapLimitsGet200ResponseResponseObject(value: o
83
89
  if (!('minSwapAmount' in value) || value['minSwapAmount'] === undefined) return false;
84
90
  if (!('pointsToDrxRate' in value) || value['pointsToDrxRate'] === undefined) return false;
85
91
  if (!('maxRequestsPerDay' in value) || value['maxRequestsPerDay'] === undefined) return false;
92
+ if (!('autoApprovalThreshold' in value) || value['autoApprovalThreshold'] === undefined) return false;
86
93
  if (!('availablePoints' in value) || value['availablePoints'] === undefined) return false;
87
94
  if (!('todayUsedPoints' in value) || value['todayUsedPoints'] === undefined) return false;
88
95
  if (!('todayRequestCount' in value) || value['todayRequestCount'] === undefined) return false;
@@ -105,6 +112,7 @@ export function ApiWeb3SwapLimitsGet200ResponseResponseObjectFromJSONTyped(json:
105
112
  'minSwapAmount': json['minSwapAmount'],
106
113
  'pointsToDrxRate': json['pointsToDrxRate'],
107
114
  'maxRequestsPerDay': json['maxRequestsPerDay'],
115
+ 'autoApprovalThreshold': json['autoApprovalThreshold'],
108
116
  'availablePoints': json['availablePoints'],
109
117
  'todayUsedPoints': json['todayUsedPoints'],
110
118
  'todayRequestCount': json['todayRequestCount'],
@@ -128,6 +136,7 @@ export function ApiWeb3SwapLimitsGet200ResponseResponseObjectToJSONTyped(value?:
128
136
  'minSwapAmount': value['minSwapAmount'],
129
137
  'pointsToDrxRate': value['pointsToDrxRate'],
130
138
  'maxRequestsPerDay': value['maxRequestsPerDay'],
139
+ 'autoApprovalThreshold': value['autoApprovalThreshold'],
131
140
  'availablePoints': value['availablePoints'],
132
141
  'todayUsedPoints': value['todayUsedPoints'],
133
142
  'todayRequestCount': value['todayRequestCount'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.473",
3
+ "version": "1.1.474",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {