mirror of
https://github.com/home-assistant/core.git
synced 2025-07-04 20:07:10 +00:00
Bump habiticalib to v0.3.7 (#137993)
* bump habiticalib to 0.3.6 * bump to v0.3.7
This commit is contained in:
parent
a62619894a
commit
dc07f72fc2
@ -11,6 +11,7 @@ from typing import Any
|
|||||||
|
|
||||||
from aiohttp import ClientError
|
from aiohttp import ClientError
|
||||||
from habiticalib import (
|
from habiticalib import (
|
||||||
|
Avatar,
|
||||||
ContentData,
|
ContentData,
|
||||||
Habitica,
|
Habitica,
|
||||||
HabiticaException,
|
HabiticaException,
|
||||||
@ -19,7 +20,6 @@ from habiticalib import (
|
|||||||
TaskFilter,
|
TaskFilter,
|
||||||
TooManyRequestsError,
|
TooManyRequestsError,
|
||||||
UserData,
|
UserData,
|
||||||
UserStyles,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.config_entries import ConfigEntry
|
||||||
@ -165,12 +165,10 @@ class HabiticaDataUpdateCoordinator(DataUpdateCoordinator[HabiticaData]):
|
|||||||
else:
|
else:
|
||||||
await self.async_request_refresh()
|
await self.async_request_refresh()
|
||||||
|
|
||||||
async def generate_avatar(self, user_styles: UserStyles) -> bytes:
|
async def generate_avatar(self, avatar: Avatar) -> bytes:
|
||||||
"""Generate Avatar."""
|
"""Generate Avatar."""
|
||||||
|
|
||||||
avatar = BytesIO()
|
png = BytesIO()
|
||||||
await self.habitica.generate_avatar(
|
await self.habitica.generate_avatar(fp=png, avatar=avatar, fmt="PNG")
|
||||||
fp=avatar, user_styles=user_styles, fmt="PNG"
|
|
||||||
)
|
|
||||||
|
|
||||||
return avatar.getvalue()
|
return png.getvalue()
|
||||||
|
@ -23,5 +23,5 @@ async def async_get_config_entry_diagnostics(
|
|||||||
CONF_URL: config_entry.data[CONF_URL],
|
CONF_URL: config_entry.data[CONF_URL],
|
||||||
CONF_API_USER: config_entry.data[CONF_API_USER],
|
CONF_API_USER: config_entry.data[CONF_API_USER],
|
||||||
},
|
},
|
||||||
"habitica_data": habitica_data.to_dict()["data"],
|
"habitica_data": habitica_data.to_dict(omit_none=False)["data"],
|
||||||
}
|
}
|
||||||
|
@ -2,10 +2,9 @@
|
|||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from dataclasses import asdict
|
|
||||||
from enum import StrEnum
|
from enum import StrEnum
|
||||||
|
|
||||||
from habiticalib import UserStyles
|
from habiticalib import Avatar, extract_avatar
|
||||||
|
|
||||||
from homeassistant.components.image import ImageEntity, ImageEntityDescription
|
from homeassistant.components.image import ImageEntity, ImageEntityDescription
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
@ -44,7 +43,7 @@ class HabiticaImage(HabiticaBase, ImageEntity):
|
|||||||
translation_key=HabiticaImageEntity.AVATAR,
|
translation_key=HabiticaImageEntity.AVATAR,
|
||||||
)
|
)
|
||||||
_attr_content_type = "image/png"
|
_attr_content_type = "image/png"
|
||||||
_current_appearance: UserStyles | None = None
|
_current_appearance: Avatar | None = None
|
||||||
_cache: bytes | None = None
|
_cache: bytes | None = None
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
@ -59,7 +58,7 @@ class HabiticaImage(HabiticaBase, ImageEntity):
|
|||||||
|
|
||||||
def _handle_coordinator_update(self) -> None:
|
def _handle_coordinator_update(self) -> None:
|
||||||
"""Check if equipped gear and other things have changed since last avatar image generation."""
|
"""Check if equipped gear and other things have changed since last avatar image generation."""
|
||||||
new_appearance = UserStyles.from_dict(asdict(self.coordinator.data.user))
|
new_appearance = extract_avatar(self.coordinator.data.user)
|
||||||
|
|
||||||
if self._current_appearance != new_appearance:
|
if self._current_appearance != new_appearance:
|
||||||
self._current_appearance = new_appearance
|
self._current_appearance = new_appearance
|
||||||
|
@ -6,5 +6,5 @@
|
|||||||
"documentation": "https://www.home-assistant.io/integrations/habitica",
|
"documentation": "https://www.home-assistant.io/integrations/habitica",
|
||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
"loggers": ["habiticalib"],
|
"loggers": ["habiticalib"],
|
||||||
"requirements": ["habiticalib==0.3.5"]
|
"requirements": ["habiticalib==0.3.7"]
|
||||||
}
|
}
|
||||||
|
@ -510,7 +510,9 @@ def async_setup_services(hass: HomeAssistant) -> None: # noqa: C901
|
|||||||
or (task.notes and keyword in task.notes.lower())
|
or (task.notes and keyword in task.notes.lower())
|
||||||
or any(keyword in item.text.lower() for item in task.checklist)
|
or any(keyword in item.text.lower() for item in task.checklist)
|
||||||
]
|
]
|
||||||
result: dict[str, Any] = {"tasks": [task.to_dict() for task in response]}
|
result: dict[str, Any] = {
|
||||||
|
"tasks": [task.to_dict(omit_none=False) for task in response]
|
||||||
|
}
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
2
requirements_all.txt
generated
2
requirements_all.txt
generated
@ -1100,7 +1100,7 @@ ha-iotawattpy==0.1.2
|
|||||||
ha-philipsjs==3.2.2
|
ha-philipsjs==3.2.2
|
||||||
|
|
||||||
# homeassistant.components.habitica
|
# homeassistant.components.habitica
|
||||||
habiticalib==0.3.5
|
habiticalib==0.3.7
|
||||||
|
|
||||||
# homeassistant.components.bluetooth
|
# homeassistant.components.bluetooth
|
||||||
habluetooth==3.21.1
|
habluetooth==3.21.1
|
||||||
|
2
requirements_test_all.txt
generated
2
requirements_test_all.txt
generated
@ -941,7 +941,7 @@ ha-iotawattpy==0.1.2
|
|||||||
ha-philipsjs==3.2.2
|
ha-philipsjs==3.2.2
|
||||||
|
|
||||||
# homeassistant.components.habitica
|
# homeassistant.components.habitica
|
||||||
habiticalib==0.3.5
|
habiticalib==0.3.7
|
||||||
|
|
||||||
# homeassistant.components.bluetooth
|
# homeassistant.components.bluetooth
|
||||||
habluetooth==3.21.1
|
habluetooth==3.21.1
|
||||||
|
@ -143,6 +143,25 @@
|
|||||||
"trinkets": 0
|
"trinkets": 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"webhooks": [
|
||||||
|
{
|
||||||
|
"id": "43a67e37-1bae-4b11-8d3d-6c4b1b480231",
|
||||||
|
"type": "taskActivity",
|
||||||
|
"label": "My Webhook",
|
||||||
|
"url": "https://some-webhook-url.com",
|
||||||
|
"enabled": true,
|
||||||
|
"failures": 0,
|
||||||
|
"options": {
|
||||||
|
"created": false,
|
||||||
|
"updated": false,
|
||||||
|
"deleted": false,
|
||||||
|
"checklistScored": false,
|
||||||
|
"scored": true
|
||||||
|
},
|
||||||
|
"createdAt": "2025-02-08T22:06:08.894Z",
|
||||||
|
"updatedAt": "2025-02-08T22:06:17.195Z"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,48 +8,31 @@
|
|||||||
'habitica_data': dict({
|
'habitica_data': dict({
|
||||||
'tasks': list([
|
'tasks': list([
|
||||||
dict({
|
dict({
|
||||||
'alias': None,
|
|
||||||
'attribute': 'str',
|
'attribute': 'str',
|
||||||
'byHabitica': False,
|
'byHabitica': False,
|
||||||
'challenge': dict({
|
'challenge': dict({
|
||||||
'broken': None,
|
|
||||||
'id': None,
|
|
||||||
'shortName': None,
|
|
||||||
'taskId': None,
|
|
||||||
'winner': None,
|
|
||||||
}),
|
}),
|
||||||
'checklist': list([
|
'checklist': list([
|
||||||
]),
|
]),
|
||||||
'collapseChecklist': False,
|
'collapseChecklist': False,
|
||||||
'completed': None,
|
|
||||||
'counterDown': 0,
|
'counterDown': 0,
|
||||||
'counterUp': 0,
|
'counterUp': 0,
|
||||||
'createdAt': '2024-10-10T15:57:14.287000+00:00',
|
'createdAt': '2024-10-10T15:57:14.287000+00:00',
|
||||||
'date': None,
|
|
||||||
'daysOfMonth': list([
|
'daysOfMonth': list([
|
||||||
]),
|
]),
|
||||||
'down': False,
|
'down': False,
|
||||||
'everyX': None,
|
|
||||||
'frequency': 'daily',
|
'frequency': 'daily',
|
||||||
'group': dict({
|
'group': dict({
|
||||||
'assignedDate': None,
|
|
||||||
'assignedUsers': list([
|
'assignedUsers': list([
|
||||||
]),
|
]),
|
||||||
'assignedUsersDetail': dict({
|
'assignedUsersDetail': dict({
|
||||||
}),
|
}),
|
||||||
'assigningUsername': None,
|
|
||||||
'completedBy': dict({
|
'completedBy': dict({
|
||||||
'date': None,
|
|
||||||
'userId': None,
|
|
||||||
}),
|
}),
|
||||||
'id': None,
|
|
||||||
'managerNotes': None,
|
|
||||||
'taskId': None,
|
|
||||||
}),
|
}),
|
||||||
'history': list([
|
'history': list([
|
||||||
]),
|
]),
|
||||||
'id': '30923acd-3b4c-486d-9ef3-c8f57cf56049',
|
'id': '30923acd-3b4c-486d-9ef3-c8f57cf56049',
|
||||||
'isDue': None,
|
|
||||||
'nextDue': list([
|
'nextDue': list([
|
||||||
]),
|
]),
|
||||||
'notes': 'task notes',
|
'notes': 'task notes',
|
||||||
@ -65,8 +48,6 @@
|
|||||||
'th': False,
|
'th': False,
|
||||||
'w': True,
|
'w': True,
|
||||||
}),
|
}),
|
||||||
'startDate': None,
|
|
||||||
'streak': None,
|
|
||||||
'tags': list([
|
'tags': list([
|
||||||
]),
|
]),
|
||||||
'text': 'task text',
|
'text': 'task text',
|
||||||
@ -77,51 +58,30 @@
|
|||||||
'value': 0.0,
|
'value': 0.0,
|
||||||
'weeksOfMonth': list([
|
'weeksOfMonth': list([
|
||||||
]),
|
]),
|
||||||
'yesterDaily': None,
|
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'alias': None,
|
|
||||||
'attribute': 'str',
|
'attribute': 'str',
|
||||||
'byHabitica': True,
|
'byHabitica': True,
|
||||||
'challenge': dict({
|
'challenge': dict({
|
||||||
'broken': None,
|
|
||||||
'id': None,
|
|
||||||
'shortName': None,
|
|
||||||
'taskId': None,
|
|
||||||
'winner': None,
|
|
||||||
}),
|
}),
|
||||||
'checklist': list([
|
'checklist': list([
|
||||||
]),
|
]),
|
||||||
'collapseChecklist': False,
|
'collapseChecklist': False,
|
||||||
'completed': False,
|
'completed': False,
|
||||||
'counterDown': None,
|
|
||||||
'counterUp': None,
|
|
||||||
'createdAt': '2024-10-10T15:57:14.290000+00:00',
|
'createdAt': '2024-10-10T15:57:14.290000+00:00',
|
||||||
'date': None,
|
|
||||||
'daysOfMonth': list([
|
'daysOfMonth': list([
|
||||||
]),
|
]),
|
||||||
'down': None,
|
|
||||||
'everyX': None,
|
|
||||||
'frequency': None,
|
|
||||||
'group': dict({
|
'group': dict({
|
||||||
'assignedDate': None,
|
|
||||||
'assignedUsers': list([
|
'assignedUsers': list([
|
||||||
]),
|
]),
|
||||||
'assignedUsersDetail': dict({
|
'assignedUsersDetail': dict({
|
||||||
}),
|
}),
|
||||||
'assigningUsername': None,
|
|
||||||
'completedBy': dict({
|
'completedBy': dict({
|
||||||
'date': None,
|
|
||||||
'userId': None,
|
|
||||||
}),
|
}),
|
||||||
'id': None,
|
|
||||||
'managerNotes': None,
|
|
||||||
'taskId': None,
|
|
||||||
}),
|
}),
|
||||||
'history': list([
|
'history': list([
|
||||||
]),
|
]),
|
||||||
'id': 'e6e06dc6-c887-4b86-b175-b99cc2e20fdf',
|
'id': 'e6e06dc6-c887-4b86-b175-b99cc2e20fdf',
|
||||||
'isDue': None,
|
|
||||||
'nextDue': list([
|
'nextDue': list([
|
||||||
]),
|
]),
|
||||||
'notes': 'task notes',
|
'notes': 'task notes',
|
||||||
@ -137,63 +97,38 @@
|
|||||||
'th': False,
|
'th': False,
|
||||||
'w': True,
|
'w': True,
|
||||||
}),
|
}),
|
||||||
'startDate': None,
|
|
||||||
'streak': None,
|
|
||||||
'tags': list([
|
'tags': list([
|
||||||
]),
|
]),
|
||||||
'text': 'task text',
|
'text': 'task text',
|
||||||
'type': 'todo',
|
'type': 'todo',
|
||||||
'up': None,
|
|
||||||
'updatedAt': '2024-11-27T19:34:29.001000+00:00',
|
'updatedAt': '2024-11-27T19:34:29.001000+00:00',
|
||||||
'userId': 'ffce870c-3ff3-4fa4-bad1-87612e52b8e7',
|
'userId': 'ffce870c-3ff3-4fa4-bad1-87612e52b8e7',
|
||||||
'value': -6.418582324043852,
|
'value': -6.418582324043852,
|
||||||
'weeksOfMonth': list([
|
'weeksOfMonth': list([
|
||||||
]),
|
]),
|
||||||
'yesterDaily': None,
|
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'alias': None,
|
|
||||||
'attribute': 'str',
|
'attribute': 'str',
|
||||||
'byHabitica': False,
|
'byHabitica': False,
|
||||||
'challenge': dict({
|
'challenge': dict({
|
||||||
'broken': None,
|
|
||||||
'id': None,
|
|
||||||
'shortName': None,
|
|
||||||
'taskId': None,
|
|
||||||
'winner': None,
|
|
||||||
}),
|
}),
|
||||||
'checklist': list([
|
'checklist': list([
|
||||||
]),
|
]),
|
||||||
'collapseChecklist': False,
|
'collapseChecklist': False,
|
||||||
'completed': None,
|
|
||||||
'counterDown': None,
|
|
||||||
'counterUp': None,
|
|
||||||
'createdAt': '2024-10-10T15:57:14.290000+00:00',
|
'createdAt': '2024-10-10T15:57:14.290000+00:00',
|
||||||
'date': None,
|
|
||||||
'daysOfMonth': list([
|
'daysOfMonth': list([
|
||||||
]),
|
]),
|
||||||
'down': None,
|
|
||||||
'everyX': None,
|
|
||||||
'frequency': None,
|
|
||||||
'group': dict({
|
'group': dict({
|
||||||
'assignedDate': None,
|
|
||||||
'assignedUsers': list([
|
'assignedUsers': list([
|
||||||
]),
|
]),
|
||||||
'assignedUsersDetail': dict({
|
'assignedUsersDetail': dict({
|
||||||
}),
|
}),
|
||||||
'assigningUsername': None,
|
|
||||||
'completedBy': dict({
|
'completedBy': dict({
|
||||||
'date': None,
|
|
||||||
'userId': None,
|
|
||||||
}),
|
}),
|
||||||
'id': None,
|
|
||||||
'managerNotes': None,
|
|
||||||
'taskId': None,
|
|
||||||
}),
|
}),
|
||||||
'history': list([
|
'history': list([
|
||||||
]),
|
]),
|
||||||
'id': '2fbf11a5-ab1e-4fb7-97f0-dfb5c45c96a9',
|
'id': '2fbf11a5-ab1e-4fb7-97f0-dfb5c45c96a9',
|
||||||
'isDue': None,
|
|
||||||
'nextDue': list([
|
'nextDue': list([
|
||||||
]),
|
]),
|
||||||
'notes': 'task notes',
|
'notes': 'task notes',
|
||||||
@ -209,106 +144,73 @@
|
|||||||
'th': False,
|
'th': False,
|
||||||
'w': True,
|
'w': True,
|
||||||
}),
|
}),
|
||||||
'startDate': None,
|
|
||||||
'streak': None,
|
|
||||||
'tags': list([
|
'tags': list([
|
||||||
]),
|
]),
|
||||||
'text': 'task text',
|
'text': 'task text',
|
||||||
'type': 'reward',
|
'type': 'reward',
|
||||||
'up': None,
|
|
||||||
'updatedAt': '2024-10-10T15:57:14.290000+00:00',
|
'updatedAt': '2024-10-10T15:57:14.290000+00:00',
|
||||||
'userId': 'ffce870c-3ff3-4fa4-bad1-87612e52b8e7',
|
'userId': 'ffce870c-3ff3-4fa4-bad1-87612e52b8e7',
|
||||||
'value': 10.0,
|
'value': 10.0,
|
||||||
'weeksOfMonth': list([
|
'weeksOfMonth': list([
|
||||||
]),
|
]),
|
||||||
'yesterDaily': None,
|
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'alias': None,
|
|
||||||
'attribute': 'str',
|
'attribute': 'str',
|
||||||
'byHabitica': False,
|
'byHabitica': False,
|
||||||
'challenge': dict({
|
'challenge': dict({
|
||||||
'broken': None,
|
|
||||||
'id': None,
|
|
||||||
'shortName': None,
|
|
||||||
'taskId': None,
|
|
||||||
'winner': None,
|
|
||||||
}),
|
}),
|
||||||
'checklist': list([
|
'checklist': list([
|
||||||
]),
|
]),
|
||||||
'collapseChecklist': False,
|
'collapseChecklist': False,
|
||||||
'completed': False,
|
'completed': False,
|
||||||
'counterDown': None,
|
|
||||||
'counterUp': None,
|
|
||||||
'createdAt': '2024-10-10T15:57:14.304000+00:00',
|
'createdAt': '2024-10-10T15:57:14.304000+00:00',
|
||||||
'date': None,
|
|
||||||
'daysOfMonth': list([
|
'daysOfMonth': list([
|
||||||
]),
|
]),
|
||||||
'down': None,
|
|
||||||
'everyX': 1,
|
'everyX': 1,
|
||||||
'frequency': 'weekly',
|
'frequency': 'weekly',
|
||||||
'group': dict({
|
'group': dict({
|
||||||
'assignedDate': None,
|
|
||||||
'assignedUsers': list([
|
'assignedUsers': list([
|
||||||
]),
|
]),
|
||||||
'assignedUsersDetail': dict({
|
'assignedUsersDetail': dict({
|
||||||
}),
|
}),
|
||||||
'assigningUsername': None,
|
|
||||||
'completedBy': dict({
|
'completedBy': dict({
|
||||||
'date': None,
|
|
||||||
'userId': None,
|
|
||||||
}),
|
}),
|
||||||
'id': None,
|
|
||||||
'managerNotes': None,
|
|
||||||
'taskId': None,
|
|
||||||
}),
|
}),
|
||||||
'history': list([
|
'history': list([
|
||||||
dict({
|
dict({
|
||||||
'completed': True,
|
'completed': True,
|
||||||
'date': '2024-10-30T19:37:01.817000+00:00',
|
'date': '2024-10-30T19:37:01.817000+00:00',
|
||||||
'isDue': True,
|
'isDue': True,
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 1.0,
|
'value': 1.0,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': True,
|
'completed': True,
|
||||||
'date': '2024-10-31T23:33:14.890000+00:00',
|
'date': '2024-10-31T23:33:14.890000+00:00',
|
||||||
'isDue': True,
|
'isDue': True,
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 1.9747,
|
'value': 1.9747,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': False,
|
'completed': False,
|
||||||
'date': '2024-11-05T18:25:04.730000+00:00',
|
'date': '2024-11-05T18:25:04.730000+00:00',
|
||||||
'isDue': True,
|
'isDue': True,
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 1.024043774264157,
|
'value': 1.024043774264157,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': False,
|
'completed': False,
|
||||||
'date': '2024-11-21T15:09:07.573000+00:00',
|
'date': '2024-11-21T15:09:07.573000+00:00',
|
||||||
'isDue': True,
|
'isDue': True,
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 0.049944135963563174,
|
'value': 0.049944135963563174,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': False,
|
'completed': False,
|
||||||
'date': '2024-11-22T00:41:21.228000+00:00',
|
'date': '2024-11-22T00:41:21.228000+00:00',
|
||||||
'isDue': True,
|
'isDue': True,
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': -0.9487768368544092,
|
'value': -0.9487768368544092,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': False,
|
'completed': False,
|
||||||
'date': '2024-11-27T19:34:28.973000+00:00',
|
'date': '2024-11-27T19:34:28.973000+00:00',
|
||||||
'isDue': True,
|
'isDue': True,
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': -1.973387732005249,
|
'value': -1.973387732005249,
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
@ -341,7 +243,6 @@
|
|||||||
]),
|
]),
|
||||||
'text': 'task text',
|
'text': 'task text',
|
||||||
'type': 'daily',
|
'type': 'daily',
|
||||||
'up': None,
|
|
||||||
'updatedAt': '2024-11-27T19:34:29.001000+00:00',
|
'updatedAt': '2024-11-27T19:34:29.001000+00:00',
|
||||||
'userId': 'ffce870c-3ff3-4fa4-bad1-87612e52b8e7',
|
'userId': 'ffce870c-3ff3-4fa4-bad1-87612e52b8e7',
|
||||||
'value': -1.973387732005249,
|
'value': -1.973387732005249,
|
||||||
@ -352,60 +253,23 @@
|
|||||||
]),
|
]),
|
||||||
'user': dict({
|
'user': dict({
|
||||||
'achievements': dict({
|
'achievements': dict({
|
||||||
'backToBasics': None,
|
|
||||||
'boneCollector': None,
|
|
||||||
'challenges': list([
|
'challenges': list([
|
||||||
]),
|
]),
|
||||||
'completedTask': True,
|
'completedTask': True,
|
||||||
'createdTask': True,
|
'createdTask': True,
|
||||||
'dustDevil': None,
|
|
||||||
'fedPet': None,
|
|
||||||
'goodAsGold': None,
|
|
||||||
'hatchedPet': None,
|
|
||||||
'joinedChallenge': None,
|
|
||||||
'joinedGuild': None,
|
|
||||||
'partyUp': None,
|
|
||||||
'perfect': 2,
|
'perfect': 2,
|
||||||
'primedForPainting': None,
|
|
||||||
'purchasedEquipment': None,
|
|
||||||
'quests': dict({
|
'quests': dict({
|
||||||
'atom1': None,
|
|
||||||
'atom2': None,
|
|
||||||
'atom3': None,
|
|
||||||
'bewilder': None,
|
|
||||||
'burnout': None,
|
|
||||||
'dilatory': None,
|
|
||||||
'dilatory_derby': None,
|
|
||||||
'dysheartener': None,
|
|
||||||
'evilsanta': None,
|
|
||||||
'evilsanta2': None,
|
|
||||||
'gryphon': None,
|
|
||||||
'harpy': None,
|
|
||||||
'stressbeast': None,
|
|
||||||
'vice1': None,
|
|
||||||
'vice3': None,
|
|
||||||
}),
|
}),
|
||||||
'seeingRed': None,
|
|
||||||
'shadyCustomer': None,
|
|
||||||
'streak': 0,
|
'streak': 0,
|
||||||
'tickledPink': None,
|
|
||||||
'ultimateGearSets': dict({
|
'ultimateGearSets': dict({
|
||||||
'healer': False,
|
'healer': False,
|
||||||
'rogue': False,
|
'rogue': False,
|
||||||
'warrior': False,
|
'warrior': False,
|
||||||
'wizard': False,
|
'wizard': False,
|
||||||
}),
|
}),
|
||||||
'violetsAreBlue': None,
|
|
||||||
}),
|
}),
|
||||||
'auth': dict({
|
'auth': dict({
|
||||||
'apple': None,
|
|
||||||
'facebook': None,
|
|
||||||
'google': None,
|
|
||||||
'local': dict({
|
'local': dict({
|
||||||
'email': None,
|
|
||||||
'has_password': None,
|
|
||||||
'lowerCaseUsername': None,
|
|
||||||
'username': None,
|
|
||||||
}),
|
}),
|
||||||
'timestamps': dict({
|
'timestamps': dict({
|
||||||
'created': '2024-10-10T15:57:01.106000+00:00',
|
'created': '2024-10-10T15:57:01.106000+00:00',
|
||||||
@ -414,17 +278,11 @@
|
|||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
'backer': dict({
|
'backer': dict({
|
||||||
'npc': None,
|
|
||||||
'tier': None,
|
|
||||||
'tokensApplied': None,
|
|
||||||
}),
|
}),
|
||||||
'balance': 0.0,
|
'balance': 0.0,
|
||||||
'challenges': list([
|
'challenges': list([
|
||||||
]),
|
]),
|
||||||
'contributor': dict({
|
'contributor': dict({
|
||||||
'contributions': None,
|
|
||||||
'level': None,
|
|
||||||
'text': None,
|
|
||||||
}),
|
}),
|
||||||
'extra': dict({
|
'extra': dict({
|
||||||
}),
|
}),
|
||||||
@ -433,23 +291,17 @@
|
|||||||
'armoireEnabled': True,
|
'armoireEnabled': True,
|
||||||
'armoireOpened': False,
|
'armoireOpened': False,
|
||||||
'cardReceived': False,
|
'cardReceived': False,
|
||||||
'chatRevoked': None,
|
|
||||||
'chatShadowMuted': None,
|
|
||||||
'classSelected': False,
|
'classSelected': False,
|
||||||
'communityGuidelinesAccepted': True,
|
'communityGuidelinesAccepted': True,
|
||||||
'cronCount': 6,
|
'cronCount': 6,
|
||||||
'customizationsNotification': True,
|
'customizationsNotification': True,
|
||||||
'dropsEnabled': False,
|
'dropsEnabled': False,
|
||||||
'itemsEnabled': True,
|
'itemsEnabled': True,
|
||||||
'lastFreeRebirth': None,
|
|
||||||
'lastNewStuffRead': '',
|
'lastNewStuffRead': '',
|
||||||
'lastWeeklyRecap': '2024-10-10T15:57:01.106000+00:00',
|
'lastWeeklyRecap': '2024-10-10T15:57:01.106000+00:00',
|
||||||
'lastWeeklyRecapDiscriminator': None,
|
|
||||||
'levelDrops': dict({
|
'levelDrops': dict({
|
||||||
}),
|
}),
|
||||||
'mathUpdates': None,
|
|
||||||
'newStuff': False,
|
'newStuff': False,
|
||||||
'onboardingEmailsPhase': None,
|
|
||||||
'rebirthEnabled': False,
|
'rebirthEnabled': False,
|
||||||
'recaptureEmailsPhase': 0,
|
'recaptureEmailsPhase': 0,
|
||||||
'rewrite': True,
|
'rewrite': True,
|
||||||
@ -508,101 +360,53 @@
|
|||||||
'history': dict({
|
'history': dict({
|
||||||
'exp': list([
|
'exp': list([
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-10-30T19:37:01.970000+00:00',
|
'date': '2024-10-30T19:37:01.970000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 24.0,
|
'value': 24.0,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-10-31T23:33:14.972000+00:00',
|
'date': '2024-10-31T23:33:14.972000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 48.0,
|
'value': 48.0,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-11-05T18:25:04.681000+00:00',
|
'date': '2024-11-05T18:25:04.681000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 66.0,
|
'value': 66.0,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-11-21T15:09:07.501000+00:00',
|
'date': '2024-11-21T15:09:07.501000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 66.0,
|
'value': 66.0,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-11-22T00:41:21.137000+00:00',
|
'date': '2024-11-22T00:41:21.137000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 66.0,
|
'value': 66.0,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-11-27T19:34:28.887000+00:00',
|
'date': '2024-11-27T19:34:28.887000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': 66.0,
|
'value': 66.0,
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
'todos': list([
|
'todos': list([
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-10-30T19:37:01.970000+00:00',
|
'date': '2024-10-30T19:37:01.970000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': -5.0,
|
'value': -5.0,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-10-31T23:33:14.972000+00:00',
|
'date': '2024-10-31T23:33:14.972000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': -10.129783523135325,
|
'value': -10.129783523135325,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-11-05T18:25:04.681000+00:00',
|
'date': '2024-11-05T18:25:04.681000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': -16.396221153338182,
|
'value': -16.396221153338182,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-11-21T15:09:07.501000+00:00',
|
'date': '2024-11-21T15:09:07.501000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': -22.8326979965846,
|
'value': -22.8326979965846,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-11-22T00:41:21.137000+00:00',
|
'date': '2024-11-22T00:41:21.137000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': -29.448636229365235,
|
'value': -29.448636229365235,
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'completed': None,
|
|
||||||
'date': '2024-11-27T19:34:28.887000+00:00',
|
'date': '2024-11-27T19:34:28.887000+00:00',
|
||||||
'isDue': None,
|
|
||||||
'scoredDown': None,
|
|
||||||
'scoredUp': None,
|
|
||||||
'value': -36.25425987861077,
|
'value': -36.25425987861077,
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
@ -643,23 +447,13 @@
|
|||||||
'gear': dict({
|
'gear': dict({
|
||||||
'costume': dict({
|
'costume': dict({
|
||||||
'armor': 'armor_base_0',
|
'armor': 'armor_base_0',
|
||||||
'back': None,
|
|
||||||
'body': None,
|
|
||||||
'eyewear': None,
|
|
||||||
'head': 'head_base_0',
|
'head': 'head_base_0',
|
||||||
'headAccessory': None,
|
|
||||||
'shield': 'shield_base_0',
|
'shield': 'shield_base_0',
|
||||||
'weapon': None,
|
|
||||||
}),
|
}),
|
||||||
'equipped': dict({
|
'equipped': dict({
|
||||||
'armor': 'armor_base_0',
|
'armor': 'armor_base_0',
|
||||||
'back': None,
|
|
||||||
'body': None,
|
|
||||||
'eyewear': None,
|
|
||||||
'head': 'head_base_0',
|
'head': 'head_base_0',
|
||||||
'headAccessory': None,
|
|
||||||
'shield': 'shield_base_0',
|
'shield': 'shield_base_0',
|
||||||
'weapon': None,
|
|
||||||
}),
|
}),
|
||||||
'owned': dict({
|
'owned': dict({
|
||||||
'armor_special_bardRobes': True,
|
'armor_special_bardRobes': True,
|
||||||
@ -736,7 +530,6 @@
|
|||||||
}),
|
}),
|
||||||
'lastCron': '2024-11-27T19:34:28.887000+00:00',
|
'lastCron': '2024-11-27T19:34:28.887000+00:00',
|
||||||
'loginIncentives': 6,
|
'loginIncentives': 6,
|
||||||
'needsCron': None,
|
|
||||||
'newMessages': dict({
|
'newMessages': dict({
|
||||||
}),
|
}),
|
||||||
'notifications': list([
|
'notifications': list([
|
||||||
@ -747,7 +540,6 @@
|
|||||||
'orderAscending': 'ascending',
|
'orderAscending': 'ascending',
|
||||||
'quest': dict({
|
'quest': dict({
|
||||||
'RSVPNeeded': True,
|
'RSVPNeeded': True,
|
||||||
'completed': None,
|
|
||||||
'key': 'dustbunnies',
|
'key': 'dustbunnies',
|
||||||
'progress': dict({
|
'progress': dict({
|
||||||
'collect': dict({
|
'collect': dict({
|
||||||
@ -759,37 +551,31 @@
|
|||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
'permissions': dict({
|
'permissions': dict({
|
||||||
'challengeAdmin': None,
|
|
||||||
'coupons': None,
|
|
||||||
'fullAccess': None,
|
|
||||||
'moderator': None,
|
|
||||||
'news': None,
|
|
||||||
'userSupport': None,
|
|
||||||
}),
|
}),
|
||||||
'pinnedItems': list([
|
'pinnedItems': list([
|
||||||
dict({
|
dict({
|
||||||
'Type': 'marketGear',
|
|
||||||
'path': 'gear.flat.weapon_warrior_0',
|
'path': 'gear.flat.weapon_warrior_0',
|
||||||
|
'type': 'marketGear',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'Type': 'marketGear',
|
|
||||||
'path': 'gear.flat.armor_warrior_1',
|
'path': 'gear.flat.armor_warrior_1',
|
||||||
|
'type': 'marketGear',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'Type': 'marketGear',
|
|
||||||
'path': 'gear.flat.shield_warrior_1',
|
'path': 'gear.flat.shield_warrior_1',
|
||||||
|
'type': 'marketGear',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'Type': 'marketGear',
|
|
||||||
'path': 'gear.flat.head_warrior_1',
|
'path': 'gear.flat.head_warrior_1',
|
||||||
|
'type': 'marketGear',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'Type': 'potion',
|
|
||||||
'path': 'potion',
|
'path': 'potion',
|
||||||
|
'type': 'potion',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'Type': 'armoire',
|
|
||||||
'path': 'armoire',
|
'path': 'armoire',
|
||||||
|
'type': 'armoire',
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
'pinnedItemsOrder': list([
|
'pinnedItemsOrder': list([
|
||||||
@ -798,7 +584,6 @@
|
|||||||
'advancedCollapsed': False,
|
'advancedCollapsed': False,
|
||||||
'allocationMode': 'flat',
|
'allocationMode': 'flat',
|
||||||
'autoEquip': True,
|
'autoEquip': True,
|
||||||
'automaticAllocation': None,
|
|
||||||
'background': 'violet',
|
'background': 'violet',
|
||||||
'chair': 'none',
|
'chair': 'none',
|
||||||
'costume': False,
|
'costume': False,
|
||||||
@ -888,9 +673,6 @@
|
|||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
'profile': dict({
|
'profile': dict({
|
||||||
'blurb': None,
|
|
||||||
'imageUrl': None,
|
|
||||||
'name': None,
|
|
||||||
}),
|
}),
|
||||||
'purchased': dict({
|
'purchased': dict({
|
||||||
'ads': False,
|
'ads': False,
|
||||||
@ -904,21 +686,11 @@
|
|||||||
}),
|
}),
|
||||||
'hair': dict({
|
'hair': dict({
|
||||||
}),
|
}),
|
||||||
'mobileChat': None,
|
|
||||||
'plan': dict({
|
'plan': dict({
|
||||||
'consecutive': dict({
|
'consecutive': dict({
|
||||||
'count': None,
|
|
||||||
'gemCapExtra': None,
|
|
||||||
'offset': None,
|
|
||||||
'trinkets': None,
|
|
||||||
}),
|
}),
|
||||||
'dateUpdated': None,
|
|
||||||
'extraMonths': None,
|
|
||||||
'gemsBought': None,
|
|
||||||
'mysteryItems': list([
|
'mysteryItems': list([
|
||||||
]),
|
]),
|
||||||
'perkMonthCount': None,
|
|
||||||
'quantity': None,
|
|
||||||
}),
|
}),
|
||||||
'shirt': dict({
|
'shirt': dict({
|
||||||
}),
|
}),
|
||||||
@ -928,81 +700,73 @@
|
|||||||
}),
|
}),
|
||||||
'pushDevices': list([
|
'pushDevices': list([
|
||||||
]),
|
]),
|
||||||
'secret': None,
|
|
||||||
'stats': dict({
|
'stats': dict({
|
||||||
'Class': 'warrior',
|
|
||||||
'Int': 0,
|
|
||||||
'Str': 0,
|
|
||||||
'buffs': dict({
|
'buffs': dict({
|
||||||
'Int': 0,
|
|
||||||
'Str': 0,
|
|
||||||
'con': 0,
|
'con': 0,
|
||||||
|
'int': 0,
|
||||||
'per': 0,
|
'per': 0,
|
||||||
'seafoam': False,
|
'seafoam': False,
|
||||||
'shinySeed': False,
|
'shinySeed': False,
|
||||||
'snowball': False,
|
'snowball': False,
|
||||||
'spookySparkles': False,
|
'spookySparkles': False,
|
||||||
'stealth': 0,
|
'stealth': 0,
|
||||||
|
'str': 0,
|
||||||
'streaks': False,
|
'streaks': False,
|
||||||
}),
|
}),
|
||||||
|
'class': 'warrior',
|
||||||
'con': 0,
|
'con': 0,
|
||||||
'exp': 41,
|
'exp': 41,
|
||||||
'gp': 11.100978952781748,
|
'gp': 11.100978952781748,
|
||||||
'hp': 25.40000000000002,
|
'hp': 25.40000000000002,
|
||||||
|
'int': 0,
|
||||||
'lvl': 2,
|
'lvl': 2,
|
||||||
'maxHealth': 50,
|
'maxHealth': 50,
|
||||||
'maxMP': 32,
|
'maxMP': 32,
|
||||||
'mp': 32.0,
|
'mp': 32.0,
|
||||||
'per': 0,
|
'per': 0,
|
||||||
'points': 2,
|
'points': 2,
|
||||||
|
'str': 0,
|
||||||
'toNextLevel': 50,
|
'toNextLevel': 50,
|
||||||
'training': dict({
|
'training': dict({
|
||||||
'Int': 0,
|
|
||||||
'Str': 0.0,
|
|
||||||
'con': 0,
|
'con': 0,
|
||||||
|
'int': 0,
|
||||||
'per': 0,
|
'per': 0,
|
||||||
|
'str': 0.0,
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
'tags': list([
|
'tags': list([
|
||||||
dict({
|
dict({
|
||||||
'challenge': True,
|
'challenge': True,
|
||||||
'group': None,
|
|
||||||
'id': 'c1a35186-9895-4ac0-9cd7-49e7bb875695',
|
'id': 'c1a35186-9895-4ac0-9cd7-49e7bb875695',
|
||||||
'name': 'tag',
|
'name': 'tag',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'challenge': True,
|
'challenge': True,
|
||||||
'group': None,
|
|
||||||
'id': '53d1deb8-ed2b-4f94-bbfc-955e9e92aa98',
|
'id': '53d1deb8-ed2b-4f94-bbfc-955e9e92aa98',
|
||||||
'name': 'tag',
|
'name': 'tag',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'challenge': True,
|
'challenge': True,
|
||||||
'group': None,
|
|
||||||
'id': '29bf6a99-536f-446b-838f-a81d41e1ed4d',
|
'id': '29bf6a99-536f-446b-838f-a81d41e1ed4d',
|
||||||
'name': 'tag',
|
'name': 'tag',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'challenge': True,
|
'challenge': True,
|
||||||
'group': None,
|
|
||||||
'id': '1b1297e7-4fd8-460a-b148-e92d7bcfa9a5',
|
'id': '1b1297e7-4fd8-460a-b148-e92d7bcfa9a5',
|
||||||
'name': 'tag',
|
'name': 'tag',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'challenge': True,
|
'challenge': True,
|
||||||
'group': None,
|
|
||||||
'id': '05e6cf40-48ea-415a-9b8b-e2ecad258ef6',
|
'id': '05e6cf40-48ea-415a-9b8b-e2ecad258ef6',
|
||||||
'name': 'tag',
|
'name': 'tag',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'challenge': True,
|
'challenge': True,
|
||||||
'group': None,
|
|
||||||
'id': 'fe53f179-59d8-4c28-9bf7-b9068ab552a4',
|
'id': 'fe53f179-59d8-4c28-9bf7-b9068ab552a4',
|
||||||
'name': 'tag',
|
'name': 'tag',
|
||||||
}),
|
}),
|
||||||
dict({
|
dict({
|
||||||
'challenge': True,
|
'challenge': True,
|
||||||
'group': None,
|
|
||||||
'id': 'c44e9e8c-4bff-42df-98d5-1a1a7b69eada',
|
'id': 'c44e9e8c-4bff-42df-98d5-1a1a7b69eada',
|
||||||
'name': 'tag',
|
'name': 'tag',
|
||||||
}),
|
}),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user