karrio-postat 2026.1__py3-none-any.whl → 2026.1.3__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/plugins/postat/__init__.py +1 -1
- karrio/providers/postat/units.py +9 -9
- {karrio_postat-2026.1.dist-info → karrio_postat-2026.1.3.dist-info}/METADATA +2 -2
- {karrio_postat-2026.1.dist-info → karrio_postat-2026.1.3.dist-info}/RECORD +7 -7
- {karrio_postat-2026.1.dist-info → karrio_postat-2026.1.3.dist-info}/WHEEL +1 -1
- {karrio_postat-2026.1.dist-info → karrio_postat-2026.1.3.dist-info}/entry_points.txt +0 -0
- {karrio_postat-2026.1.dist-info → karrio_postat-2026.1.3.dist-info}/top_level.txt +0 -0
|
@@ -11,7 +11,7 @@ import karrio.providers.postat.units as units
|
|
|
11
11
|
# The entrypoint is defined in pyproject.toml under [project.entry-points."karrio.plugins"]
|
|
12
12
|
METADATA = PluginMetadata(
|
|
13
13
|
id="postat",
|
|
14
|
-
label="
|
|
14
|
+
label="Austrian Post",
|
|
15
15
|
description="Austrian Post (Österreichische Post) shipping integration via Post-Labelcenter API",
|
|
16
16
|
# Integrations
|
|
17
17
|
Mapper=Mapper,
|
karrio/providers/postat/units.py
CHANGED
|
@@ -70,27 +70,27 @@ class ShippingOption(lib.Enum):
|
|
|
70
70
|
postat_paper_layout = lib.OptionEnum("paper_layout", str)
|
|
71
71
|
|
|
72
72
|
# Cash on Delivery
|
|
73
|
-
postat_cod = lib.OptionEnum("COD", float)
|
|
74
|
-
postat_cod_currency = lib.OptionEnum("COD_CURRENCY", str)
|
|
73
|
+
postat_cod = lib.OptionEnum("COD", float, meta=dict(category="COD"))
|
|
74
|
+
postat_cod_currency = lib.OptionEnum("COD_CURRENCY", str, meta=dict(category="COD"))
|
|
75
75
|
|
|
76
76
|
# Insurance
|
|
77
|
-
postat_insurance = lib.OptionEnum("INS", float)
|
|
78
|
-
postat_insurance_currency = lib.OptionEnum("INS_CURRENCY", str)
|
|
77
|
+
postat_insurance = lib.OptionEnum("INS", float, meta=dict(category="INSURANCE"))
|
|
78
|
+
postat_insurance_currency = lib.OptionEnum("INS_CURRENCY", str, meta=dict(category="INSURANCE"))
|
|
79
79
|
|
|
80
80
|
# Signature required
|
|
81
|
-
postat_signature = lib.OptionEnum("SIG", bool)
|
|
81
|
+
postat_signature = lib.OptionEnum("SIG", bool, meta=dict(category="SIGNATURE"))
|
|
82
82
|
|
|
83
83
|
# Saturday delivery
|
|
84
|
-
postat_saturday_delivery = lib.OptionEnum("SAT", bool)
|
|
84
|
+
postat_saturday_delivery = lib.OptionEnum("SAT", bool, meta=dict(category="DELIVERY_OPTIONS"))
|
|
85
85
|
|
|
86
86
|
# Email notification
|
|
87
|
-
postat_email_notification = lib.OptionEnum("MAIL", str)
|
|
87
|
+
postat_email_notification = lib.OptionEnum("MAIL", str, meta=dict(category="NOTIFICATION"))
|
|
88
88
|
|
|
89
89
|
# SMS notification
|
|
90
|
-
postat_sms_notification = lib.OptionEnum("SMS", str)
|
|
90
|
+
postat_sms_notification = lib.OptionEnum("SMS", str, meta=dict(category="NOTIFICATION"))
|
|
91
91
|
|
|
92
92
|
# Age verification (16 or 18)
|
|
93
|
-
postat_age_verification = lib.OptionEnum("AGE", int)
|
|
93
|
+
postat_age_verification = lib.OptionEnum("AGE", int, meta=dict(category="SIGNATURE"))
|
|
94
94
|
|
|
95
95
|
# Unified option mappings
|
|
96
96
|
cash_on_delivery = postat_cod
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: karrio_postat
|
|
3
|
-
Version: 2026.1
|
|
4
|
-
Summary: Karrio -
|
|
3
|
+
Version: 2026.1.3
|
|
4
|
+
Summary: Karrio - Austrian Post Shipping Extension
|
|
5
5
|
Author-email: karrio <hello@karrio.io>
|
|
6
6
|
License-Expression: LGPL-3.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/karrioapi/karrio
|
|
@@ -2,10 +2,10 @@ karrio/mappers/postat/__init__.py,sha256=c12wXYUbeqRwfHWCaApOehQEaAn6y58dnzizXn0
|
|
|
2
2
|
karrio/mappers/postat/mapper.py,sha256=meokZ91UDJjuzBfK6u0Wz31lFuoD4K5pVmS9HpY-tz8,1630
|
|
3
3
|
karrio/mappers/postat/proxy.py,sha256=B5pIX2Q-uQJhZjZlJtNIwxbn51p_7Bp-QlEOGuC97Zw,1611
|
|
4
4
|
karrio/mappers/postat/settings.py,sha256=JkF6yO-sgpp6zQ7JbBjAZTf50U1l02ukQMSnaCjqm74,1094
|
|
5
|
-
karrio/plugins/postat/__init__.py,sha256=
|
|
5
|
+
karrio/plugins/postat/__init__.py,sha256=PyMADJCQTU01xcxRIwQM4-ECdKD2kzbxXJcar81DiOI,1011
|
|
6
6
|
karrio/providers/postat/__init__.py,sha256=4hksVX0z3YuFqljwLnrMpwcCaS1k-F6vXXnrhcR7w6Y,254
|
|
7
7
|
karrio/providers/postat/error.py,sha256=uPrthPtL-VCb9H_7-Ob2KJZsmrB-Jns7j1WTkskQjhE,951
|
|
8
|
-
karrio/providers/postat/units.py,sha256=
|
|
8
|
+
karrio/providers/postat/units.py,sha256=fReSTwqZbhIloVwkeROrI4l9KjMgLGeWWYyZz7Lpd74,7726
|
|
9
9
|
karrio/providers/postat/utils.py,sha256=ee-O4It-Lb4VBoB4mk-85C9pnYCicsfzpGYdmwemU9s,1439
|
|
10
10
|
karrio/providers/postat/shipment/__init__.py,sha256=LBFK83E-DV24daViy0wFQWQGYPTSe5XvGillDp2LsZg,229
|
|
11
11
|
karrio/providers/postat/shipment/cancel.py,sha256=VHT7YcB4S-2HNtKhMlch8_3V_Ex5MkJCvqjLXSyzCm0,2080
|
|
@@ -13,8 +13,8 @@ karrio/providers/postat/shipment/create.py,sha256=2vi_vf3UnTSxxOTOKwvEnsfIETAcuc
|
|
|
13
13
|
karrio/schemas/postat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
karrio/schemas/postat/plc_types.py,sha256=VmqXCsiptEf2Iv48zzlal4mjd2kEmG8oCK-CTDHYHO8,155450
|
|
15
15
|
karrio/schemas/postat/void_types.py,sha256=49lZwTbVudeRiwXofLneZv8ykuJN449Q1vA7SpO1yeU,71559
|
|
16
|
-
karrio_postat-2026.1.dist-info/METADATA,sha256=
|
|
17
|
-
karrio_postat-2026.1.dist-info/WHEEL,sha256=
|
|
18
|
-
karrio_postat-2026.1.dist-info/entry_points.txt,sha256=-oCWdqyDuP9WWI6-l-QkY8RyPTdQdOs458D6T8adp_I,57
|
|
19
|
-
karrio_postat-2026.1.dist-info/top_level.txt,sha256=9Nasa6abG7pPPG8MGzlemnqw1ohIqgouzQ7HGBnOFLg,27
|
|
20
|
-
karrio_postat-2026.1.dist-info/RECORD,,
|
|
16
|
+
karrio_postat-2026.1.3.dist-info/METADATA,sha256=AQRATC4eRTFzOnxuA5ICN8_-g2cQBtIDDohQmFCJDDk,1006
|
|
17
|
+
karrio_postat-2026.1.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
18
|
+
karrio_postat-2026.1.3.dist-info/entry_points.txt,sha256=-oCWdqyDuP9WWI6-l-QkY8RyPTdQdOs458D6T8adp_I,57
|
|
19
|
+
karrio_postat-2026.1.3.dist-info/top_level.txt,sha256=9Nasa6abG7pPPG8MGzlemnqw1ohIqgouzQ7HGBnOFLg,27
|
|
20
|
+
karrio_postat-2026.1.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|