@@ -39,7 +39,7 @@ <h1 class="title">Module <code>supertokens_python.syncio</code></h1>
39
39
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
40
40
# License for the specific language governing permissions and limitations
41
41
# under the License.
42
- from typing import List, Union, Optional
42
+ from typing import List, Union, Optional, Dict
43
43
44
44
from supertokens_python import Supertokens
45
45
from supertokens_python.async_to_sync_wrapper import sync
@@ -60,10 +60,11 @@ <h1 class="title">Module <code>supertokens_python.syncio</code></h1>
60
60
limit: Union[int, None] = None,
61
61
pagination_token: Union[str, None] = None,
62
62
include_recipe_ids: Union[None, List[str]] = None,
63
+ query: Union[None, Dict[str, str]] = None,
63
64
) -> UsersResponse:
64
65
return sync(
65
66
Supertokens.get_instance().get_users(
66
- "ASC", limit, pagination_token, include_recipe_ids
67
+ "ASC", limit, pagination_token, include_recipe_ids, query
67
68
)
68
69
)
69
70
@@ -72,10 +73,11 @@ <h1 class="title">Module <code>supertokens_python.syncio</code></h1>
72
73
limit: Union[int, None] = None,
73
74
pagination_token: Union[str, None] = None,
74
75
include_recipe_ids: Union[None, List[str]] = None,
76
+ query: Union[None, Dict[str, str]] = None,
75
77
) -> UsersResponse:
76
78
return sync(
77
79
Supertokens.get_instance().get_users(
78
- "DESC", limit, pagination_token, include_recipe_ids
80
+ "DESC", limit, pagination_token, include_recipe_ids, query
79
81
)
80
82
)
81
83
@@ -223,7 +225,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
223
225
</ details >
224
226
</ dd >
225
227
< dt id ="supertokens_python.syncio.get_users_newest_first "> < code class ="name flex ">
226
- < span > def < span class ="ident "> get_users_newest_first</ span > </ span > (< span > limit: Optional[int] = None, pagination_token: Optional[None] = None, include_recipe_ids: Optional[None] = None) ‑> < a title ="supertokens_python.types.UsersResponse " href ="../types.html#supertokens_python.types.UsersResponse "> UsersResponse</ a > </ span >
228
+ < span > def < span class ="ident "> get_users_newest_first</ span > </ span > (< span > limit: Optional[int] = None, pagination_token: Optional[None] = None, include_recipe_ids: Optional[None] = None, query: Optional[None] = None ) ‑> < a title ="supertokens_python.types.UsersResponse " href ="../types.html#supertokens_python.types.UsersResponse "> UsersResponse</ a > </ span >
227
229
</ code > </ dt >
228
230
< dd >
229
231
< div class ="desc "> </ div >
@@ -235,16 +237,17 @@ <h2 class="section-title" id="header-functions">Functions</h2>
235
237
limit: Union[int, None] = None,
236
238
pagination_token: Union[str, None] = None,
237
239
include_recipe_ids: Union[None, List[str]] = None,
240
+ query: Union[None, Dict[str, str]] = None,
238
241
) -> UsersResponse:
239
242
return sync(
240
243
Supertokens.get_instance().get_users(
241
- "DESC", limit, pagination_token, include_recipe_ids
244
+ "DESC", limit, pagination_token, include_recipe_ids, query
242
245
)
243
246
)</ code > </ pre >
244
247
</ details >
245
248
</ dd >
246
249
< dt id ="supertokens_python.syncio.get_users_oldest_first "> < code class ="name flex ">
247
- < span > def < span class ="ident "> get_users_oldest_first</ span > </ span > (< span > limit: Optional[int] = None, pagination_token: Optional[None] = None, include_recipe_ids: Optional[None] = None) ‑> < a title ="supertokens_python.types.UsersResponse " href ="../types.html#supertokens_python.types.UsersResponse "> UsersResponse</ a > </ span >
250
+ < span > def < span class ="ident "> get_users_oldest_first</ span > </ span > (< span > limit: Optional[int] = None, pagination_token: Optional[None] = None, include_recipe_ids: Optional[None] = None, query: Optional[None] = None ) ‑> < a title ="supertokens_python.types.UsersResponse " href ="../types.html#supertokens_python.types.UsersResponse "> UsersResponse</ a > </ span >
248
251
</ code > </ dt >
249
252
< dd >
250
253
< div class ="desc "> </ div >
@@ -256,10 +259,11 @@ <h2 class="section-title" id="header-functions">Functions</h2>
256
259
limit: Union[int, None] = None,
257
260
pagination_token: Union[str, None] = None,
258
261
include_recipe_ids: Union[None, List[str]] = None,
262
+ query: Union[None, Dict[str, str]] = None,
259
263
) -> UsersResponse:
260
264
return sync(
261
265
Supertokens.get_instance().get_users(
262
- "ASC", limit, pagination_token, include_recipe_ids
266
+ "ASC", limit, pagination_token, include_recipe_ids, query
263
267
)
264
268
)</ code > </ pre >
265
269
</ details >
0 commit comments