payme-pkg 3.0.27__tar.gz → 3.0.28__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 payme-pkg might be problematic. Click here for more details.
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/PKG-INFO +1 -1
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/views.py +1 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme_pkg.egg-info/PKG-INFO +1 -1
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/setup.py +1 -1
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/LICENSE.txt +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/README.md +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/__init__.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/admin.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/apps.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/classes/__init__.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/classes/cards.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/classes/client.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/classes/http.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/classes/initializer.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/classes/receipts.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/const.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/exceptions/__init__.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/exceptions/general.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/exceptions/webhook.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/migrations/0001_initial.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/migrations/0002_paymetransactions_fiscal_data.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/migrations/0003_alter_paymetransactions_fiscal_data.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/migrations/0004_alter_paymetransactions_account_id.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/migrations/__init__.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/models.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/types/__init__.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/types/request/__init__.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/types/response/__init__.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/types/response/cards.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/types/response/receipts.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/types/response/webhook.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/urls.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/util.py +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme_pkg.egg-info/SOURCES.txt +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme_pkg.egg-info/dependency_links.txt +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme_pkg.egg-info/requires.txt +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme_pkg.egg-info/top_level.txt +0 -0
- {payme_pkg-3.0.27 → payme_pkg-3.0.28}/setup.cfg +0 -0
|
@@ -300,6 +300,7 @@ class PaymeWebHookAPIView(views.APIView):
|
|
|
300
300
|
"create_time": time_to_payme(transaction.created_at),
|
|
301
301
|
"perform_time": time_to_payme(transaction.performed_at),
|
|
302
302
|
"cancel_time": time_to_payme(transaction.cancelled_at),
|
|
303
|
+
"time": time_to_payme(transaction.created_at),
|
|
303
304
|
})
|
|
304
305
|
|
|
305
306
|
return result.as_resp()
|
|
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
|
{payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/migrations/0002_paymetransactions_fiscal_data.py
RENAMED
|
File without changes
|
{payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/migrations/0003_alter_paymetransactions_fiscal_data.py
RENAMED
|
File without changes
|
{payme_pkg-3.0.27 → payme_pkg-3.0.28}/payme/migrations/0004_alter_paymetransactions_account_id.py
RENAMED
|
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
|