Habiticalib 0.3.7rc1__tar.gz → 0.4.0rc1__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.
Files changed (79) hide show
  1. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.github/dependabot.yml +6 -0
  2. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.github/labels.yml +50 -23
  3. habiticalib-0.4.0rc1/.github/release-drafter.yml +96 -0
  4. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.github/workflows/draft.yml +9 -2
  5. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.github/workflows/labeler.yml +1 -1
  6. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.gitignore +2 -0
  7. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/PKG-INFO +1 -2
  8. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/pyproject.toml +6 -7
  9. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/src/habiticalib/__init__.py +38 -6
  10. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/src/habiticalib/const.py +1 -1
  11. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/src/habiticalib/lib.py +192 -25
  12. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/src/habiticalib/typedefs.py +316 -26
  13. habiticalib-0.4.0rc1/tests/__snapshots__/test_group.ambr +4 -0
  14. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_serialize.ambr +19 -0
  15. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_user.ambr +2 -2
  16. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/conftest.py +4 -0
  17. habiticalib-0.4.0rc1/tests/fixtures/party.json +132 -0
  18. habiticalib-0.4.0rc1/tests/test_group.py +16 -0
  19. habiticalib-0.3.7rc1/.github/release-drafter.yml +0 -99
  20. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.cruft.json +0 -0
  21. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.editorconfig +0 -0
  22. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.github/FUNDING.yml +0 -0
  23. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.github/workflows/build.yml +0 -0
  24. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.github/workflows/documentation.yml +0 -0
  25. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.pre-commit-config.yaml +0 -0
  26. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/.vscode/settings.json +0 -0
  27. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/LICENSE +0 -0
  28. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/README.md +0 -0
  29. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/docs/index.md +0 -0
  30. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/docs/reference/habiticalib.md +0 -0
  31. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/mkdocs.yml +0 -0
  32. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/src/habiticalib/exceptions.py +0 -0
  33. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/src/habiticalib/ha.py +0 -0
  34. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/src/habiticalib/helpers.py +0 -0
  35. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/src/habiticalib/py.typed +0 -0
  36. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__init__.py +0 -0
  37. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar.png +0 -0
  38. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[animated_background].png +0 -0
  39. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[default].png +0 -0
  40. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[kickstarter_backer_gear].png +0 -0
  41. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[kickstarter_pet_mount].png +0 -0
  42. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[seafoam].png +0 -0
  43. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[shinySeed].png +0 -0
  44. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[sleeping].png +0 -0
  45. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[snowball].png +0 -0
  46. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[special_0].png +0 -0
  47. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[special_1].png +0 -0
  48. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[spookySparkles].png +0 -0
  49. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[weapon_critical].png +0 -0
  50. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_from_styles[with_chair].png +0 -0
  51. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar/test_generate_avatar_to_file.png +0 -0
  52. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_avatar.ambr +0 -0
  53. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_login.ambr +0 -0
  54. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/__snapshots__/test_tasks.ambr +0 -0
  55. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/empty_data.json +0 -0
  56. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/login.json +0 -0
  57. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/task.json +0 -0
  58. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/task_order.json +0 -0
  59. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/tasks.json +0 -0
  60. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user.json +0 -0
  61. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_anonymized.json +0 -0
  62. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles.json +0 -0
  63. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_animated_background.json +0 -0
  64. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_kickstarter.json +0 -0
  65. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_kickstarter_pets.json +0 -0
  66. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_seafoam.json +0 -0
  67. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_shinySeed.json +0 -0
  68. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_sleeping.json +0 -0
  69. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_snowball.json +0 -0
  70. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_special_0.json +0 -0
  71. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_special_1.json +0 -0
  72. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_spookySparkles.json +0 -0
  73. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_weapon_critical.json +0 -0
  74. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/fixtures/user_styles_with_chair.json +0 -0
  75. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/test_avatar.py +0 -0
  76. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/test_login.py +0 -0
  77. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/test_serialize.py +0 -0
  78. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/test_tasks.py +0 -0
  79. {habiticalib-0.3.7rc1 → habiticalib-0.4.0rc1}/tests/test_user.py +0 -0
@@ -4,7 +4,13 @@ updates:
4
4
  directory: "/"
5
5
  schedule:
6
6
  interval: "weekly"
7
+ labels:
8
+ - ":recycle: dependencies"
9
+ - ":snake: python"
7
10
  - package-ecosystem: "github-actions"
8
11
  directory: "/"
9
12
  schedule:
10
13
  interval: "weekly"
14
+ labels:
15
+ - ":recycle: dependencies"
16
+ - ":clapper: github_actions"
@@ -4,63 +4,90 @@
4
4
  #
5
5
  # The repository labels will be automatically configured using this file and
6
6
  # the GitHub Action https://github.com/marketplace/actions/github-labeler.
7
- - name: breaking
7
+ - name: ':boom: breaking change'
8
+ from_name: breaking
8
9
  description: Breaking Changes
9
10
  color: bfd4f2
10
- - name: bug
11
+ - name: ':ghost: bug'
12
+ from_name: bug
11
13
  description: Something isn't working
12
14
  color: d73a4a
13
- - name: build
15
+ - name: ':building_construction: build'
16
+ from_name: build
14
17
  description: Build System and Dependencies
15
18
  color: bfdadc
16
- - name: ci
19
+ - name: ':construction_worker_woman: ci'
20
+ from_name: ci
17
21
  description: Continuous Integration
18
22
  color: 4a97d6
19
- - name: dependencies
23
+ - name: ':recycle: dependencies'
24
+ from_name: dependencies
20
25
  description: Pull requests that update a dependency file
21
26
  color: 0366d6
22
- - name: documentation
27
+ - name: ':book: documentation'
28
+ from_name: documentation
23
29
  description: Improvements or additions to documentation
24
30
  color: 0075ca
25
- - name: duplicate
31
+ - name: ':roll_eyes: duplicate'
32
+ from_name: duplicate
26
33
  description: This issue or pull request already exists
27
34
  color: cfd3d7
28
- - name: feature
35
+ - name: ':rocket: feature'
36
+ from_name: enhancement
29
37
  description: New feature or request
30
38
  color: a2eeef
31
- - name: github_actions
39
+ - name: ':clapper: github_actions'
40
+ from_name: github_actions
32
41
  description: Pull requests that update Github_actions code
33
- color: "000000"
34
- - name: good first issue
42
+ color: '000000'
43
+ - name: ':hatching_chick: good first issue'
44
+ from_name: good first issue
35
45
  description: Good for newcomers
36
46
  color: 7057ff
37
- - name: help wanted
47
+ - name: ':pray: help wanted'
48
+ from_name: help wanted
38
49
  description: Extra attention is needed
39
- color: 008672
40
- - name: invalid
50
+ color: '008672'
51
+ - name: ':no_entry_sign: invalid'
52
+ from_name: invalid
41
53
  description: This doesn't seem right
42
54
  color: e4e669
43
- - name: performance
55
+ - name: ':racing_car: performance'
56
+ from_name: performance
44
57
  description: Performance
45
- color: "016175"
46
- - name: python
58
+ color: '016175'
59
+ - name: ':snake: python'
60
+ from_name: python
47
61
  description: Pull requests that update Python code
48
62
  color: 2b67c6
49
- - name: question
63
+ - name: ':question: question'
64
+ from_name: question
50
65
  description: Further information is requested
51
66
  color: d876e3
52
- - name: code quality
67
+ - name: ':sparkles: code quality'
68
+ from_name: code quality
53
69
  description: Code quality improvements
54
70
  color: ef67c4
55
- - name: deprecation
71
+ - name: ':file_cabinet: deprecation'
72
+ from_name: deprecation
56
73
  description: Removals and Deprecations
57
74
  color: 9ae7ea
58
- - name: style
75
+ - name: ':nail_care: style'
76
+ from_name: style
59
77
  description: Style
60
78
  color: c120e5
61
- - name: testing
79
+ - name: ':test_tube: testing'
80
+ from_name: testing
62
81
  description: Pull request that adds tests
63
82
  color: b1fc6f
64
- - name: wontfix
83
+ - name: ':woman_shrugging: wontfix'
84
+ from_name: wontfix
65
85
  description: This will not be worked on
66
86
  color: ffffff
87
+ - name: ':arrow_up: bump'
88
+ description: Bump the version
89
+ color: 3C5D34
90
+ - name: ':sparkles: enhancement'
91
+ color: CBF8DA
92
+ - name: 'skip-changelog'
93
+ color: D3D3D3
@@ -0,0 +1,96 @@
1
+ name-template: 'v$RESOLVED_VERSION'
2
+ tag-template: 'v$RESOLVED_VERSION'
3
+
4
+
5
+ categories:
6
+ - title: '💥 Breaking changes'
7
+ labels:
8
+ - ':boom: breaking change'
9
+ - title: '🚀 New Features'
10
+ labels:
11
+ - ':rocket: feature'
12
+ - title: '👻 Bug Fixes'
13
+ labels:
14
+ - ':ghost: bug'
15
+ - title: '⏳ Deprecations'
16
+ labels:
17
+ - ':file_cabinet: deprecation'
18
+ - title: '📃 Documentation'
19
+ labels:
20
+ - ':book: documentation'
21
+ - title: '🧰 Maintenance'
22
+ labels:
23
+ - ':building_construction: build'
24
+ - ':construction_worker_woman: ci'
25
+ - ':clapper: github_actions'
26
+ collapse-after: 5
27
+ - title: '🔬 Other updates'
28
+ labels:
29
+ - ':nail_care: style'
30
+ - ':test_tube: testing'
31
+ - ':racing_car: performance'
32
+ - ':sparkles: code quality'
33
+ - ':sparkles: enhancement'
34
+ - title: '🧩 Dependency Updates'
35
+ labels:
36
+ - ':recycle: dependencies'
37
+ collapse-after: 5
38
+ exclude-labels:
39
+ - ':arrow_up: bump'
40
+ - 'skip-changelog'
41
+
42
+ autolabeler:
43
+ - label: ':rocket: feature'
44
+ title:
45
+ - '/adds/i'
46
+ - '/add method/i'
47
+ - label: ':ghost: bug'
48
+ title:
49
+ - '/fix/i'
50
+ - label: ':sparkles: code quality'
51
+ title:
52
+ - '/Refactor/i'
53
+ - label: ':test_tube: testing'
54
+ files:
55
+ - 'test_*'
56
+ - 'conftest.py'
57
+ - label: ':book: documentation'
58
+ title:
59
+ - '/docs:/i'
60
+ files:
61
+ - '*.md'
62
+ - 'mkdocs.yml'
63
+ - label: ':construction_worker_woman: ci'
64
+ files:
65
+ - '.github/*'
66
+ - label: ':recycle: dependencies'
67
+ title:
68
+ - '/bump/i'
69
+ - label: ':file_cabinet: deprecation'
70
+ title:
71
+ - '/Deprecate/i'
72
+
73
+ change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
74
+ change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
75
+ exclude-contributors:
76
+ - 'dependabot'
77
+
78
+ version-resolver:
79
+ major:
80
+ labels:
81
+ - ':boom: breaking change'
82
+ minor:
83
+ labels:
84
+ - ':rocket: feature'
85
+ default: patch
86
+
87
+ template: |
88
+ ## What's Changed
89
+
90
+ $CHANGES
91
+
92
+ Contributors: $CONTRIBUTORS
93
+
94
+ replacers:
95
+ - search: '/(?:and )?@dependabot(?:\[bot\])?,?/g'
96
+ replace: ''
@@ -4,16 +4,23 @@ on:
4
4
  push:
5
5
  branches:
6
6
  - main
7
+ # pull_request event is required only for autolabeler
8
+ pull_request:
9
+ types: [opened, reopened, synchronize]
10
+ pull_request_target:
11
+ types: [opened, reopened, synchronize]
12
+
13
+ permissions:
14
+ contents: read
7
15
 
8
16
  jobs:
9
17
  update-draft:
10
18
  runs-on: ubuntu-latest
11
19
  permissions:
12
20
  contents: write
21
+ pull-requests: write
13
22
  steps:
14
23
  # Drafts your next Release notes as Pull Requests are merged into "main"
15
24
  - uses: release-drafter/release-drafter@v6
16
- with:
17
- disable-autolabeler: false
18
25
  env:
19
26
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -16,6 +16,6 @@ jobs:
16
16
  uses: actions/checkout@v4
17
17
 
18
18
  - name: Run Labeler
19
- uses: crazy-max/ghaction-github-labeler@v5.2.0
19
+ uses: crazy-max/ghaction-github-labeler@v5.3.0
20
20
  with:
21
21
  skip-delete: true
@@ -111,3 +111,5 @@ ENV/
111
111
 
112
112
  # Avatar test image
113
113
  avatar.png
114
+
115
+ *.http
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Habiticalib
3
- Version: 0.3.7rc1
3
+ Version: 0.4.0rc1
4
4
  Summary: Asynchronous Python client library for the Habitica API
5
5
  Project-URL: Documentation, https://tr4nt0r.github.io/habiticalib/
6
6
  Project-URL: Source, https://github.com/tr4nt0r/habiticalib
@@ -12,7 +12,6 @@ Classifier: Operating System :: OS Independent
12
12
  Classifier: Programming Language :: Python :: 3 :: Only
13
13
  Requires-Python: >=3.12
14
14
  Requires-Dist: aiohttp~=3.9
15
- Requires-Dist: habitipy~=0.3.3
16
15
  Requires-Dist: mashumaro~=3.13
17
16
  Requires-Dist: orjson~=3.10
18
17
  Requires-Dist: pillow~=11.0
@@ -75,16 +75,16 @@ path = "src/habiticalib/const.py"
75
75
  [tool.hatch.envs.default]
76
76
  python = "3.12"
77
77
  dependencies = [
78
- "aiohttp==3.11.11",
78
+ "aiohttp==3.11.12",
79
79
  "mashumaro==3.15",
80
80
  "orjson==3.10.15",
81
81
  "Pillow==11.1.0",
82
- "mypy==1.14.1",
83
- "ruff==0.9.4",
82
+ "mypy==1.15.0",
83
+ "ruff==0.9.6",
84
84
  "pytest==8.3.4",
85
85
  "pytest-cov==6.0.0",
86
- "mkdocs-material==9.6.1",
87
- "mkdocstrings[python]==0.27.0",
86
+ "mkdocs-material==9.6.3",
87
+ "mkdocstrings[python]==0.28.0",
88
88
  "pytest-asyncio==0.25.3",
89
89
  "aioresponses==0.7.8",
90
90
  "pre-commit==4.1.0",
@@ -147,8 +147,7 @@ dependencies = [
147
147
  "aiohttp~=3.9",
148
148
  "mashumaro~=3.13",
149
149
  "orjson~=3.10",
150
- "Pillow~=11.0",
151
- "habitipy~=0.3.3"
150
+ "Pillow~=11.0"
152
151
  ]
153
152
 
154
153
  [project.urls]
@@ -46,14 +46,22 @@ from .typedefs import (
46
46
  GearItems,
47
47
  GearItemsAvatar,
48
48
  GearType,
49
+ GlobalActivity,
50
+ GlobalActivityWebhook,
51
+ GroupChatReceived,
52
+ GroupChatReceivedOptions,
53
+ GroupChatReceivedWebhook,
49
54
  GroupTask,
50
55
  HabiticaCastSkillResponse,
51
56
  HabiticaClass,
52
57
  HabiticaClassSystemResponse,
53
58
  HabiticaContentResponse,
59
+ HabiticaDeleteWebhookResponse,
54
60
  HabiticaErrorResponse,
55
61
  HabiticaGroupMembersResponse,
62
+ HabiticaGroupsResponse,
56
63
  HabiticaLoginResponse,
64
+ HabiticaMessageResponse,
57
65
  HabiticaQuestResponse,
58
66
  HabiticaResponse,
59
67
  HabiticaScoreResponse,
@@ -67,6 +75,7 @@ from .typedefs import (
67
75
  HabiticaUserAnonymizedResponse,
68
76
  HabiticaUserExport,
69
77
  HabiticaUserResponse,
78
+ HabiticaWebhookResponse,
70
79
  HairPreferences,
71
80
  HatchingPotionEntry,
72
81
  HistoryUser,
@@ -98,6 +107,9 @@ from .typedefs import (
98
107
  PurchasedUser,
99
108
  PushDevicesUser,
100
109
  PushNotificationsPreferences,
110
+ QuestActivity,
111
+ QuestActivityOptions,
112
+ QuestActivityWebhook,
101
113
  QuestBoss,
102
114
  QuestBossRage,
103
115
  QuestCollect,
@@ -123,6 +135,9 @@ from .typedefs import (
123
135
  SuppressModalsPreferences,
124
136
  TagsUser,
125
137
  Task,
138
+ TaskActivity,
139
+ TaskActivityOptions,
140
+ TaskActivityWebhook,
126
141
  TaskData,
127
142
  TaskFilter,
128
143
  TaskPriority,
@@ -135,12 +150,13 @@ from .typedefs import (
135
150
  TrainingStats,
136
151
  TutorialFlags,
137
152
  UltimateGearSetsAchievments,
153
+ UserActivity,
154
+ UserActivityOptions,
155
+ UserActivityWebhook,
138
156
  UserAnonymizedData,
139
157
  UserData,
140
158
  UserTasks,
141
- WebhooksOptions,
142
- WebhooksType,
143
- WebhooksUser,
159
+ WebhookType,
144
160
  )
145
161
 
146
162
  __all__ = [
@@ -185,6 +201,11 @@ __all__ = [
185
201
  "GearItems",
186
202
  "GearItemsAvatar",
187
203
  "GearType",
204
+ "GlobalActivity",
205
+ "GlobalActivityWebhook",
206
+ "GroupChatReceived",
207
+ "GroupChatReceivedOptions",
208
+ "GroupChatReceivedWebhook",
188
209
  "GroupTask",
189
210
  "Habitica",
190
211
  "HabiticaCastSkillResponse",
@@ -194,13 +215,16 @@ __all__ = [
194
215
  "HabiticaClassSystemResponse",
195
216
  "HabiticaContentResponse",
196
217
  "HabiticaContentResponse",
218
+ "HabiticaDeleteWebhookResponse",
197
219
  "HabiticaErrorResponse",
198
220
  "HabiticaErrorResponse",
199
221
  "HabiticaException",
200
222
  "HabiticaGroupMembersResponse",
201
223
  "HabiticaGroupMembersResponse",
224
+ "HabiticaGroupsResponse",
202
225
  "HabiticaLoginResponse",
203
226
  "HabiticaLoginResponse",
227
+ "HabiticaMessageResponse",
204
228
  "HabiticaQuestResponse",
205
229
  "HabiticaQuestResponse",
206
230
  "HabiticaResponse",
@@ -227,6 +251,7 @@ __all__ = [
227
251
  "HabiticaUserExport",
228
252
  "HabiticaUserResponse",
229
253
  "HabiticaUserResponse",
254
+ "HabiticaWebhookResponse",
230
255
  "HairPreferences",
231
256
  "HatchingPotionEntry",
232
257
  "HistoryUser",
@@ -261,6 +286,9 @@ __all__ = [
261
286
  "PurchasedUser",
262
287
  "PushDevicesUser",
263
288
  "PushNotificationsPreferences",
289
+ "QuestActivity",
290
+ "QuestActivityOptions",
291
+ "QuestActivityWebhook",
264
292
  "QuestBoss",
265
293
  "QuestBossRage",
266
294
  "QuestCollect",
@@ -291,6 +319,9 @@ __all__ = [
291
319
  "TagsUser",
292
320
  "TagsUser",
293
321
  "Task",
322
+ "TaskActivity",
323
+ "TaskActivityOptions",
324
+ "TaskActivityWebhook",
294
325
  "TaskData",
295
326
  "TaskData",
296
327
  "TaskFilter",
@@ -305,15 +336,16 @@ __all__ = [
305
336
  "TrainingStats",
306
337
  "TutorialFlags",
307
338
  "UltimateGearSetsAchievments",
339
+ "UserActivity",
340
+ "UserActivityOptions",
341
+ "UserActivityWebhook",
308
342
  "UserAnonymizedData",
309
343
  "UserAnonymizedData",
310
344
  "UserData",
311
345
  "UserData",
312
346
  "UserTasks",
313
347
  "UserTasks",
314
- "WebhooksOptions",
315
- "WebhooksType",
316
- "WebhooksUser",
348
+ "WebhookType",
317
349
  "__version__",
318
350
  "deserialize_task",
319
351
  "extract_avatar",
@@ -1,6 +1,6 @@
1
1
  """Constants for Habiticalib."""
2
2
 
3
- __version__ = "0.3.7rc1"
3
+ __version__ = "0.4.0rc1"
4
4
 
5
5
  DEFAULT_URL = "https://habitica.com/"
6
6
  ASSETS_URL = "https://habitica-assets.s3.amazonaws.com/mobileApp/images/"