incognia-python 2.1.0__tar.gz → 2.1.1__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 (32) hide show
  1. {incognia_python-2.1.0 → incognia_python-2.1.1}/PKG-INFO +4 -4
  2. {incognia_python-2.1.0 → incognia_python-2.1.1}/README.md +3 -3
  3. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia_python.egg-info/PKG-INFO +4 -4
  4. {incognia_python-2.1.0 → incognia_python-2.1.1}/.github/dependabot.yml +0 -0
  5. {incognia_python-2.1.0 → incognia_python-2.1.1}/.github/workflows/codeql.yaml +0 -0
  6. {incognia_python-2.1.0 → incognia_python-2.1.1}/.github/workflows/continuous.yaml +0 -0
  7. {incognia_python-2.1.0 → incognia_python-2.1.1}/.gitignore +0 -0
  8. {incognia_python-2.1.0 → incognia_python-2.1.1}/CODEOWNERS +0 -0
  9. {incognia_python-2.1.0 → incognia_python-2.1.1}/LICENSE.txt +0 -0
  10. {incognia_python-2.1.0 → incognia_python-2.1.1}/MANIFEST.in +0 -0
  11. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/__init__.py +0 -0
  12. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/api.py +0 -0
  13. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/base_request.py +0 -0
  14. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/datetime_util.py +0 -0
  15. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/endpoints.py +0 -0
  16. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/exceptions.py +0 -0
  17. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/feedback_events.py +0 -0
  18. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/json_util.py +0 -0
  19. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/models.py +0 -0
  20. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia/token_manager.py +0 -0
  21. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia_python.egg-info/SOURCES.txt +0 -0
  22. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia_python.egg-info/dependency_links.txt +0 -0
  23. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia_python.egg-info/not-zip-safe +0 -0
  24. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia_python.egg-info/requires.txt +0 -0
  25. {incognia_python-2.1.0 → incognia_python-2.1.1}/incognia_python.egg-info/top_level.txt +0 -0
  26. {incognia_python-2.1.0 → incognia_python-2.1.1}/pyproject.toml +0 -0
  27. {incognia_python-2.1.0 → incognia_python-2.1.1}/requirements.txt +0 -0
  28. {incognia_python-2.1.0 → incognia_python-2.1.1}/setup.cfg +0 -0
  29. {incognia_python-2.1.0 → incognia_python-2.1.1}/tests/__init__.py +0 -0
  30. {incognia_python-2.1.0 → incognia_python-2.1.1}/tests/test_api.py +0 -0
  31. {incognia_python-2.1.0 → incognia_python-2.1.1}/tests/test_base_request.py +0 -0
  32. {incognia_python-2.1.0 → incognia_python-2.1.1}/tests/test_token_manager.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: incognia-python
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Summary: Python lightweight client library for Incognia APIs
5
5
  Home-page: https://github.com/inloco/incognia-python
6
6
  Author: Incognia
@@ -111,10 +111,10 @@ from incognia.feedback_events import FeedbackEvents # feedbacks are strings.
111
111
 
112
112
  api = IncogniaAPI('client-id', 'client-secret')
113
113
 
114
- api.register_feedback(FeedbackEvents.SIGNUP_ACCEPTED, dt.datetime.now(),
114
+ api.register_feedback(FeedbackEvents.ACCOUNT_TAKEOVER,
115
+ occurred_at=dt.datetime(2024, 7, 22, 15, 20, 0, tzinfo=dt.timezone.utc),
115
116
  installation_id='installation-id',
116
- account_id='account-id',
117
- signup_id='signup-id')
117
+ account_id='account-id')
118
118
  ```
119
119
 
120
120
  #### Registering Payment
@@ -95,10 +95,10 @@ from incognia.feedback_events import FeedbackEvents # feedbacks are strings.
95
95
 
96
96
  api = IncogniaAPI('client-id', 'client-secret')
97
97
 
98
- api.register_feedback(FeedbackEvents.SIGNUP_ACCEPTED, dt.datetime.now(),
98
+ api.register_feedback(FeedbackEvents.ACCOUNT_TAKEOVER,
99
+ occurred_at=dt.datetime(2024, 7, 22, 15, 20, 0, tzinfo=dt.timezone.utc),
99
100
  installation_id='installation-id',
100
- account_id='account-id',
101
- signup_id='signup-id')
101
+ account_id='account-id')
102
102
  ```
103
103
 
104
104
  #### Registering Payment
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: incognia-python
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Summary: Python lightweight client library for Incognia APIs
5
5
  Home-page: https://github.com/inloco/incognia-python
6
6
  Author: Incognia
@@ -111,10 +111,10 @@ from incognia.feedback_events import FeedbackEvents # feedbacks are strings.
111
111
 
112
112
  api = IncogniaAPI('client-id', 'client-secret')
113
113
 
114
- api.register_feedback(FeedbackEvents.SIGNUP_ACCEPTED, dt.datetime.now(),
114
+ api.register_feedback(FeedbackEvents.ACCOUNT_TAKEOVER,
115
+ occurred_at=dt.datetime(2024, 7, 22, 15, 20, 0, tzinfo=dt.timezone.utc),
115
116
  installation_id='installation-id',
116
- account_id='account-id',
117
- signup_id='signup-id')
117
+ account_id='account-id')
118
118
  ```
119
119
 
120
120
  #### Registering Payment