Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: extended config type to include app name, version, and version strings #1252

Merged
merged 3 commits into from
Oct 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
style: formatting
  • Loading branch information
amcgee committed Sep 22, 2022
commit 782ddf7175b89a879be69b5db3ab2a2cb11419ef
4 changes: 2 additions & 2 deletions services/config/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ interface SystemInfo {
export interface Config {
baseUrl: string
apiVersion: number
appName?: string,
appVersion?: Version,
appName?: string
appVersion?: Version
serverVersion?: Version
systemInfo?: SystemInfo
}