Encryptors 2.52__tar.gz → 2.53__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.
Files changed (97) hide show
  1. {encryptors-2.52 → encryptors-2.53}/PKG-INFO +1 -1
  2. {encryptors-2.52 → encryptors-2.53}/setup.py +1 -1
  3. {encryptors-2.52 → encryptors-2.53}/src/Encryptors.egg-info/PKG-INFO +1 -1
  4. {encryptors-2.52 → encryptors-2.53}/src/Encryptors.egg-info/SOURCES.txt +3 -0
  5. encryptors-2.53/src/Osdental/Constants/Constant.py +10 -0
  6. encryptors-2.53/src/Osdental/Constants/Message.py +40 -0
  7. encryptors-2.53/src/Osdental/__init__.py +0 -0
  8. {encryptors-2.52 → encryptors-2.53}/README.md +0 -0
  9. {encryptors-2.52 → encryptors-2.53}/setup.cfg +0 -0
  10. {encryptors-2.52 → encryptors-2.53}/src/Encryptors.egg-info/dependency_links.txt +0 -0
  11. {encryptors-2.52 → encryptors-2.53}/src/Encryptors.egg-info/entry_points.txt +0 -0
  12. {encryptors-2.52 → encryptors-2.53}/src/Encryptors.egg-info/requires.txt +0 -0
  13. {encryptors-2.52 → encryptors-2.53}/src/Encryptors.egg-info/top_level.txt +0 -0
  14. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Cache/Redis.py +0 -0
  15. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Cache/__init__.py +0 -0
  16. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Cli/__init__.py +0 -0
  17. {encryptors-2.52/src/Osdental/Database → encryptors-2.53/src/Osdental/Constants}/__init__.py +0 -0
  18. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Database/BaseRepository.py +0 -0
  19. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Database/Connection.py +0 -0
  20. {encryptors-2.52/src/Osdental/Decorators → encryptors-2.53/src/Osdental/Database}/__init__.py +0 -0
  21. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Decorators/Grpc.py +0 -0
  22. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Decorators/Retry.py +0 -0
  23. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Decorators/SecureResolver.py +0 -0
  24. {encryptors-2.52/src/Osdental/Encryptor → encryptors-2.53/src/Osdental/Decorators}/__init__.py +0 -0
  25. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Encryptor/Aes.py +0 -0
  26. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Encryptor/Argon2.py +0 -0
  27. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Encryptor/Bcrypt.py +0 -0
  28. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Encryptor/Jwt.py +0 -0
  29. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Encryptor/Rsa.py +0 -0
  30. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Encryptor/Sha512.py +0 -0
  31. {encryptors-2.52/src/Osdental/Enums → encryptors-2.53/src/Osdental/Encryptor}/__init__.py +0 -0
  32. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Enums/FileType.py +0 -0
  33. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Enums/GrahpqlOperation.py +0 -0
  34. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Enums/Profile.py +0 -0
  35. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Enums/StatusCode.py +0 -0
  36. {encryptors-2.52/src/Osdental/Exception → encryptors-2.53/src/Osdental/Enums}/__init__.py +0 -0
  37. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Exception/ControlledException.py +0 -0
  38. {encryptors-2.52/src/Osdental/Graphql/Extensions → encryptors-2.53/src/Osdental/Exception}/__init__.py +0 -0
  39. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Graphql/Extensions/AuditExtension.py +0 -0
  40. {encryptors-2.52/src/Osdental/Graphql/_Helpers → encryptors-2.53/src/Osdental/Graphql/Extensions}/__init__.py +0 -0
  41. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Graphql/Models/__init__.py +0 -0
  42. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Graphql/_Exceptions/__init__.py +0 -0
  43. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Graphql/_Helpers/_AuditHelper.py +0 -0
  44. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Graphql/_Helpers/_ExtractAuthToken.py +0 -0
  45. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Graphql/_Helpers/_TenantPolicy.py +0 -0
  46. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Graphql/_Helpers/_TokenService.py +0 -0
  47. {encryptors-2.52/src/Osdental/Graphql → encryptors-2.53/src/Osdental/Graphql/_Helpers}/__init__.py +0 -0
  48. {encryptors-2.52/src/Osdental/Helpers → encryptors-2.53/src/Osdental/Graphql}/__init__.py +0 -0
  49. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Helpers/AuditDispatcher.py +0 -0
  50. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Helpers/AzureClassifier.py +0 -0
  51. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Helpers/GrpcConnection.py +0 -0
  52. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Helpers/JwtTokenHelper.py +0 -0
  53. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Helpers/Resilience.py +0 -0
  54. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Helpers/ResponseDecryptor.py +0 -0
  55. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Helpers/_AuthTokenProcessor.py +0 -0
  56. {encryptors-2.52/src/Osdental/Http → encryptors-2.53/src/Osdental/Helpers}/__init__.py +0 -0
  57. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Http/APIClient.py +0 -0
  58. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Http/_Helpers.py +0 -0
  59. {encryptors-2.52/src/Osdental/Models → encryptors-2.53/src/Osdental/Http}/__init__.py +0 -0
  60. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Messaging/AzureServiceBus.py +0 -0
  61. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Messaging/Kafka.py +0 -0
  62. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Messaging/RabbitMQ.py +0 -0
  63. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Messaging/__init__.py +0 -0
  64. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Models/ApiResponse.py +0 -0
  65. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Models/AuditConfig.py +0 -0
  66. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Models/Notification.py +0 -0
  67. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Models/Response.py +0 -0
  68. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Models/Token.py +0 -0
  69. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Models/TokenClaims.py +0 -0
  70. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Models/_Audit.py +0 -0
  71. {encryptors-2.52/src/Osdental/Rest/Context → encryptors-2.53/src/Osdental/Models}/__init__.py +0 -0
  72. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Rest/Context/RequestContext.py +0 -0
  73. {encryptors-2.52/src/Osdental/Rest/Middlewares → encryptors-2.53/src/Osdental/Rest/Context}/__init__.py +0 -0
  74. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Rest/Middlewares/RequestContextMiddleware.py +0 -0
  75. {encryptors-2.52/src/Osdental/Rest → encryptors-2.53/src/Osdental/Rest/Middlewares}/__init__.py +0 -0
  76. {encryptors-2.52/src/Osdental/Utils → encryptors-2.53/src/Osdental/Rest}/__init__.py +0 -0
  77. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Secrets/AzureKeyVaultProvider.py +0 -0
  78. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Secrets/__init__.py +0 -0
  79. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Services/JwtAuthTokenService.py +0 -0
  80. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Services/WebsocketClient.py +0 -0
  81. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Services/__init__.py +0 -0
  82. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Storage/AzureBlobStorage.py +0 -0
  83. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Storage/S3Storage.py +0 -0
  84. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Storage/__init__.py +0 -0
  85. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/CaseConverter.py +0 -0
  86. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/CodeGenerator.py +0 -0
  87. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/DataNormalizer.py +0 -0
  88. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/DataUtils.py +0 -0
  89. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/DateUtils.py +0 -0
  90. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/FileMetaData.py +0 -0
  91. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/HashValidator.py +0 -0
  92. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/Mapper.py +0 -0
  93. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/PasswordGenerator.py +0 -0
  94. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/QueryGenerator.py +0 -0
  95. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/RsaUtils.py +0 -0
  96. {encryptors-2.52 → encryptors-2.53}/src/Osdental/Utils/TextProcessor.py +0 -0
  97. {encryptors-2.52/src/Osdental → encryptors-2.53/src/Osdental/Utils}/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Encryptors
3
- Version: 2.52
3
+ Version: 2.53
4
4
  Summary: End-to-end algorithm library
5
5
  Author: OSDental LLC
6
6
  Author-email: support@osdental.ai
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
  # ANDERSON REVISAR EL CACHE LOCAL DEL KEYVAULT PARA VALIDAR SI FUNCIONA
3
3
  setup(
4
4
  name="Encryptors",
5
- version="2.52",
5
+ version="2.53",
6
6
  author="OSDental LLC",
7
7
  author_email="support@osdental.ai",
8
8
  description="End-to-end algorithm library",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Encryptors
3
- Version: 2.52
3
+ Version: 2.53
4
4
  Summary: End-to-end algorithm library
5
5
  Author: OSDental LLC
6
6
  Author-email: support@osdental.ai
@@ -10,6 +10,9 @@ src/Osdental/__init__.py
10
10
  src/Osdental/Cache/Redis.py
11
11
  src/Osdental/Cache/__init__.py
12
12
  src/Osdental/Cli/__init__.py
13
+ src/Osdental/Constants/Constant.py
14
+ src/Osdental/Constants/Message.py
15
+ src/Osdental/Constants/__init__.py
13
16
  src/Osdental/Database/BaseRepository.py
14
17
  src/Osdental/Database/Connection.py
15
18
  src/Osdental/Database/__init__.py
@@ -0,0 +1,10 @@
1
+
2
+
3
+ class Constant:
4
+ DEFAULT_ENCODING = "utf-8"
5
+ MESSAGE_LOG_INTERNAL = "MESSAGE_LOG_INTERNAL"
6
+ DEFAULT_EMPTY_VALUE = "*"
7
+ RESPONSE_TYPE_ERROR = "ERROR"
8
+ RESPONSE_TYPE_REQUEST = "REQUEST"
9
+ RESPONSE_TYPE_RESPONSE = "RESPONSE"
10
+ MESSAGE_LOG_EXTERNAL = "MESSAGE_LOG_EXTERNAL"
@@ -0,0 +1,40 @@
1
+
2
+ class Message:
3
+
4
+ ACCESS_DENIED_MSG = "You do not have the necessary privileges for this operation."
5
+ UNEXPECTED_ERROR_MSG = "Something went wrong while processing your request. Please try again later."
6
+ PORTAL_ACCESS_RESTRICTED_MSG = "You are not authorized to access this portal."
7
+ PROCESS_SUCCESS_MSG = "Process executed successfully."
8
+ NO_RESULTS_FOUND_MSG = "No records were found matching your request."
9
+ INVALID_REQUEST_PARAMS_MSG = "Please review the required fields and try again."
10
+ SERVER_NETWORK_ACCESS_ERROR_MSG = "Error making the server accessible on the network."
11
+ HEXAGONAL_SERVICE_CREATED_MSG = "The hexagonal service structure was created."
12
+ PYCACHE_CLEANUP_SUCCESS_MSG = "All __pycache__ have been removed."
13
+ NO_PASSWORD_CHARACTERS_MSG = "There are no characters available to generate the password."
14
+ INSUFFICIENT_LENGTH_MSG = "Insufficient length to meet minimum rules."
15
+ LEGACY_NAME_REQUIRED_MSG = "Legacy name cannot be empty."
16
+ REFRESH_TOKEN_EXP_REQUIRED_MSG = "Refresh token expiration time cannot be empty."
17
+ ACCESS_TOKEN_EXP_REQUIRED_MSG = "Access token expiration time cannot be empty."
18
+ PUBLIC_KEY2_REQUIRED_MSG = "Public key 2 cannot be empty."
19
+ PRIVATE_KEY1_REQUIRED_MSG = "Private key 1 cannot be empty."
20
+ PRIVATE_KEY2_REQUIRED_MSG = "Private key 2 cannot be empty."
21
+ AES_KEY_USER_REQUIRED_MSG = "AES key user cannot be empty."
22
+ AES_KEY_AUTH_REQUIRED_MSG = "AES key auth cannot be empty."
23
+ MISSING_FIELD_ERROR_MSG = "A required field is missing. Please review the data."
24
+ EXP_TIME_REQUIRED = "Expiration time (cdata integration) cannot be empty or null"
25
+ KEY_PRIVATE_REQUIRED = "Key private cannot be empty or null"
26
+ SUB_ACCOUNT_REQUIRED = "Sub account parameter is required"
27
+ CATALOG_DATA_CREDENTIALS_MISSED = "Catalog data or/and data credentials not found"
28
+ PROFILE_PERMISSION_DENIED_MSG = "Your profile does not have permission to perform this action."
29
+ INVALID_FORMAT_MSG = "The provided data format is invalid."
30
+ INVALID_AES_JSON_FORMAT_MSG = "Invalid JSON format in AES decrypted data."
31
+ UNEXPECTED_DECRYPTED_DATA_FORMAT_MSG = "Unexpected format in decrypted data."
32
+ REDIS_CLEANUP_SUCCESS_MSG = "Redis cleanup completed successfully."
33
+ REDIS_CLEANUP_ERROR_MSG = "An error occurred while attempting to clean up Redis."
34
+ DATABASE_EXECUTION_ERROR_MSG = "An unexpected error occurred while executing a database operation."
35
+ DATABASE_INTEGRITY_ERROR_MSG = "A database integrity constraint was violated during execution."
36
+ QUERY_NOT_PROVIDED_MSG = "Query not provided. Please include a valid query in your request."
37
+ FILE_PATH_NOT_PROVIDED_MSG = "File path not provided."
38
+ PROTO_FILES_GENERATED_MSG = "Proto files have been successfully generated."
39
+ ERROR_INVALID_DATA_TYPE = "Invalid data type: expected dict, str, or list."
40
+ EXTERNAL_API_ERROR_MESSAGE = "An error occurred while consuming an external API."
File without changes
File without changes
File without changes