Skip to content

Commit 5895037

Browse files
committed
feat: update version
1 parent 6c41778 commit 5895037

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

lib/services/database.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Database extends Service {
1818
'search': search,
1919
'limit': limit,
2020
'offset': offset,
21-
'orderType': orderType?.name(),
21+
'orderType': orderType,
2222
};
2323

2424
final Map<String, String> headers = {
@@ -121,7 +121,7 @@ class Database extends Service {
121121
'limit': limit,
122122
'offset': offset,
123123
'orderField': orderField,
124-
'orderType': orderType?.name(),
124+
'orderType': orderType,
125125
'orderCast': orderCast,
126126
'search': search,
127127
};

lib/services/functions.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Functions extends Service {
1616
'search': search,
1717
'limit': limit,
1818
'offset': offset,
19-
'orderType': orderType?.name(),
19+
'orderType': orderType,
2020
};
2121

2222
final Map<String, String> headers = {
@@ -123,7 +123,7 @@ class Functions extends Service {
123123
'search': search,
124124
'limit': limit,
125125
'offset': offset,
126-
'orderType': orderType?.name(),
126+
'orderType': orderType,
127127
};
128128

129129
final Map<String, String> headers = {
@@ -203,7 +203,7 @@ class Functions extends Service {
203203
'search': search,
204204
'limit': limit,
205205
'offset': offset,
206-
'orderType': orderType?.name(),
206+
'orderType': orderType,
207207
};
208208

209209
final Map<String, String> headers = {

lib/services/storage.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Storage extends Service {
1717
'search': search,
1818
'limit': limit,
1919
'offset': offset,
20-
'orderType': orderType?.name(),
20+
'orderType': orderType,
2121
};
2222

2323
final Map<String, String> headers = {

lib/services/teams.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Teams extends Service {
1818
'search': search,
1919
'limit': limit,
2020
'offset': offset,
21-
'orderType': orderType?.name(),
21+
'orderType': orderType,
2222
};
2323

2424
final Map<String, String> headers = {
@@ -117,7 +117,7 @@ class Teams extends Service {
117117
'search': search,
118118
'limit': limit,
119119
'offset': offset,
120-
'orderType': orderType?.name(),
120+
'orderType': orderType,
121121
};
122122

123123
final Map<String, String> headers = {

lib/services/users.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Users extends Service {
1616
'search': search,
1717
'limit': limit,
1818
'offset': offset,
19-
'orderType': orderType?.name(),
19+
'orderType': orderType,
2020
};
2121

2222
final Map<String, String> headers = {

0 commit comments

Comments
 (0)