python-easyverein 0.2.2__tar.gz → 0.2.3__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.
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/PKG-INFO +1 -1
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/__init__.py +1 -1
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/member.py +6 -7
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/pyproject.toml +1 -1
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/LICENSE +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/README.md +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/api.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/core/__init__.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/core/client.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/core/exceptions.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/core/protocol.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/core/types.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/core/validators.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/__init__.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/base.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/contact_details.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/custom_field.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/invoice.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/invoice_item.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/member_custom_field.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/mixins/__init__.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/mixins/empty_strings_mixin.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/mixins/required_attributes.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/__init__.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/contact_details.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/custom_field.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/invoice.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/invoice_item.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/member.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/member_custom_field.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/mixins/__init__.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/mixins/crud.py +0 -0
- {python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/mixins/recycle_bin.py +0 -0
|
@@ -9,6 +9,7 @@ from pydantic import BaseModel, Field, PositiveInt
|
|
|
9
9
|
|
|
10
10
|
from ..core.types import (
|
|
11
11
|
AnyHttpURL,
|
|
12
|
+
Date,
|
|
12
13
|
DateTime,
|
|
13
14
|
EasyVereinReference,
|
|
14
15
|
FilterIntList,
|
|
@@ -67,7 +68,7 @@ class Member(EasyVereinBase):
|
|
|
67
68
|
"""
|
|
68
69
|
Alias for `_isApplication` field. See [Pydantic Models](../usage.md#pydantic-models) for details.
|
|
69
70
|
"""
|
|
70
|
-
applicationDate:
|
|
71
|
+
applicationDate: Date | None = Field(default=None, alias="_applicationDate")
|
|
71
72
|
"""
|
|
72
73
|
Alias for `_applicationDate` field. See [Pydantic Models](../usage.md#pydantic-models) for details.
|
|
73
74
|
"""
|
|
@@ -158,16 +159,14 @@ class MemberFilter(BaseModel):
|
|
|
158
159
|
resignationDate__lte: DateTime | None = None
|
|
159
160
|
resignationDate__isnull: DateTime | None = None
|
|
160
161
|
isApplication: bool = Field(default=None, serialization_alias="_isApplication")
|
|
161
|
-
applicationDate:
|
|
162
|
-
|
|
163
|
-
)
|
|
164
|
-
applicationDate__gte: DateTime = Field(
|
|
162
|
+
applicationDate: Date = Field(default=None, serialization_alias="_applicationDate")
|
|
163
|
+
applicationDate__gte: Date = Field(
|
|
165
164
|
default=None, serialization_alias="_applicationDate__gte"
|
|
166
165
|
)
|
|
167
|
-
applicationDate__lte:
|
|
166
|
+
applicationDate__lte: Date = Field(
|
|
168
167
|
default=None, serialization_alias="_applicationDate__lte"
|
|
169
168
|
)
|
|
170
|
-
applicationDate__isnull:
|
|
169
|
+
applicationDate__isnull: Date = Field(
|
|
171
170
|
default=None, serialization_alias="_applicationDate__isnull"
|
|
172
171
|
)
|
|
173
172
|
applicationWasAcceptedAt: DateTime = Field(
|
|
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
|
{python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/member_custom_field.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/mixins/empty_strings_mixin.py
RENAMED
|
File without changes
|
{python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/models/mixins/required_attributes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/member_custom_field.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_easyverein-0.2.2 → python_easyverein-0.2.3}/easyverein/modules/mixins/recycle_bin.py
RENAMED
|
File without changes
|