@oneuptime/common 8.0.5496 → 8.0.5514
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Models/DatabaseModels/EnterpriseLicense.ts +104 -0
- package/Models/DatabaseModels/GlobalConfig.ts +71 -0
- package/Models/DatabaseModels/Index.ts +2 -0
- package/Server/API/EnterpriseLicenseAPI.ts +102 -0
- package/Server/API/GlobalConfigAPI.ts +168 -0
- package/Server/EnvironmentConfig.ts +7 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1762181014879-MigrationName.ts +69 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +2 -0
- package/Server/Services/EnterpriseLicenseService.ts +10 -0
- package/Server/Services/Index.ts +2 -0
- package/UI/Components/EditionLabel/EditionLabel.tsx +563 -0
- package/UI/Components/Footer/Footer.tsx +18 -2
- package/UI/Components/Link/Link.tsx +7 -4
- package/UI/Components/Modal/Modal.tsx +1 -1
- package/UI/Components/Modal/ModalFooter.tsx +2 -2
- package/UI/Config.ts +2 -0
- package/build/dist/Models/DatabaseModels/EnterpriseLicense.js +128 -0
- package/build/dist/Models/DatabaseModels/EnterpriseLicense.js.map +1 -0
- package/build/dist/Models/DatabaseModels/GlobalConfig.js +78 -0
- package/build/dist/Models/DatabaseModels/GlobalConfig.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Index.js +2 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Server/API/EnterpriseLicenseAPI.js +71 -0
- package/build/dist/Server/API/EnterpriseLicenseAPI.js.map +1 -0
- package/build/dist/Server/API/GlobalConfigAPI.js +129 -1
- package/build/dist/Server/API/GlobalConfigAPI.js.map +1 -1
- package/build/dist/Server/EnvironmentConfig.js +2 -0
- package/build/dist/Server/EnvironmentConfig.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1762181014879-MigrationName.js +30 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1762181014879-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +2 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Services/EnterpriseLicenseService.js +9 -0
- package/build/dist/Server/Services/EnterpriseLicenseService.js.map +1 -0
- package/build/dist/Server/Services/Index.js +2 -0
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/UI/Components/EditionLabel/EditionLabel.js +302 -0
- package/build/dist/UI/Components/EditionLabel/EditionLabel.js.map +1 -0
- package/build/dist/UI/Components/Footer/Footer.js +6 -0
- package/build/dist/UI/Components/Footer/Footer.js.map +1 -1
- package/build/dist/UI/Components/Link/Link.js +2 -1
- package/build/dist/UI/Components/Link/Link.js.map +1 -1
- package/build/dist/UI/Components/Modal/ModalFooter.js +2 -1
- package/build/dist/UI/Components/Modal/ModalFooter.js.map +1 -1
- package/build/dist/UI/Config.js +1 -0
- package/build/dist/UI/Config.js.map +1 -1
- package/package.json +1 -1