diff --git a/server/CHANGELOG.md b/server/CHANGELOG.md new file mode 100644 index 000000000..d7c75e62a --- /dev/null +++ b/server/CHANGELOG.md @@ -0,0 +1,28 @@ + +# Change Log +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [Unreleased] - yyyy-mm-dd + +Here we write upgrading notes for brands. It's a team effort to make them as +straightforward as possible. + +### Added +- Dynamic filter for resources list. +- Dynamic search for resources list. +- Dynamic resources to switch between active and inactive items. +- Add virtual computed attributes to sale invoice list and individual. +- This CHANGELOG file to hopefully serve as an evolving example of a + standardized open source project CHANGELOG. +- Remove subscription free trial. + +### Changed + - Redesigne organization tenant metadata table to depend on table on system + database instead of tenant database. + - + +### Fixed + \ No newline at end of file diff --git a/server/src/interfaces/Setup.ts b/server/src/interfaces/Setup.ts index e7ea23ff1..561348b1c 100644 --- a/server/src/interfaces/Setup.ts +++ b/server/src/interfaces/Setup.ts @@ -10,7 +10,7 @@ export interface IOrganizationSetupDTO{ } export interface IOrganizationBuildDTO { - organizationName: string; + name: string; baseCurrency: string, timezone: string; fiscalYear: string; @@ -18,7 +18,7 @@ export interface IOrganizationBuildDTO { } export interface IOrganizationUpdateDTO { - organizationName: string; + name: string; baseCurrency: string, timezone: string; fiscalYear: string;