@oneuptime/common 11.5.2 → 11.5.4
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/Dashboard.ts +3 -3
- package/Server/Infrastructure/Postgres/SchemaMigrations/1783937343400-MigrationName.ts +1123 -380
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +1 -1
- package/Server/Services/DashboardService.ts +11 -2
- package/Server/Utils/Execute.ts +33 -13
- package/Server/Utils/Telemetry/LlmSpan.ts +38 -64
- package/Tests/Server/API/DashboardMasterPasswordAPI.test.ts +225 -0
- package/Types/Telemetry/LlmConventions.ts +182 -0
- package/UI/Components/Detail/PlaceholderText.tsx +1 -14
- package/build/dist/Models/DatabaseModels/Dashboard.js +3 -3
- package/build/dist/Models/DatabaseModels/Dashboard.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783937343400-MigrationName.js +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783937343400-MigrationName.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +1 -1
- package/build/dist/Server/Services/DashboardService.js +8 -2
- package/build/dist/Server/Services/DashboardService.js.map +1 -1
- package/build/dist/Server/Utils/Execute.js +21 -11
- package/build/dist/Server/Utils/Execute.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/LlmSpan.js +14 -54
- package/build/dist/Server/Utils/Telemetry/LlmSpan.js.map +1 -1
- package/build/dist/Types/Telemetry/LlmConventions.js +149 -0
- package/build/dist/Types/Telemetry/LlmConventions.js.map +1 -0
- package/build/dist/UI/Components/Detail/PlaceholderText.js +1 -4
- package/build/dist/UI/Components/Detail/PlaceholderText.js.map +1 -1
- package/package.json +1 -1
|
@@ -790,7 +790,7 @@ export default class Dashboard extends BaseModel {
|
|
|
790
790
|
type: TableColumnType.Boolean,
|
|
791
791
|
title: "Enable Master Password",
|
|
792
792
|
description:
|
|
793
|
-
"Require visitors to enter a master password before viewing a
|
|
793
|
+
"Require visitors to enter a master password before viewing a public dashboard.",
|
|
794
794
|
defaultValue: false,
|
|
795
795
|
})
|
|
796
796
|
@Column({
|
|
@@ -824,7 +824,7 @@ export default class Dashboard extends BaseModel {
|
|
|
824
824
|
@TableColumn({
|
|
825
825
|
title: "Master Password",
|
|
826
826
|
description:
|
|
827
|
-
"Password required to unlock a
|
|
827
|
+
"Password required to unlock a public dashboard. This value is stored as a secure hash.",
|
|
828
828
|
hashed: true,
|
|
829
829
|
type: TableColumnType.HashedString,
|
|
830
830
|
placeholder: "Enter a new master password",
|
|
@@ -865,7 +865,7 @@ export default class Dashboard extends BaseModel {
|
|
|
865
865
|
type: TableColumnType.VeryLongText,
|
|
866
866
|
title: "IP Whitelist",
|
|
867
867
|
description:
|
|
868
|
-
"IP Whitelist for this
|
|
868
|
+
"IP Whitelist for this dashboard. One IP per line. Only used when the dashboard is public.",
|
|
869
869
|
})
|
|
870
870
|
@Column({
|
|
871
871
|
type: ColumnType.VeryLongText,
|