karrio-server-proxy 2025.5rc31__py3-none-any.whl → 2025.5rc33__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.
- karrio/server/proxy/views/manifest.py +1 -3
- karrio/server/proxy/views/pickup.py +1 -3
- karrio/server/proxy/views/rating.py +1 -3
- karrio/server/proxy/views/shipping.py +1 -2
- karrio/server/proxy/views/tracking.py +1 -3
- {karrio_server_proxy-2025.5rc31.dist-info → karrio_server_proxy-2025.5rc33.dist-info}/METADATA +1 -1
- {karrio_server_proxy-2025.5rc31.dist-info → karrio_server_proxy-2025.5rc33.dist-info}/RECORD +9 -9
- {karrio_server_proxy-2025.5rc31.dist-info → karrio_server_proxy-2025.5rc33.dist-info}/WHEEL +0 -0
- {karrio_server_proxy-2025.5rc31.dist-info → karrio_server_proxy-2025.5rc33.dist-info}/top_level.txt +0 -0
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
import logging
|
|
2
1
|
import django.urls as urls
|
|
3
2
|
import rest_framework.status as status
|
|
4
3
|
import rest_framework.request as request
|
|
5
4
|
import rest_framework.response as response
|
|
6
5
|
|
|
6
|
+
from karrio.server.core.logging import logger
|
|
7
7
|
import karrio.server.openapi as openapi
|
|
8
8
|
import karrio.server.core.views.api as api
|
|
9
9
|
import karrio.server.proxy.router as router
|
|
10
10
|
import karrio.server.core.gateway as gateway
|
|
11
11
|
import karrio.server.core.serializers as serializers
|
|
12
|
-
|
|
13
|
-
logger = logging.getLogger(__name__)
|
|
14
12
|
ENDPOINT_ID = "@@@$" # This endpoint id is used to make operation ids unique make sure not to duplicate
|
|
15
13
|
|
|
16
14
|
DESCRIPTION = """
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import logging
|
|
2
1
|
from django.urls import path
|
|
3
2
|
from rest_framework import status
|
|
4
3
|
from rest_framework.response import Response
|
|
@@ -8,6 +7,7 @@ import karrio.server.openapi as openapi
|
|
|
8
7
|
import karrio.server.core.utils as utils
|
|
9
8
|
import karrio.server.core.dataunits as dataunits
|
|
10
9
|
import karrio.server.providers.models as providers
|
|
10
|
+
from karrio.server.core.logging import logger
|
|
11
11
|
from karrio.server.proxy.router import router
|
|
12
12
|
from karrio.server.core.gateway import Pickups
|
|
13
13
|
from karrio.server.core.views.api import APIView
|
|
@@ -20,8 +20,6 @@ from karrio.server.core.serializers import (
|
|
|
20
20
|
ErrorResponse,
|
|
21
21
|
ErrorMessages,
|
|
22
22
|
)
|
|
23
|
-
|
|
24
|
-
logger = logging.getLogger(__name__)
|
|
25
23
|
ENDPOINT_ID = "@" # This endpoint id is used to make operation ids unique make sure not to duplicate
|
|
26
24
|
|
|
27
25
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import logging
|
|
2
1
|
from django.urls import path
|
|
3
2
|
from rest_framework import status
|
|
4
3
|
from rest_framework.request import Request
|
|
5
4
|
from rest_framework.response import Response
|
|
6
5
|
|
|
6
|
+
from karrio.server.core.logging import logger
|
|
7
7
|
from karrio.server.core.views.api import APIView
|
|
8
8
|
from karrio.server.core.serializers import (
|
|
9
9
|
RateRequest,
|
|
@@ -14,8 +14,6 @@ from karrio.server.core.serializers import (
|
|
|
14
14
|
from karrio.server.core.gateway import Rates
|
|
15
15
|
from karrio.server.proxy.router import router
|
|
16
16
|
import karrio.server.openapi as openapi
|
|
17
|
-
|
|
18
|
-
logger = logging.getLogger(__name__)
|
|
19
17
|
ENDPOINT_ID = "@@" # This endpoint id is used to make operation ids unique make sure not to duplicate
|
|
20
18
|
|
|
21
19
|
DESCRIPTIONS = """
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import logging
|
|
2
1
|
from django.urls import path
|
|
3
2
|
from rest_framework import status
|
|
4
3
|
from rest_framework.request import Request
|
|
@@ -9,6 +8,7 @@ import karrio.server.openapi as openapi
|
|
|
9
8
|
import karrio.server.serializers as serializers
|
|
10
9
|
import karrio.server.core.dataunits as dataunits
|
|
11
10
|
import karrio.server.providers.models as providers
|
|
11
|
+
from karrio.server.core.logging import logger
|
|
12
12
|
from karrio.server.core.views.api import APIView
|
|
13
13
|
from karrio.server.proxy.router import router
|
|
14
14
|
from karrio.server.core.gateway import Shipments
|
|
@@ -25,7 +25,6 @@ from karrio.server.core.serializers import (
|
|
|
25
25
|
)
|
|
26
26
|
|
|
27
27
|
ENDPOINT_ID = "@@@" # This endpoint id is used to make operation ids unique make sure not to duplicate
|
|
28
|
-
logger = logging.getLogger(__name__)
|
|
29
28
|
|
|
30
29
|
|
|
31
30
|
class Address(BaseAddress):
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import logging
|
|
2
1
|
from django.urls import path
|
|
3
2
|
from rest_framework import status
|
|
4
3
|
from rest_framework.response import Response
|
|
@@ -6,6 +5,7 @@ from rest_framework.request import Request
|
|
|
6
5
|
|
|
7
6
|
import karrio.server.openapi as openapi
|
|
8
7
|
import karrio.server.core.dataunits as dataunits
|
|
8
|
+
from karrio.server.core.logging import logger
|
|
9
9
|
from karrio.server.core.views.api import APIView
|
|
10
10
|
from karrio.server.core.serializers import (
|
|
11
11
|
TrackingData,
|
|
@@ -15,8 +15,6 @@ from karrio.server.core.serializers import (
|
|
|
15
15
|
)
|
|
16
16
|
from karrio.server.core.gateway import Shipments
|
|
17
17
|
from karrio.server.proxy.router import router
|
|
18
|
-
|
|
19
|
-
logger = logging.getLogger(__name__)
|
|
20
18
|
ENDPOINT_ID = "@@@@" # This endpoint id is used to make operation ids unique make sure not to duplicate
|
|
21
19
|
|
|
22
20
|
|
{karrio_server_proxy-2025.5rc31.dist-info → karrio_server_proxy-2025.5rc33.dist-info}/RECORD
RENAMED
|
@@ -11,12 +11,12 @@ karrio/server/proxy/tests/test_rating.py,sha256=9ujDQms255LCNqi3BFIbaxhhE6ox_g1P
|
|
|
11
11
|
karrio/server/proxy/tests/test_shipping.py,sha256=Xk78q4FSUwIHosjwFc3RkeU7S90NSL6yJRbofyuDFN4,10607
|
|
12
12
|
karrio/server/proxy/tests/test_tracking.py,sha256=aO4y6MqgANCGA2QN3a79ZxyAGfXcEXlKV6ghogGbO-w,2965
|
|
13
13
|
karrio/server/proxy/views/__init__.py,sha256=5W2I_z2WEgpnHzfrJWWMx0ptxGSGSHb3yO-ymYHggZQ,252
|
|
14
|
-
karrio/server/proxy/views/manifest.py,sha256=
|
|
15
|
-
karrio/server/proxy/views/pickup.py,sha256=
|
|
16
|
-
karrio/server/proxy/views/rating.py,sha256=
|
|
17
|
-
karrio/server/proxy/views/shipping.py,sha256=
|
|
18
|
-
karrio/server/proxy/views/tracking.py,sha256=
|
|
19
|
-
karrio_server_proxy-2025.
|
|
20
|
-
karrio_server_proxy-2025.
|
|
21
|
-
karrio_server_proxy-2025.
|
|
22
|
-
karrio_server_proxy-2025.
|
|
14
|
+
karrio/server/proxy/views/manifest.py,sha256=aMeQYJDBwBefTXmz4vTFVz08h2Y7LueITD2CSGBoqUE,1786
|
|
15
|
+
karrio/server/proxy/views/pickup.py,sha256=eFdsbSsDpKpgLWOZIBYimVZIDjgX2Dzn4uzK3NPdHqs,4559
|
|
16
|
+
karrio/server/proxy/views/rating.py,sha256=uCwjda4IydquDl3oanRssC9_81byH2jJ6UgyEf-oOTg,1714
|
|
17
|
+
karrio/server/proxy/views/shipping.py,sha256=UDSPgrRAG4_qxkkYKtp4NFYEzJXiI964svXXXj6Z_DU,4453
|
|
18
|
+
karrio/server/proxy/views/tracking.py,sha256=GVbJWwxJVCeWGAliKcFR9d9Xcycba8R9IEiTp8zFcVo,5220
|
|
19
|
+
karrio_server_proxy-2025.5rc33.dist-info/METADATA,sha256=zJVoIe-cna0bC6ZjkKzktaDWgB3gIPTlkFu-oZIolAU,681
|
|
20
|
+
karrio_server_proxy-2025.5rc33.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
21
|
+
karrio_server_proxy-2025.5rc33.dist-info/top_level.txt,sha256=D1D7x8R3cTfjF_15mfiO7wCQ5QMtuM4x8GaPr7z5i78,12
|
|
22
|
+
karrio_server_proxy-2025.5rc33.dist-info/RECORD,,
|
|
File without changes
|
{karrio_server_proxy-2025.5rc31.dist-info → karrio_server_proxy-2025.5rc33.dist-info}/top_level.txt
RENAMED
|
File without changes
|