maleo-schemas 0.0.23__tar.gz → 0.0.24__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maleo-schemas
3
- Version: 0.0.23
3
+ Version: 0.0.24
4
4
  Summary: Schemas package for MaleoSuite
5
5
  Author-email: Agra Bima Yuda <agra@nexmedis.com>
6
6
  License: Proprietary
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maleo-schemas
3
- Version: 0.0.23
3
+ Version: 0.0.24
4
4
  Summary: Schemas package for MaleoSuite
5
5
  Author-email: Agra Bima Yuda <agra@nexmedis.com>
6
6
  License: Proprietary
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "maleo-schemas"
7
- version = "0.0.23"
7
+ version = "0.0.24"
8
8
  description = "Schemas package for MaleoSuite"
9
9
  authors = [
10
10
  { name = "Agra Bima Yuda", email = "agra@nexmedis.com" }
@@ -9,14 +9,14 @@ from maleo.mixins.parameter import (
9
9
  from maleo.dtos.pagination import BaseFlexiblePagination, BaseStrictPagination
10
10
 
11
11
 
12
- class ReadSingleQueryParameter(
12
+ class ReadSingleQuery(
13
13
  ListOfDataStatuses,
14
14
  UseCache,
15
15
  ):
16
16
  pass
17
17
 
18
18
 
19
- class BaseReadMultipleQueryParameter(
19
+ class BaseReadMultipleQuery(
20
20
  Sorts,
21
21
  Search,
22
22
  ListOfDataStatuses,
@@ -26,16 +26,16 @@ class BaseReadMultipleQueryParameter(
26
26
  pass
27
27
 
28
28
 
29
- class ReadUnpaginatedMultipleQueryParameter(
29
+ class ReadUnpaginatedMultipleQuery(
30
30
  BaseFlexiblePagination,
31
- BaseReadMultipleQueryParameter,
31
+ BaseReadMultipleQuery,
32
32
  ):
33
33
  pass
34
34
 
35
35
 
36
- class ReadPaginatedMultipleQueryParameter(
36
+ class ReadPaginatedMultipleQuery(
37
37
  BaseStrictPagination,
38
- BaseReadMultipleQueryParameter,
38
+ BaseReadMultipleQuery,
39
39
  ):
40
40
  pass
41
41
 
File without changes
File without changes
File without changes