Skip to content

Commit

Permalink
Remove base64 encoded logo image fields from GQL queries
Browse files Browse the repository at this point in the history
  • Loading branch information
hammem committed Apr 20, 2024
1 parent d240da0 commit 471587f
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions monarchmoney/monarchmoney.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ async def get_accounts(self) -> Dict[str, Any]:
holdingsCount
manualInvestmentsTrackingMethod
order
icon
logoUrl
type {
name
Expand All @@ -192,15 +191,13 @@ async def get_accounts(self) -> Dict[str, Any]:
plaidInstitutionId
name
status
logo
__typename
}
__typename
}
institution {
id
name
logo
primaryColor
url
__typename
Expand Down Expand Up @@ -613,7 +610,6 @@ async def get_account_history(self, account_id: int) -> Dict[str, Any]:
holdingsCount
manualInvestmentsTrackingMethod
order
icon
logoUrl
type {
name
Expand All @@ -636,15 +632,13 @@ async def get_account_history(self, account_id: int) -> Dict[str, Any]:
plaidInstitutionId
name
status
logo
__typename
}
__typename
}
institution {
id
name
logo
primaryColor
url
__typename
Expand Down Expand Up @@ -717,7 +711,6 @@ async def get_account_history(self, account_id: int) -> Dict[str, Any]:
category {
id
name
icon
group {
id
type
Expand Down Expand Up @@ -805,7 +798,6 @@ async def get_institutions(self) -> Dict[str, Any]:
institution {
id
name
logo
url
__typename
}
Expand Down Expand Up @@ -834,7 +826,6 @@ async def get_institutions(self) -> Dict[str, Any]:
updateRequired
institution {
hasIssuesReported
logo
status
balanceStatus
transactionsStatus
Expand Down Expand Up @@ -978,7 +969,6 @@ async def get_budgets(
categories {
id
name
icon
order
budgetVariability
rolloverPeriod {
Expand All @@ -995,7 +985,6 @@ async def get_budgets(
goals @include(if: $useLegacyGoals) {
id
name
icon
completedAt
targetDate
__typename
Expand Down Expand Up @@ -1227,7 +1216,6 @@ async def get_transactions(
category {
id
name
icon
__typename
}
merchant {
Expand Down Expand Up @@ -1424,7 +1412,6 @@ async def get_transaction_categories(self) -> Dict[str, Any]:
id
order
name
icon
systemCategory
isSystemCategory
isDisabled
Expand Down Expand Up @@ -1565,7 +1552,6 @@ async def create_transaction_category(
id
order
name
icon
systemCategory
systemCategoryDisplayName
budgetVariability
Expand Down Expand Up @@ -1832,7 +1818,6 @@ async def get_transaction_details(
}
category {
id
icon
name
__typename
}
Expand All @@ -1854,7 +1839,6 @@ async def get_transaction_details(
fragment TransactionDrawerAccountSectionFields on Account {
id
displayName
icon
logoUrl
id
mask
Expand Down Expand Up @@ -1891,7 +1875,6 @@ async def get_transaction_splits(self, transaction_id: str) -> Dict[str, Any]:
category {
id
name
icon
__typename
}
merchant {
Expand All @@ -1908,7 +1891,6 @@ async def get_transaction_splits(self, transaction_id: str) -> Dict[str, Any]:
}
category {
id
icon
name
__typename
}
Expand Down Expand Up @@ -1963,7 +1945,6 @@ async def update_transaction_splits(
}
category {
id
icon
name
__typename
}
Expand Down Expand Up @@ -2020,7 +2001,6 @@ async def get_cashflow(
category {
id
name
icon
group {
id
type
Expand Down Expand Up @@ -2456,13 +2436,11 @@ async def get_recurring_transactions(
category {
id
name
icon
__typename
}
account {
id
displayName
icon
logoUrl
__typename
}
Expand Down

0 comments on commit 471587f

Please sign in to comment.