slthcore 0.1.8__tar.gz → 0.1.9__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.

Potentially problematic release.


This version of slthcore might be problematic. Click here for more details.

Files changed (84) hide show
  1. {slthcore-0.1.8/slthcore.egg-info → slthcore-0.1.9}/PKG-INFO +1 -1
  2. {slthcore-0.1.8 → slthcore-0.1.9}/setup.py +1 -1
  3. {slthcore-0.1.8 → slthcore-0.1.9}/slth/components.py +1 -1
  4. {slthcore-0.1.8 → slthcore-0.1.9/slthcore.egg-info}/PKG-INFO +1 -1
  5. {slthcore-0.1.8 → slthcore-0.1.9}/MANIFEST.in +0 -0
  6. {slthcore-0.1.8 → slthcore-0.1.9}/setup.cfg +0 -0
  7. {slthcore-0.1.8 → slthcore-0.1.9}/slth/__init__.py +0 -0
  8. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/configure/__main__.py +0 -0
  9. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/__main__.py +0 -0
  10. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/.DS_Store +0 -0
  11. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/.gitignore +0 -0
  12. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/api/__init__.py +0 -0
  13. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/api/asgi.py +0 -0
  14. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/api/endpoints.py +0 -0
  15. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/api/models.py +0 -0
  16. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/api/settings.py +0 -0
  17. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/api/tests.py +0 -0
  18. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/api/urls.py +0 -0
  19. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/api/wsgi.py +0 -0
  20. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/application.yml +0 -0
  21. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/entrypoint.sh +0 -0
  22. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/manage.py +0 -0
  23. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/backend/requirements.txt +0 -0
  24. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/base.env +0 -0
  25. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/docker-compose.yml +0 -0
  26. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/frontend/package.json +0 -0
  27. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/frontend/src/main.jsx +0 -0
  28. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/frontend/vite.config.js +0 -0
  29. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/local.env +0 -0
  30. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/run.sh +0 -0
  31. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/selenium/run.sh +0 -0
  32. {slthcore-0.1.8 → slthcore-0.1.9}/slth/cmd/init/boilerplate/test.sh +0 -0
  33. {slthcore-0.1.8 → slthcore-0.1.9}/slth/db/__init__.py +0 -0
  34. {slthcore-0.1.8 → slthcore-0.1.9}/slth/db/generic.py +0 -0
  35. {slthcore-0.1.8 → slthcore-0.1.9}/slth/db/models.py +0 -0
  36. {slthcore-0.1.8 → slthcore-0.1.9}/slth/endpoints.py +0 -0
  37. {slthcore-0.1.8 → slthcore-0.1.9}/slth/exceptions.py +0 -0
  38. {slthcore-0.1.8 → slthcore-0.1.9}/slth/factory.py +0 -0
  39. {slthcore-0.1.8 → slthcore-0.1.9}/slth/forms.py +0 -0
  40. {slthcore-0.1.8 → slthcore-0.1.9}/slth/management/__init__.py +0 -0
  41. {slthcore-0.1.8 → slthcore-0.1.9}/slth/management/commands/__init__.py +0 -0
  42. {slthcore-0.1.8 → slthcore-0.1.9}/slth/management/commands/integration_test.py +0 -0
  43. {slthcore-0.1.8 → slthcore-0.1.9}/slth/management/commands/sync.py +0 -0
  44. {slthcore-0.1.8 → slthcore-0.1.9}/slth/middleware.py +0 -0
  45. {slthcore-0.1.8 → slthcore-0.1.9}/slth/migrations/0001_initial.py +0 -0
  46. {slthcore-0.1.8 → slthcore-0.1.9}/slth/migrations/0002_email_role_pushsubscription_error.py +0 -0
  47. {slthcore-0.1.8 → slthcore-0.1.9}/slth/migrations/0003_rename_photo_profile_alter_profile_options.py +0 -0
  48. {slthcore-0.1.8 → slthcore-0.1.9}/slth/migrations/0004_alter_profile_photo.py +0 -0
  49. {slthcore-0.1.8 → slthcore-0.1.9}/slth/migrations/0005_alter_profile_photo.py +0 -0
  50. {slthcore-0.1.8 → slthcore-0.1.9}/slth/migrations/0006_user.py +0 -0
  51. {slthcore-0.1.8 → slthcore-0.1.9}/slth/migrations/0007_deletion_log.py +0 -0
  52. {slthcore-0.1.8 → slthcore-0.1.9}/slth/migrations/__init__.py +0 -0
  53. {slthcore-0.1.8 → slthcore-0.1.9}/slth/models.py +0 -0
  54. {slthcore-0.1.8 → slthcore-0.1.9}/slth/notifications.py +0 -0
  55. {slthcore-0.1.8 → slthcore-0.1.9}/slth/oauth.py +0 -0
  56. {slthcore-0.1.8 → slthcore-0.1.9}/slth/pdf/__init__.py +0 -0
  57. {slthcore-0.1.8 → slthcore-0.1.9}/slth/pdf/tests.py +0 -0
  58. {slthcore-0.1.8 → slthcore-0.1.9}/slth/permissions.py +0 -0
  59. {slthcore-0.1.8 → slthcore-0.1.9}/slth/printer.py +0 -0
  60. {slthcore-0.1.8 → slthcore-0.1.9}/slth/queryset.py +0 -0
  61. {slthcore-0.1.8 → slthcore-0.1.9}/slth/roles.py +0 -0
  62. {slthcore-0.1.8 → slthcore-0.1.9}/slth/selenium/__init__.py +0 -0
  63. {slthcore-0.1.8 → slthcore-0.1.9}/slth/selenium/browser.py +0 -0
  64. {slthcore-0.1.8 → slthcore-0.1.9}/slth/serializer.py +0 -0
  65. {slthcore-0.1.8 → slthcore-0.1.9}/slth/static/.DS_Store +0 -0
  66. {slthcore-0.1.8 → slthcore-0.1.9}/slth/static/css/.DS_Store +0 -0
  67. {slthcore-0.1.8 → slthcore-0.1.9}/slth/static/css/slth.css +0 -0
  68. {slthcore-0.1.8 → slthcore-0.1.9}/slth/static/js/index.min.js +0 -0
  69. {slthcore-0.1.8 → slthcore-0.1.9}/slth/static/js/react.min.js +0 -0
  70. {slthcore-0.1.8 → slthcore-0.1.9}/slth/static/js/slth.min.js +0 -0
  71. {slthcore-0.1.8 → slthcore-0.1.9}/slth/statistics.py +0 -0
  72. {slthcore-0.1.8 → slthcore-0.1.9}/slth/tasks.py +0 -0
  73. {slthcore-0.1.8 → slthcore-0.1.9}/slth/templates/index.html +0 -0
  74. {slthcore-0.1.8 → slthcore-0.1.9}/slth/templates/report.html +0 -0
  75. {slthcore-0.1.8 → slthcore-0.1.9}/slth/templates/service-worker.js +0 -0
  76. {slthcore-0.1.8 → slthcore-0.1.9}/slth/templates/signature.html +0 -0
  77. {slthcore-0.1.8 → slthcore-0.1.9}/slth/tests.py +0 -0
  78. {slthcore-0.1.8 → slthcore-0.1.9}/slth/threadlocal.py +0 -0
  79. {slthcore-0.1.8 → slthcore-0.1.9}/slth/urls.py +0 -0
  80. {slthcore-0.1.8 → slthcore-0.1.9}/slth/utils.py +0 -0
  81. {slthcore-0.1.8 → slthcore-0.1.9}/slth/views.py +0 -0
  82. {slthcore-0.1.8 → slthcore-0.1.9}/slthcore.egg-info/SOURCES.txt +0 -0
  83. {slthcore-0.1.8 → slthcore-0.1.9}/slthcore.egg-info/dependency_links.txt +0 -0
  84. {slthcore-0.1.8 → slthcore-0.1.9}/slthcore.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: slthcore
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: API generator based on yml file
5
5
  Home-page: https://github.com/brenokcc
6
6
  Author: Breno Silva
@@ -5,7 +5,7 @@ install_requires = []
5
5
 
6
6
  setup(
7
7
  name='slthcore',
8
- version='0.1.8',
8
+ version='0.1.9',
9
9
  packages=find_packages(),
10
10
  install_requires=install_requires,
11
11
  include_package_data=True,
@@ -213,7 +213,7 @@ class ZoomMeet(dict):
213
213
  def __init__(self, token, role=0):
214
214
  self["type"] = "zoommeet"
215
215
  self["token"] = token
216
- self["role"] = tole
216
+ self["role"] = role
217
217
 
218
218
 
219
219
  class Navbar(dict):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: slthcore
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: API generator based on yml file
5
5
  Home-page: https://github.com/brenokcc
6
6
  Author: Breno Silva
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes