mirror of https://github.com/ghostfolio/ghostfolio
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							163 lines
						
					
					
						
							7.5 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							163 lines
						
					
					
						
							7.5 KiB
						
					
					
				| import type { Access, AccessFilter, AccessSettings } from './access.interface'; | |
| import type { AccountBalance } from './account-balance.interface'; | |
| import type { AdminData } from './admin-data.interface'; | |
| import type { AdminJobs } from './admin-jobs.interface'; | |
| import type { AdminMarketDataDetails } from './admin-market-data-details.interface'; | |
| import type { | |
|   AdminMarketData, | |
|   AdminMarketDataItem | |
| } from './admin-market-data.interface'; | |
| import type { AdminUsers } from './admin-users.interface'; | |
| import type { AssetClassSelectorOption } from './asset-class-selector-option.interface'; | |
| import type { AssetProfileIdentifier } from './asset-profile-identifier.interface'; | |
| import type { BenchmarkProperty } from './benchmark-property.interface'; | |
| import type { Benchmark } from './benchmark.interface'; | |
| import type { Coupon } from './coupon.interface'; | |
| import type { DataProviderInfo } from './data-provider-info.interface'; | |
| import type { EnhancedSymbolProfile } from './enhanced-symbol-profile.interface'; | |
| import type { FilterGroup } from './filter-group.interface'; | |
| import type { Filter } from './filter.interface'; | |
| import type { FireWealth } from './fire-wealth.interface'; | |
| import type { HistoricalDataItem } from './historical-data-item.interface'; | |
| import type { HoldingWithParents } from './holding-with-parents.interface'; | |
| import type { Holding } from './holding.interface'; | |
| import type { InfoItem } from './info-item.interface'; | |
| import type { InvestmentItem } from './investment-item.interface'; | |
| import type { LineChartItem } from './line-chart-item.interface'; | |
| import type { LookupItem } from './lookup-item.interface'; | |
| import type { MarketData } from './market-data.interface'; | |
| import type { PortfolioChart } from './portfolio-chart.interface'; | |
| import type { PortfolioDetails } from './portfolio-details.interface'; | |
| import type { PortfolioPerformance } from './portfolio-performance.interface'; | |
| import type { PortfolioPosition } from './portfolio-position.interface'; | |
| import type { PortfolioReportRule } from './portfolio-report-rule.interface'; | |
| import type { PortfolioSummary } from './portfolio-summary.interface'; | |
| import type { Position } from './position.interface'; | |
| import type { Product } from './product'; | |
| import type { AccessTokenResponse } from './responses/access-token-response.interface'; | |
| import type { AccountBalancesResponse } from './responses/account-balances-response.interface'; | |
| import type { AccountsResponse } from './responses/accounts-response.interface'; | |
| import type { ActivitiesResponse } from './responses/activities-response.interface'; | |
| import type { ActivityResponse } from './responses/activity-response.interface'; | |
| import type { AiPromptResponse } from './responses/ai-prompt-response.interface'; | |
| import type { ApiKeyResponse } from './responses/api-key-response.interface'; | |
| import type { AssetResponse } from './responses/asset-response.interface'; | |
| import type { BenchmarkMarketDataDetailsResponse } from './responses/benchmark-market-data-details-response.interface'; | |
| import type { BenchmarkResponse } from './responses/benchmark-response.interface'; | |
| import type { CreateStripeCheckoutSessionResponse } from './responses/create-stripe-checkout-session-response.interface'; | |
| import type { DataEnhancerHealthResponse } from './responses/data-enhancer-health-response.interface'; | |
| import type { DataProviderGhostfolioAssetProfileResponse } from './responses/data-provider-ghostfolio-asset-profile-response.interface'; | |
| import type { DataProviderGhostfolioStatusResponse } from './responses/data-provider-ghostfolio-status-response.interface'; | |
| import type { DataProviderHealthResponse } from './responses/data-provider-health-response.interface'; | |
| import type { DividendsResponse } from './responses/dividends-response.interface'; | |
| import type { ResponseError } from './responses/errors.interface'; | |
| import type { ExportResponse } from './responses/export-response.interface'; | |
| import type { HistoricalResponse } from './responses/historical-response.interface'; | |
| import type { ImportResponse } from './responses/import-response.interface'; | |
| import type { InfoResponse } from './responses/info-response.interface'; | |
| import type { LookupResponse } from './responses/lookup-response.interface'; | |
| import type { MarketDataDetailsResponse } from './responses/market-data-details-response.interface'; | |
| import type { MarketDataOfMarketsResponse } from './responses/market-data-of-markets-response.interface'; | |
| import type { OAuthResponse } from './responses/oauth-response.interface'; | |
| import type { PortfolioDividendsResponse } from './responses/portfolio-dividends-response.interface'; | |
| import { PortfolioHoldingResponse } from './responses/portfolio-holding-response.interface'; | |
| import type { PortfolioHoldingsResponse } from './responses/portfolio-holdings-response.interface'; | |
| import type { PortfolioInvestmentsResponse } from './responses/portfolio-investments.interface'; | |
| import type { PortfolioPerformanceResponse } from './responses/portfolio-performance-response.interface'; | |
| import type { PortfolioReportResponse } from './responses/portfolio-report.interface'; | |
| import type { PublicPortfolioResponse } from './responses/public-portfolio-response.interface'; | |
| import type { QuotesResponse } from './responses/quotes-response.interface'; | |
| import type { WatchlistResponse } from './responses/watchlist-response.interface'; | |
| import type { ScraperConfiguration } from './scraper-configuration.interface'; | |
| import type { Statistics } from './statistics.interface'; | |
| import type { SubscriptionOffer } from './subscription-offer.interface'; | |
| import type { SymbolMetrics } from './symbol-metrics.interface'; | |
| import type { SystemMessage } from './system-message.interface'; | |
| import type { TabConfiguration } from './tab-configuration.interface'; | |
| import type { ToggleOption } from './toggle-option.interface'; | |
| import type { UserSettings } from './user-settings.interface'; | |
| import type { User } from './user.interface'; | |
| import type { XRayRulesSettings } from './x-ray-rules-settings.interface'; | |
| 
 | |
| export { | |
|   Access, | |
|   AccessFilter, | |
|   AccessSettings, | |
|   AccessTokenResponse, | |
|   AccountBalance, | |
|   AccountBalancesResponse, | |
|   AccountsResponse, | |
|   ActivitiesResponse, | |
|   ActivityResponse, | |
|   AdminData, | |
|   AdminJobs, | |
|   AdminMarketData, | |
|   AdminMarketDataDetails, | |
|   AdminMarketDataItem, | |
|   AdminUsers, | |
|   AiPromptResponse, | |
|   ApiKeyResponse, | |
|   AssetClassSelectorOption, | |
|   AssetProfileIdentifier, | |
|   AssetResponse, | |
|   Benchmark, | |
|   BenchmarkMarketDataDetailsResponse, | |
|   BenchmarkProperty, | |
|   BenchmarkResponse, | |
|   Coupon, | |
|   CreateStripeCheckoutSessionResponse, | |
|   DataEnhancerHealthResponse, | |
|   DataProviderGhostfolioAssetProfileResponse, | |
|   DataProviderGhostfolioStatusResponse, | |
|   DataProviderHealthResponse, | |
|   DataProviderInfo, | |
|   DividendsResponse, | |
|   EnhancedSymbolProfile, | |
|   ExportResponse, | |
|   Filter, | |
|   FilterGroup, | |
|   FireWealth, | |
|   HistoricalDataItem, | |
|   HistoricalResponse, | |
|   Holding, | |
|   HoldingWithParents, | |
|   ImportResponse, | |
|   InfoItem, | |
|   InfoResponse, | |
|   InvestmentItem, | |
|   LineChartItem, | |
|   LookupItem, | |
|   LookupResponse, | |
|   MarketData, | |
|   MarketDataDetailsResponse, | |
|   MarketDataOfMarketsResponse, | |
|   OAuthResponse, | |
|   PortfolioChart, | |
|   PortfolioDetails, | |
|   PortfolioDividendsResponse, | |
|   PortfolioHoldingResponse, | |
|   PortfolioHoldingsResponse, | |
|   PortfolioInvestmentsResponse, | |
|   PortfolioPerformance, | |
|   PortfolioPerformanceResponse, | |
|   PortfolioPosition, | |
|   PortfolioReportResponse, | |
|   PortfolioReportRule, | |
|   PortfolioSummary, | |
|   Position, | |
|   Product, | |
|   PublicPortfolioResponse, | |
|   QuotesResponse, | |
|   ResponseError, | |
|   ScraperConfiguration, | |
|   Statistics, | |
|   SubscriptionOffer, | |
|   SystemMessage, | |
|   SymbolMetrics, | |
|   TabConfiguration, | |
|   ToggleOption, | |
|   User, | |
|   UserSettings, | |
|   WatchlistResponse, | |
|   XRayRulesSettings | |
| };
 | |
| 
 |