@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.
Files changed (25) hide show
  1. package/Models/DatabaseModels/Dashboard.ts +3 -3
  2. package/Server/Infrastructure/Postgres/SchemaMigrations/1783937343400-MigrationName.ts +1123 -380
  3. package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +1 -1
  4. package/Server/Services/DashboardService.ts +11 -2
  5. package/Server/Utils/Execute.ts +33 -13
  6. package/Server/Utils/Telemetry/LlmSpan.ts +38 -64
  7. package/Tests/Server/API/DashboardMasterPasswordAPI.test.ts +225 -0
  8. package/Types/Telemetry/LlmConventions.ts +182 -0
  9. package/UI/Components/Detail/PlaceholderText.tsx +1 -14
  10. package/build/dist/Models/DatabaseModels/Dashboard.js +3 -3
  11. package/build/dist/Models/DatabaseModels/Dashboard.js.map +1 -1
  12. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783937343400-MigrationName.js +1 -1
  13. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1783937343400-MigrationName.js.map +1 -1
  14. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +1 -1
  15. package/build/dist/Server/Services/DashboardService.js +8 -2
  16. package/build/dist/Server/Services/DashboardService.js.map +1 -1
  17. package/build/dist/Server/Utils/Execute.js +21 -11
  18. package/build/dist/Server/Utils/Execute.js.map +1 -1
  19. package/build/dist/Server/Utils/Telemetry/LlmSpan.js +14 -54
  20. package/build/dist/Server/Utils/Telemetry/LlmSpan.js.map +1 -1
  21. package/build/dist/Types/Telemetry/LlmConventions.js +149 -0
  22. package/build/dist/Types/Telemetry/LlmConventions.js.map +1 -0
  23. package/build/dist/UI/Components/Detail/PlaceholderText.js +1 -4
  24. package/build/dist/UI/Components/Detail/PlaceholderText.js.map +1 -1
  25. 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 private dashboard.",
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 private dashboard. This value is stored as a secure hash.",
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 Dashboard. One IP per line. Only used if the dashboard is private.",
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,