aiteamutils 0.2.81__py3-none-any.whl → 0.2.83__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.
aiteamutils/enums.py CHANGED
@@ -1,6 +1,11 @@
1
1
  """시스템 전체에서 사용되는 열거형 정의."""
2
2
  from enum import Enum
3
3
 
4
+ def hyphen_to_camel_case(text: str) -> str:
5
+ """하이픈을 카멜케이스로 변환하는 함수"""
6
+ words = text.split('-')
7
+ return words[0].capitalize() + ''.join(word.capitalize() for word in words[1:])
8
+
4
9
  class UserStatus(str, Enum):
5
10
  """사용자 상태."""
6
11
  PENDING = "PENDING"
aiteamutils/version.py CHANGED
@@ -1,2 +1,2 @@
1
1
  """버전 정보"""
2
- __version__ = "0.2.81"
2
+ __version__ = "0.2.83"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiteamutils
3
- Version: 0.2.81
3
+ Version: 0.2.83
4
4
  Summary: AI Team Utilities
5
5
  Project-URL: Homepage, https://github.com/yourusername/aiteamutils
6
6
  Project-URL: Issues, https://github.com/yourusername/aiteamutils/issues
@@ -5,11 +5,11 @@ aiteamutils/base_service.py,sha256=7DXjEn3e_dve_ZfNwUP1_WD7QnucWRXBq-bYuxVmyXI,8
5
5
  aiteamutils/cache.py,sha256=07xBGlgAwOTAdY5mnMOQJ5EBxVwe8glVD7DkGEkxCtw,1373
6
6
  aiteamutils/config.py,sha256=YdalpJb70-txhGJAS4aaKglEZAFVWgfzw5BXSWpkUz4,3232
7
7
  aiteamutils/database.py,sha256=b4fN0XHNWxMJeS5M95JcJ7tujAJ1x3SPTAfDvJdB4sE,19696
8
- aiteamutils/enums.py,sha256=ipZi6k_QD5-3QV7Yzv7bnL0MjDz-vqfO9I5L77biMKs,632
8
+ aiteamutils/enums.py,sha256=9VHv8fuhSVgnWSrjwQfDgvSftm1waZ0XB0jv9dVkTZk,851
9
9
  aiteamutils/exceptions.py,sha256=5yREcEUbJPzq2404pFJ4J9047I9_qx2QG5iBND1PjDI,15901
10
10
  aiteamutils/security.py,sha256=tS7gdkCvL0hfgC_FWDSWaCVrzy3zUFpw-PyiFn9yXMM,10839
11
11
  aiteamutils/validators.py,sha256=PvI9hbMEAqTawgxPbiWRyx2r9yTUrpNBQs1AD3w4F2U,7726
12
- aiteamutils/version.py,sha256=w_eEoCaGdfblH2R8pC54VN-bdUU1cxm6KxYvvUVm6P0,42
13
- aiteamutils-0.2.81.dist-info/METADATA,sha256=hETQTyF40i30aB1erNKSaMsPQm5MajSGP4vwUKMnACM,1718
14
- aiteamutils-0.2.81.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
15
- aiteamutils-0.2.81.dist-info/RECORD,,
12
+ aiteamutils/version.py,sha256=32-ujnehsv-sSn6QFF_ArD1pQ0M0nEKqFgJO7wDbQI4,42
13
+ aiteamutils-0.2.83.dist-info/METADATA,sha256=gkFwS2bqr0KzCeQOa3hmT7klD1WrLcJcKo7RrJnXRRo,1718
14
+ aiteamutils-0.2.83.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
15
+ aiteamutils-0.2.83.dist-info/RECORD,,