eetlijst-python 0.0.14__tar.gz → 0.0.16__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.
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/PKG-INFO +2 -2
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/pyproject.toml +8 -2
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/eetlijst.py +1 -1
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/__init__.py +165 -26
- eetlijst_python-0.0.16/src/eetlijst_py/generated/all_attendances_subscription.py +13 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/all_events_subscription.py +13 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/all_expenses_subscription.py +13 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/all_groups.py +20 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/all_groups_subscription.py +22 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/all_settlements_subscription.py +13 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/all_users_in_group_subscription.py +20 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/client.py +1250 -98
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/create_list_item.py +2 -2
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/create_many_list_items.py +2 -2
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/fragments.py +9 -2
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_app_status.py +13 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_app_status_subscription.py +13 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_attendance_subscription.py +17 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_event_subscription.py +15 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_expense.py +15 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_expense_subscription.py +15 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_group_subscription.py +22 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_group_total_expense.py +47 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_group_total_expense_import_subscription.py +36 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_group_total_expense_subscription.py +30 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_list_item.py +15 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_list_item_subscription.py +15 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_settlement.py +15 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_settlement_subscription.py +17 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_user_in_group_subscription.py +20 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/get_user_subscription.py +13 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/list_items.py +2 -2
- eetlijst_python-0.0.16/src/eetlijst_py/generated/list_items_subscription.py +13 -0
- eetlijst_python-0.0.16/src/eetlijst_py/generated/settlement_expenses_subscription.py +13 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_list_item.py +2 -2
- eetlijst_python-0.0.16/src/eetlijst_py/services/app/app.py +20 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/app/transformers.py +15 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/app/types.py +12 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/base.py +30 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/event_attendance/event_attendance.py +42 -26
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/event_attendance/transformers.py +1 -22
- eetlijst_python-0.0.16/src/eetlijst_py/services/event_attendance/types.py +89 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/events/events.py +66 -21
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/events/transformers.py +3 -27
- eetlijst_python-0.0.16/src/eetlijst_py/services/events/types.py +63 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/expenses/expenses.py +188 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/expenses/transformers.py +89 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/expenses/types.py +70 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/group_list/group_list.py +129 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/group_list/transformers.py +4 -2
- eetlijst_python-0.0.16/src/eetlijst_py/services/group_list/types.py +45 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/group_users/group_users.py +67 -29
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/group_users/transformers.py +21 -20
- eetlijst_python-0.0.16/src/eetlijst_py/services/group_users/types.py +62 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/groups/groups.py +138 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/groups/transformers.py +99 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/groups/types.py +86 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/me/me.py +9 -0
- eetlijst_python-0.0.16/src/eetlijst_py/services/settlements/settlements.py +322 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/settlements/transformers.py +12 -23
- eetlijst_python-0.0.16/src/eetlijst_py/services/settlements/types.py +77 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/users/transformers.py +10 -34
- eetlijst_python-0.0.16/src/eetlijst_py/services/users/types.py +55 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/users/users.py +9 -2
- eetlijst_python-0.0.16/src/eetlijst_py/utils/__init__.py +0 -0
- eetlijst_python-0.0.16/src/eetlijst_py/utils/params.py +18 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_python.egg-info/PKG-INFO +2 -2
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_python.egg-info/SOURCES.txt +35 -2
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_python.egg-info/requires.txt +1 -1
- eetlijst_python-0.0.14/src/eetlijst_py/generated/all_groups.py +0 -27
- eetlijst_python-0.0.14/src/eetlijst_py/generated/app_status.py +0 -16
- eetlijst_python-0.0.14/src/eetlijst_py/generated/group_total_expense.py +0 -45
- eetlijst_python-0.0.14/src/eetlijst_py/services/app/app.py +0 -18
- eetlijst_python-0.0.14/src/eetlijst_py/services/app/transformers.py +0 -10
- eetlijst_python-0.0.14/src/eetlijst_py/services/base.py +0 -20
- eetlijst_python-0.0.14/src/eetlijst_py/services/expenses/expenses.py +0 -105
- eetlijst_python-0.0.14/src/eetlijst_py/services/expenses/transformers.py +0 -73
- eetlijst_python-0.0.14/src/eetlijst_py/services/group_list/group_list.py +0 -100
- eetlijst_python-0.0.14/src/eetlijst_py/services/groups/groups.py +0 -96
- eetlijst_python-0.0.14/src/eetlijst_py/services/groups/transformers.py +0 -140
- eetlijst_python-0.0.14/src/eetlijst_py/services/settlements/settlements.py +0 -234
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/README.md +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/setup.cfg +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/exceptions.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/all_attendances.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/all_events.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/all_expenses.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/all_settlements.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/all_users_in_group.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/async_base_client.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/automatic_events.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/base_model.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/create_expense.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/create_group.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/create_settlement.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/enums.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/exceptions.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/get_attendance.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/get_event.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/get_group.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/get_user.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/get_user_in_group.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/input_types.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/join_group.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/remove_account.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/settle_unsettled_expenses.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/settlement_expenses.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_attendance.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_event.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_expense.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_expense_distribution.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_group.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_many_attendance.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_user.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_user_in_group.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/generated/update_users_in_group.py +0 -0
- /eetlijst_python-0.0.14/src/eetlijst_py/utils/__init__.py → /eetlijst_python-0.0.16/src/eetlijst_py/py.typed +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/app/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/event_attendance/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/events/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/expenses/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/expenses/utils.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/group_list/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/group_users/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/groups/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/me/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/settlements/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/settlements/utils.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/services/users/__init__.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_py/utils/datetime.py +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_python.egg-info/dependency_links.txt +0 -0
- {eetlijst_python-0.0.14 → eetlijst_python-0.0.16}/src/eetlijst_python.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eetlijst-python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.16
|
|
4
4
|
Summary: Python rewrite of the Eetlijst GraphQL client
|
|
5
5
|
Requires-Python: <3.15,>=3.14
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
7
|
Requires-Dist: httpx>=0.28
|
|
8
8
|
Requires-Dist: pydantic>=2.0.0
|
|
9
9
|
Provides-Extra: dev
|
|
10
|
-
Requires-Dist: ariadne-codegen>=0.18; extra == "dev"
|
|
10
|
+
Requires-Dist: ariadne-codegen[subscriptions]>=0.18; extra == "dev"
|
|
11
11
|
Requires-Dist: mypy>=1.8.0; extra == "dev"
|
|
12
12
|
Requires-Dist: black>=24.0; extra == "dev"
|
|
13
13
|
Requires-Dist: isort>=5.13; extra == "dev"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "eetlijst-python"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.16"
|
|
4
4
|
description = "Python rewrite of the Eetlijst GraphQL client"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.14,<3.15"
|
|
@@ -11,7 +11,7 @@ dependencies = [
|
|
|
11
11
|
|
|
12
12
|
[project.optional-dependencies]
|
|
13
13
|
dev = [
|
|
14
|
-
"ariadne-codegen>=0.18",
|
|
14
|
+
"ariadne-codegen[subscriptions]>=0.18",
|
|
15
15
|
"mypy>=1.8.0",
|
|
16
16
|
"black>=24.0",
|
|
17
17
|
"isort>=5.13",
|
|
@@ -22,6 +22,12 @@ dev = [
|
|
|
22
22
|
requires = ["setuptools>=61.0"]
|
|
23
23
|
build-backend = "setuptools.build_meta"
|
|
24
24
|
|
|
25
|
+
[tool.setuptools.packages.find]
|
|
26
|
+
where = ["src"]
|
|
27
|
+
|
|
28
|
+
[tool.setuptools.package-data]
|
|
29
|
+
eetlijst_py = ["py.typed"]
|
|
30
|
+
|
|
25
31
|
[tool.ariadne-codegen]
|
|
26
32
|
schema_path = "schema.graphql"
|
|
27
33
|
queries_path = "src/eetlijst_py/services"
|
|
@@ -36,7 +36,7 @@ class Eetlijst:
|
|
|
36
36
|
url=url or "https://api.eetlijst.nl/v1/graphql",
|
|
37
37
|
headers=headers,
|
|
38
38
|
http_client=http_client,
|
|
39
|
-
ws_url=ws_url,
|
|
39
|
+
ws_url=ws_url or "wss://api.eetlijst.nl/v1/graphql",
|
|
40
40
|
ws_headers=ws_headers,
|
|
41
41
|
ws_origin=ws_origin,
|
|
42
42
|
ws_connection_init_payload=ws_connection_init_payload,
|
|
@@ -1,19 +1,43 @@
|
|
|
1
1
|
from .all_attendances import AllAttendances, AllAttendancesEetschemaEventAttendees
|
|
2
|
+
from .all_attendances_subscription import (
|
|
3
|
+
AllAttendancesSubscription,
|
|
4
|
+
AllAttendancesSubscriptionEetschemaEventAttendees,
|
|
5
|
+
)
|
|
2
6
|
from .all_events import AllEvents, AllEventsEetschemaEvent
|
|
7
|
+
from .all_events_subscription import (
|
|
8
|
+
AllEventsSubscription,
|
|
9
|
+
AllEventsSubscriptionEetschemaEvent,
|
|
10
|
+
)
|
|
3
11
|
from .all_expenses import AllExpenses, AllExpensesEetschemaExpense
|
|
12
|
+
from .all_expenses_subscription import (
|
|
13
|
+
AllExpensesSubscription,
|
|
14
|
+
AllExpensesSubscriptionEetschemaExpense,
|
|
15
|
+
)
|
|
4
16
|
from .all_groups import (
|
|
5
17
|
AllGroups,
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
18
|
+
AllGroupsEetschemaGroup,
|
|
19
|
+
AllGroupsEetschemaGroupUsersInGroups,
|
|
20
|
+
)
|
|
21
|
+
from .all_groups_subscription import (
|
|
22
|
+
AllGroupsSubscription,
|
|
23
|
+
AllGroupsSubscriptionEetschemaGroup,
|
|
24
|
+
AllGroupsSubscriptionEetschemaGroupUsersInGroups,
|
|
9
25
|
)
|
|
10
26
|
from .all_settlements import AllSettlements, AllSettlementsEetschemaSettlements
|
|
27
|
+
from .all_settlements_subscription import (
|
|
28
|
+
AllSettlementsSubscription,
|
|
29
|
+
AllSettlementsSubscriptionEetschemaSettlements,
|
|
30
|
+
)
|
|
11
31
|
from .all_users_in_group import (
|
|
12
32
|
AllUsersInGroup,
|
|
13
33
|
AllUsersInGroupEetschemaGroupByPk,
|
|
14
34
|
AllUsersInGroupEetschemaGroupByPkUsersInGroups,
|
|
15
35
|
)
|
|
16
|
-
from .
|
|
36
|
+
from .all_users_in_group_subscription import (
|
|
37
|
+
AllUsersInGroupSubscription,
|
|
38
|
+
AllUsersInGroupSubscriptionEetschemaGroupByPk,
|
|
39
|
+
AllUsersInGroupSubscriptionEetschemaGroupByPkUsersInGroups,
|
|
40
|
+
)
|
|
17
41
|
from .async_base_client import AsyncBaseClient
|
|
18
42
|
from .automatic_events import AutomaticEvents, AutomaticEventsQueryTodaysEvents
|
|
19
43
|
from .base_model import BaseModel, Upload
|
|
@@ -98,6 +122,7 @@ from .exceptions import (
|
|
|
98
122
|
GraphQLClientInvalidResponseError,
|
|
99
123
|
)
|
|
100
124
|
from .fragments import (
|
|
125
|
+
AppStatusFields,
|
|
101
126
|
AttendanceFields,
|
|
102
127
|
AttendanceFieldsLinkedEvent,
|
|
103
128
|
AttendanceFieldsUserInGroup,
|
|
@@ -113,7 +138,7 @@ from .fragments import (
|
|
|
113
138
|
ExpenseFieldsUpdatedBy,
|
|
114
139
|
GroupFields,
|
|
115
140
|
GroupFieldsSummary,
|
|
116
|
-
|
|
141
|
+
ListItemFields,
|
|
117
142
|
SettlementFields,
|
|
118
143
|
SettlementFieldsAdjustmentsTotal,
|
|
119
144
|
SettlementFieldsAdjustmentsTotalAggregate,
|
|
@@ -128,27 +153,81 @@ from .fragments import (
|
|
|
128
153
|
UserInGroupFields,
|
|
129
154
|
UserInGroupFieldsUser,
|
|
130
155
|
)
|
|
156
|
+
from .get_app_status import GetAppStatus, GetAppStatusEetschemaAppStatus
|
|
157
|
+
from .get_app_status_subscription import (
|
|
158
|
+
GetAppStatusSubscription,
|
|
159
|
+
GetAppStatusSubscriptionEetschemaAppStatus,
|
|
160
|
+
)
|
|
131
161
|
from .get_attendance import GetAttendance, GetAttendanceEetschemaEventAttendeesByPk
|
|
162
|
+
from .get_attendance_subscription import (
|
|
163
|
+
GetAttendanceSubscription,
|
|
164
|
+
GetAttendanceSubscriptionEetschemaEventAttendeesByPk,
|
|
165
|
+
)
|
|
132
166
|
from .get_event import GetEvent, GetEventEetschemaEventByPk
|
|
167
|
+
from .get_event_subscription import (
|
|
168
|
+
GetEventSubscription,
|
|
169
|
+
GetEventSubscriptionEetschemaEventByPk,
|
|
170
|
+
)
|
|
171
|
+
from .get_expense import GetExpense, GetExpenseEetschemaExpenseByPk
|
|
172
|
+
from .get_expense_subscription import (
|
|
173
|
+
GetExpenseSubscription,
|
|
174
|
+
GetExpenseSubscriptionEetschemaExpenseByPk,
|
|
175
|
+
)
|
|
133
176
|
from .get_group import (
|
|
134
177
|
GetGroup,
|
|
135
178
|
GetGroupEetschemaGroupByPk,
|
|
136
179
|
GetGroupEetschemaGroupByPkUsersInGroups,
|
|
137
180
|
)
|
|
181
|
+
from .get_group_subscription import (
|
|
182
|
+
GetGroupSubscription,
|
|
183
|
+
GetGroupSubscriptionEetschemaGroupByPk,
|
|
184
|
+
GetGroupSubscriptionEetschemaGroupByPkUsersInGroups,
|
|
185
|
+
)
|
|
186
|
+
from .get_group_total_expense import (
|
|
187
|
+
GetGroupTotalExpense,
|
|
188
|
+
GetGroupTotalExpenseEetschemaExpenseAggregate,
|
|
189
|
+
GetGroupTotalExpenseEetschemaExpenseAggregateAggregate,
|
|
190
|
+
GetGroupTotalExpenseEetschemaExpenseAggregateAggregateSum,
|
|
191
|
+
GetGroupTotalExpenseEetschemaExpenseEetlijstImportAggregate,
|
|
192
|
+
GetGroupTotalExpenseEetschemaExpenseEetlijstImportAggregateAggregate,
|
|
193
|
+
GetGroupTotalExpenseEetschemaExpenseEetlijstImportAggregateAggregateSum,
|
|
194
|
+
)
|
|
195
|
+
from .get_group_total_expense_import_subscription import (
|
|
196
|
+
GetGroupTotalExpenseImportSubscription,
|
|
197
|
+
GetGroupTotalExpenseImportSubscriptionEetschemaExpenseEetlijstImportAggregate,
|
|
198
|
+
GetGroupTotalExpenseImportSubscriptionEetschemaExpenseEetlijstImportAggregateAggregate,
|
|
199
|
+
GetGroupTotalExpenseImportSubscriptionEetschemaExpenseEetlijstImportAggregateAggregateSum,
|
|
200
|
+
)
|
|
201
|
+
from .get_group_total_expense_subscription import (
|
|
202
|
+
GetGroupTotalExpenseSubscription,
|
|
203
|
+
GetGroupTotalExpenseSubscriptionEetschemaExpenseAggregate,
|
|
204
|
+
GetGroupTotalExpenseSubscriptionEetschemaExpenseAggregateAggregate,
|
|
205
|
+
GetGroupTotalExpenseSubscriptionEetschemaExpenseAggregateAggregateSum,
|
|
206
|
+
)
|
|
207
|
+
from .get_list_item import GetListItem, GetListItemEetschemaListByPk
|
|
208
|
+
from .get_list_item_subscription import (
|
|
209
|
+
GetListItemSubscription,
|
|
210
|
+
GetListItemSubscriptionEetschemaListByPk,
|
|
211
|
+
)
|
|
212
|
+
from .get_settlement import GetSettlement, GetSettlementEetschemaSettlementsByPk
|
|
213
|
+
from .get_settlement_subscription import (
|
|
214
|
+
GetSettlementSubscription,
|
|
215
|
+
GetSettlementSubscriptionEetschemaSettlementsByPk,
|
|
216
|
+
)
|
|
138
217
|
from .get_user import GetUser, GetUserEetschemaUserPrivate
|
|
139
218
|
from .get_user_in_group import (
|
|
140
219
|
GetUserInGroup,
|
|
141
220
|
GetUserInGroupEetschemaGroupByPk,
|
|
142
221
|
GetUserInGroupEetschemaGroupByPkUsersInGroups,
|
|
143
222
|
)
|
|
144
|
-
from .
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
223
|
+
from .get_user_in_group_subscription import (
|
|
224
|
+
GetUserInGroupSubscription,
|
|
225
|
+
GetUserInGroupSubscriptionEetschemaGroupByPk,
|
|
226
|
+
GetUserInGroupSubscriptionEetschemaGroupByPkUsersInGroups,
|
|
227
|
+
)
|
|
228
|
+
from .get_user_subscription import (
|
|
229
|
+
GetUserSubscription,
|
|
230
|
+
GetUserSubscriptionEetschemaUserPrivate,
|
|
152
231
|
)
|
|
153
232
|
from .input_types import (
|
|
154
233
|
Boolean_comparison_exp,
|
|
@@ -538,6 +617,10 @@ from .input_types import (
|
|
|
538
617
|
)
|
|
539
618
|
from .join_group import JoinGroup, JoinGroupJoinGroup
|
|
540
619
|
from .list_items import ListItems, ListItemsEetschemaList
|
|
620
|
+
from .list_items_subscription import (
|
|
621
|
+
ListItemsSubscription,
|
|
622
|
+
ListItemsSubscriptionEetschemaList,
|
|
623
|
+
)
|
|
541
624
|
from .remove_account import RemoveAccount, RemoveAccountUpdateEetschemaUserByPk
|
|
542
625
|
from .settle_unsettled_expenses import (
|
|
543
626
|
SettleUnsettledExpenses,
|
|
@@ -545,6 +628,10 @@ from .settle_unsettled_expenses import (
|
|
|
545
628
|
SettleUnsettledExpensesUpdateEetschemaExpenseExpenses,
|
|
546
629
|
)
|
|
547
630
|
from .settlement_expenses import SettlementExpenses, SettlementExpensesEetschemaExpense
|
|
631
|
+
from .settlement_expenses_subscription import (
|
|
632
|
+
SettlementExpensesSubscription,
|
|
633
|
+
SettlementExpensesSubscriptionEetschemaExpense,
|
|
634
|
+
)
|
|
548
635
|
from .update_attendance import (
|
|
549
636
|
UpdateAttendance,
|
|
550
637
|
UpdateAttendanceUpdateEetschemaEventAttendeesByPk,
|
|
@@ -581,21 +668,33 @@ from .update_users_in_group import (
|
|
|
581
668
|
__all__ = [
|
|
582
669
|
"AllAttendances",
|
|
583
670
|
"AllAttendancesEetschemaEventAttendees",
|
|
671
|
+
"AllAttendancesSubscription",
|
|
672
|
+
"AllAttendancesSubscriptionEetschemaEventAttendees",
|
|
584
673
|
"AllEvents",
|
|
585
674
|
"AllEventsEetschemaEvent",
|
|
675
|
+
"AllEventsSubscription",
|
|
676
|
+
"AllEventsSubscriptionEetschemaEvent",
|
|
586
677
|
"AllExpenses",
|
|
587
678
|
"AllExpensesEetschemaExpense",
|
|
679
|
+
"AllExpensesSubscription",
|
|
680
|
+
"AllExpensesSubscriptionEetschemaExpense",
|
|
588
681
|
"AllGroups",
|
|
589
|
-
"
|
|
590
|
-
"
|
|
591
|
-
"
|
|
682
|
+
"AllGroupsEetschemaGroup",
|
|
683
|
+
"AllGroupsEetschemaGroupUsersInGroups",
|
|
684
|
+
"AllGroupsSubscription",
|
|
685
|
+
"AllGroupsSubscriptionEetschemaGroup",
|
|
686
|
+
"AllGroupsSubscriptionEetschemaGroupUsersInGroups",
|
|
592
687
|
"AllSettlements",
|
|
593
688
|
"AllSettlementsEetschemaSettlements",
|
|
689
|
+
"AllSettlementsSubscription",
|
|
690
|
+
"AllSettlementsSubscriptionEetschemaSettlements",
|
|
594
691
|
"AllUsersInGroup",
|
|
595
692
|
"AllUsersInGroupEetschemaGroupByPk",
|
|
596
693
|
"AllUsersInGroupEetschemaGroupByPkUsersInGroups",
|
|
597
|
-
"
|
|
598
|
-
"
|
|
694
|
+
"AllUsersInGroupSubscription",
|
|
695
|
+
"AllUsersInGroupSubscriptionEetschemaGroupByPk",
|
|
696
|
+
"AllUsersInGroupSubscriptionEetschemaGroupByPkUsersInGroups",
|
|
697
|
+
"AppStatusFields",
|
|
599
698
|
"AsyncBaseClient",
|
|
600
699
|
"AttendanceFields",
|
|
601
700
|
"AttendanceFieldsLinkedEvent",
|
|
@@ -626,18 +725,61 @@ __all__ = [
|
|
|
626
725
|
"ExpenseFieldsPayedBy",
|
|
627
726
|
"ExpenseFieldsUpdatedBy",
|
|
628
727
|
"Float_comparison_exp",
|
|
728
|
+
"GetAppStatus",
|
|
729
|
+
"GetAppStatusEetschemaAppStatus",
|
|
730
|
+
"GetAppStatusSubscription",
|
|
731
|
+
"GetAppStatusSubscriptionEetschemaAppStatus",
|
|
629
732
|
"GetAttendance",
|
|
630
733
|
"GetAttendanceEetschemaEventAttendeesByPk",
|
|
734
|
+
"GetAttendanceSubscription",
|
|
735
|
+
"GetAttendanceSubscriptionEetschemaEventAttendeesByPk",
|
|
631
736
|
"GetEvent",
|
|
632
737
|
"GetEventEetschemaEventByPk",
|
|
738
|
+
"GetEventSubscription",
|
|
739
|
+
"GetEventSubscriptionEetschemaEventByPk",
|
|
740
|
+
"GetExpense",
|
|
741
|
+
"GetExpenseEetschemaExpenseByPk",
|
|
742
|
+
"GetExpenseSubscription",
|
|
743
|
+
"GetExpenseSubscriptionEetschemaExpenseByPk",
|
|
633
744
|
"GetGroup",
|
|
634
745
|
"GetGroupEetschemaGroupByPk",
|
|
635
746
|
"GetGroupEetschemaGroupByPkUsersInGroups",
|
|
747
|
+
"GetGroupSubscription",
|
|
748
|
+
"GetGroupSubscriptionEetschemaGroupByPk",
|
|
749
|
+
"GetGroupSubscriptionEetschemaGroupByPkUsersInGroups",
|
|
750
|
+
"GetGroupTotalExpense",
|
|
751
|
+
"GetGroupTotalExpenseEetschemaExpenseAggregate",
|
|
752
|
+
"GetGroupTotalExpenseEetschemaExpenseAggregateAggregate",
|
|
753
|
+
"GetGroupTotalExpenseEetschemaExpenseAggregateAggregateSum",
|
|
754
|
+
"GetGroupTotalExpenseEetschemaExpenseEetlijstImportAggregate",
|
|
755
|
+
"GetGroupTotalExpenseEetschemaExpenseEetlijstImportAggregateAggregate",
|
|
756
|
+
"GetGroupTotalExpenseEetschemaExpenseEetlijstImportAggregateAggregateSum",
|
|
757
|
+
"GetGroupTotalExpenseImportSubscription",
|
|
758
|
+
"GetGroupTotalExpenseImportSubscriptionEetschemaExpenseEetlijstImportAggregate",
|
|
759
|
+
"GetGroupTotalExpenseImportSubscriptionEetschemaExpenseEetlijstImportAggregateAggregate",
|
|
760
|
+
"GetGroupTotalExpenseImportSubscriptionEetschemaExpenseEetlijstImportAggregateAggregateSum",
|
|
761
|
+
"GetGroupTotalExpenseSubscription",
|
|
762
|
+
"GetGroupTotalExpenseSubscriptionEetschemaExpenseAggregate",
|
|
763
|
+
"GetGroupTotalExpenseSubscriptionEetschemaExpenseAggregateAggregate",
|
|
764
|
+
"GetGroupTotalExpenseSubscriptionEetschemaExpenseAggregateAggregateSum",
|
|
765
|
+
"GetListItem",
|
|
766
|
+
"GetListItemEetschemaListByPk",
|
|
767
|
+
"GetListItemSubscription",
|
|
768
|
+
"GetListItemSubscriptionEetschemaListByPk",
|
|
769
|
+
"GetSettlement",
|
|
770
|
+
"GetSettlementEetschemaSettlementsByPk",
|
|
771
|
+
"GetSettlementSubscription",
|
|
772
|
+
"GetSettlementSubscriptionEetschemaSettlementsByPk",
|
|
636
773
|
"GetUser",
|
|
637
774
|
"GetUserEetschemaUserPrivate",
|
|
638
775
|
"GetUserInGroup",
|
|
639
776
|
"GetUserInGroupEetschemaGroupByPk",
|
|
640
777
|
"GetUserInGroupEetschemaGroupByPkUsersInGroups",
|
|
778
|
+
"GetUserInGroupSubscription",
|
|
779
|
+
"GetUserInGroupSubscriptionEetschemaGroupByPk",
|
|
780
|
+
"GetUserInGroupSubscriptionEetschemaGroupByPkUsersInGroups",
|
|
781
|
+
"GetUserSubscription",
|
|
782
|
+
"GetUserSubscriptionEetschemaUserPrivate",
|
|
641
783
|
"GraphQLClientError",
|
|
642
784
|
"GraphQLClientGraphQLError",
|
|
643
785
|
"GraphQLClientGraphQLMultiError",
|
|
@@ -646,19 +788,14 @@ __all__ = [
|
|
|
646
788
|
"GraphQlClient",
|
|
647
789
|
"GroupFields",
|
|
648
790
|
"GroupFieldsSummary",
|
|
649
|
-
"GroupTotalExpense",
|
|
650
|
-
"GroupTotalExpenseEetschemaExpenseAggregate",
|
|
651
|
-
"GroupTotalExpenseEetschemaExpenseAggregateAggregate",
|
|
652
|
-
"GroupTotalExpenseEetschemaExpenseAggregateAggregateSum",
|
|
653
|
-
"GroupTotalExpenseEetschemaExpenseEetlijstImportAggregate",
|
|
654
|
-
"GroupTotalExpenseEetschemaExpenseEetlijstImportAggregateAggregate",
|
|
655
|
-
"GroupTotalExpenseEetschemaExpenseEetlijstImportAggregateAggregateSum",
|
|
656
791
|
"Int_comparison_exp",
|
|
657
|
-
"ItemFields",
|
|
658
792
|
"JoinGroup",
|
|
659
793
|
"JoinGroupJoinGroup",
|
|
794
|
+
"ListItemFields",
|
|
660
795
|
"ListItems",
|
|
661
796
|
"ListItemsEetschemaList",
|
|
797
|
+
"ListItemsSubscription",
|
|
798
|
+
"ListItemsSubscriptionEetschemaList",
|
|
662
799
|
"RemoveAccount",
|
|
663
800
|
"RemoveAccountUpdateEetschemaUserByPk",
|
|
664
801
|
"SampleInput",
|
|
@@ -667,6 +804,8 @@ __all__ = [
|
|
|
667
804
|
"SettleUnsettledExpensesUpdateEetschemaExpenseExpenses",
|
|
668
805
|
"SettlementExpenses",
|
|
669
806
|
"SettlementExpensesEetschemaExpense",
|
|
807
|
+
"SettlementExpensesSubscription",
|
|
808
|
+
"SettlementExpensesSubscriptionEetschemaExpense",
|
|
670
809
|
"SettlementFields",
|
|
671
810
|
"SettlementFieldsAdjustmentsTotal",
|
|
672
811
|
"SettlementFieldsAdjustmentsTotalAggregate",
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from .base_model import BaseModel
|
|
2
|
+
from .fragments import AttendanceFields
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class AllAttendancesSubscription(BaseModel):
|
|
6
|
+
eetschema_event_attendees: list["AllAttendancesSubscriptionEetschemaEventAttendees"]
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class AllAttendancesSubscriptionEetschemaEventAttendees(AttendanceFields):
|
|
10
|
+
pass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
AllAttendancesSubscription.model_rebuild()
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from .base_model import BaseModel
|
|
2
|
+
from .fragments import EventFields
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class AllEventsSubscription(BaseModel):
|
|
6
|
+
eetschema_event: list["AllEventsSubscriptionEetschemaEvent"]
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class AllEventsSubscriptionEetschemaEvent(EventFields):
|
|
10
|
+
pass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
AllEventsSubscription.model_rebuild()
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from .base_model import BaseModel
|
|
2
|
+
from .fragments import ExpenseFields
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class AllExpensesSubscription(BaseModel):
|
|
6
|
+
eetschema_expense: list["AllExpensesSubscriptionEetschemaExpense"]
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class AllExpensesSubscriptionEetschemaExpense(ExpenseFields):
|
|
10
|
+
pass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
AllExpensesSubscription.model_rebuild()
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from .base_model import BaseModel
|
|
4
|
+
from .fragments import GroupFields, UserInGroupFields
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class AllGroups(BaseModel):
|
|
8
|
+
eetschema_group: list["AllGroupsEetschemaGroup"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class AllGroupsEetschemaGroup(GroupFields):
|
|
12
|
+
users_in_groups: Optional[list["AllGroupsEetschemaGroupUsersInGroups"]] = None
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class AllGroupsEetschemaGroupUsersInGroups(UserInGroupFields):
|
|
16
|
+
pass
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
AllGroups.model_rebuild()
|
|
20
|
+
AllGroupsEetschemaGroup.model_rebuild()
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from .base_model import BaseModel
|
|
4
|
+
from .fragments import GroupFields, UserInGroupFields
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class AllGroupsSubscription(BaseModel):
|
|
8
|
+
eetschema_group: list["AllGroupsSubscriptionEetschemaGroup"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class AllGroupsSubscriptionEetschemaGroup(GroupFields):
|
|
12
|
+
users_in_groups: Optional[
|
|
13
|
+
list["AllGroupsSubscriptionEetschemaGroupUsersInGroups"]
|
|
14
|
+
] = None
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class AllGroupsSubscriptionEetschemaGroupUsersInGroups(UserInGroupFields):
|
|
18
|
+
pass
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
AllGroupsSubscription.model_rebuild()
|
|
22
|
+
AllGroupsSubscriptionEetschemaGroup.model_rebuild()
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from .base_model import BaseModel
|
|
2
|
+
from .fragments import SettlementFields
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class AllSettlementsSubscription(BaseModel):
|
|
6
|
+
eetschema_settlements: list["AllSettlementsSubscriptionEetschemaSettlements"]
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class AllSettlementsSubscriptionEetschemaSettlements(SettlementFields):
|
|
10
|
+
pass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
AllSettlementsSubscription.model_rebuild()
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from .base_model import BaseModel
|
|
4
|
+
from .fragments import UserInGroupFields
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class AllUsersInGroupSubscription(BaseModel):
|
|
8
|
+
eetschema_group_by_pk: Optional["AllUsersInGroupSubscriptionEetschemaGroupByPk"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class AllUsersInGroupSubscriptionEetschemaGroupByPk(BaseModel):
|
|
12
|
+
users_in_groups: list["AllUsersInGroupSubscriptionEetschemaGroupByPkUsersInGroups"]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class AllUsersInGroupSubscriptionEetschemaGroupByPkUsersInGroups(UserInGroupFields):
|
|
16
|
+
pass
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
AllUsersInGroupSubscription.model_rebuild()
|
|
20
|
+
AllUsersInGroupSubscriptionEetschemaGroupByPk.model_rebuild()
|