maleo-foundation 0.0.34__py3-none-any.whl → 0.0.35__py3-none-any.whl

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.
@@ -30,7 +30,7 @@ class BaseEnums:
30
30
  CREATE = "create"
31
31
  UPDATE = "update"
32
32
 
33
- class UniqueIdentifiers(StrEnum):
33
+ class IdentifierTypes(StrEnum):
34
34
  ID = "id"
35
35
  UUID = "uuid"
36
36
 
@@ -8,5 +8,5 @@ class BaseGeneralParametersTransfers:
8
8
  class GetSingleQuery(BaseGeneralSchemas.Statuses): pass
9
9
 
10
10
  class GetSingle(BaseGeneralSchemas.Statuses):
11
- identifier:BaseEnums.UniqueIdentifiers = Field(..., description="Identifier")
11
+ identifier:BaseEnums.IdentifierTypes = Field(..., description="Identifier")
12
12
  value:BaseTypes.IdentifierValue = Field(..., description="Value")
@@ -135,7 +135,7 @@ class BaseServiceParametersTransfers:
135
135
 
136
136
  class UniqueFieldCheck(BaseModel):
137
137
  operation:BaseEnums.OperationType = Field(..., description="Operation to be conducted")
138
- field:BaseEnums.UniqueIdentifiers = Field(..., description="Field to be checked")
138
+ field:BaseEnums.IdentifierTypes = Field(..., description="Field to be checked")
139
139
  new_value:BaseTypes.OptionalAny = Field(..., description="New field's value")
140
140
  old_value:BaseTypes.OptionalAny = Field(None, description="Old field's value")
141
141
  nullable:bool = Field(False, description="Whether to allow null field's value")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maleo_foundation
3
- Version: 0.0.34
3
+ Version: 0.0.35
4
4
  Summary: Foundation package for Maleo
5
5
  Author-email: Agra Bima Yuda <agra@nexmedis.com>
6
6
  License: MIT
@@ -18,7 +18,7 @@ maleo_foundation/middlewares/__init__.py,sha256=bqE2EIFC3rWcR2AwFPR0fk2kSFfeTRzg
18
18
  maleo_foundation/middlewares/base.py,sha256=KcpODNs0DQXX8Cwc6T9dC6aiZIqxTLtuJjVAGWXPSKk,11633
19
19
  maleo_foundation/middlewares/cors.py,sha256=9uvBvY2N6Vxa9RP_YtESxcWo6Doi6uS0lzAG9iLY7Uc,2288
20
20
  maleo_foundation/models/__init__.py,sha256=HTiSh5eRZ6_iBR2fmylLw_UZNE82GsmzHG3HFBqH2uE,500
21
- maleo_foundation/models/enums.py,sha256=Ob2v312JxypHEq7hTKZKOV462FEeLkIjIhpx-YF6Jdw,2203
21
+ maleo_foundation/models/enums.py,sha256=skLmbrD7DqL1CJN2BCRfWYu5QU1XZVIa_SoJnZbZcrs,2201
22
22
  maleo_foundation/models/extended_types.py,sha256=pIKt-_9tby4rmune3fmWcCW_mohaNRh_1lywBmdc-L4,301
23
23
  maleo_foundation/models/responses.py,sha256=pAHlRzbLJtlu9TwMtLBK7nbtjsvKnV0cJtbvtQH2l8E,4242
24
24
  maleo_foundation/models/types.py,sha256=rg9AoNwwECJ2BhYdoz3DiUMlBgFRWVEl4KGrfTCntnI,1213
@@ -33,8 +33,8 @@ maleo_foundation/models/schemas/result.py,sha256=69JsTor9gNTVhUErFsFWN8CC9SZ9aXU
33
33
  maleo_foundation/models/transfers/__init__.py,sha256=B8oCZHE3NTsrJ_rviSXaDsuc-gc25jpjuhJO40lpQiE,222
34
34
  maleo_foundation/models/transfers/parameters/__init__.py,sha256=oKW4RPIEISISRjsJzD8lsCGY1HhZRTzshPpWHcJu86k,353
35
35
  maleo_foundation/models/transfers/parameters/client.py,sha256=GjRYMDO9I0ZEfFPFJTn1CIFHYX1tvEF6kY5olD2xqR0,4059
36
- maleo_foundation/models/transfers/parameters/general.py,sha256=FYCqrTAuYwdyxpVlMGz_h7PXeUnnGyrEWWlxPOGPs9w,546
37
- maleo_foundation/models/transfers/parameters/service.py,sha256=OS4cAKwE4rh_w-Crp_bIlbTUx4QzYwwDgHfs86MoD0o,6773
36
+ maleo_foundation/models/transfers/parameters/general.py,sha256=Doyr_T_2JvsqDc4r00iB2dqAtBErHMM8RZz6ItyZZ7o,544
37
+ maleo_foundation/models/transfers/parameters/service.py,sha256=8pcUR7bGMepC5G35Jr-iXlfLVyXxahb2erfIEFs6ebE,6771
38
38
  maleo_foundation/models/transfers/results/__init__.py,sha256=0_8uJ1IQW87RZ4nIxzWkQVi3Fxb7B8myZTngXfoxgNc,241
39
39
  maleo_foundation/models/transfers/results/client/__init__.py,sha256=xBRuY0NUIPpQEGQ2qoBnqLZGX4W1YSrQ0VnDf5OYJBo,290
40
40
  maleo_foundation/models/transfers/results/client/service.py,sha256=TO_U53vmUEnFWiiyuu33ao3BUidt6KFxvk3GC9uo8JE,1108
@@ -50,7 +50,7 @@ maleo_foundation/utils/exceptions.py,sha256=mcvBwHm6uWpVQkPtO1T2j-GaTYEiyPOeGxiD
50
50
  maleo_foundation/utils/logger.py,sha256=ICrFi0MxuAjDy8KTRL7pex1miwzZqZX-HHArgN3niJM,2453
51
51
  maleo_foundation/utils/formatter/__init__.py,sha256=iKf5YCbEdg1qKnFHyKqqcQbqAqEeRUf8mhI3v3dQoj8,78
52
52
  maleo_foundation/utils/formatter/case.py,sha256=TmvvlfzGdC_omMTB5vAa40TZBxQ3hnr-SYeo0M52Rlg,1352
53
- maleo_foundation-0.0.34.dist-info/METADATA,sha256=RE3ZQqM5i5l8sxHwG6V8ox_WeoVDVOAKO0bkL6veLLY,3160
54
- maleo_foundation-0.0.34.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
55
- maleo_foundation-0.0.34.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
56
- maleo_foundation-0.0.34.dist-info/RECORD,,
53
+ maleo_foundation-0.0.35.dist-info/METADATA,sha256=bCqkcVTKxZPsoWXF9_W3EMuu_0-70cSue03N2CYq7PQ,3160
54
+ maleo_foundation-0.0.35.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
55
+ maleo_foundation-0.0.35.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
56
+ maleo_foundation-0.0.35.dist-info/RECORD,,