@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
@@ -4,10 +4,7 @@ const PlaceholderText = (props) => {
4
4
  var _a;
5
5
  const { translateString } = useTranslateValue();
6
6
  const translatedText = (_a = translateString(props.text)) !== null && _a !== void 0 ? _a : props.text;
7
- return (React.createElement("span", { className: "inline-flex items-center gap-1.5 text-gray-400 italic text-sm select-none px-2 py-0.5 rounded-md bg-gray-50 border border-dashed border-gray-200" },
8
- React.createElement("svg", { className: "w-3.5 h-3.5 text-gray-300", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor" },
9
- React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M20 12H4" })),
10
- translatedText));
7
+ return (React.createElement("span", { className: "inline-flex items-center whitespace-nowrap rounded-md border border-dashed border-gray-300 bg-gray-50 px-2 py-0.5 align-middle text-sm font-normal text-gray-500 select-none" }, translatedText));
11
8
  };
12
9
  export default PlaceholderText;
13
10
  //# sourceMappingURL=PlaceholderText.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"PlaceholderText.js","sourceRoot":"","sources":["../../../../../UI/Components/Detail/PlaceholderText.tsx"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAA0C,MAAM,OAAO,CAAC;AAM/D,MAAM,eAAe,GAAsC,CACzD,KAAqB,EACP,EAAE;;IAChB,MAAM,EAAE,eAAe,EAAE,GAAG,iBAAiB,EAAE,CAAC;IAChD,MAAM,cAAc,GAAW,MAAA,eAAe,CAAC,KAAK,CAAC,IAAI,CAAC,mCAAI,KAAK,CAAC,IAAI,CAAC;IACzE,OAAO,CACL,8BAAM,SAAS,EAAC,kJAAkJ;QAChK,6BACE,SAAS,EAAC,2BAA2B,EACrC,IAAI,EAAC,MAAM,EACX,OAAO,EAAC,WAAW,EACnB,MAAM,EAAC,cAAc;YAErB,8BACE,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,GAAG,EAChB,CAAC,EAAC,UAAU,GACZ,CACE;QACL,cAAc,CACV,CACR,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,eAAe,CAAC"}
1
+ {"version":3,"file":"PlaceholderText.js","sourceRoot":"","sources":["../../../../../UI/Components/Detail/PlaceholderText.tsx"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAA0C,MAAM,OAAO,CAAC;AAM/D,MAAM,eAAe,GAAsC,CACzD,KAAqB,EACP,EAAE;;IAChB,MAAM,EAAE,eAAe,EAAE,GAAG,iBAAiB,EAAE,CAAC;IAChD,MAAM,cAAc,GAAW,MAAA,eAAe,CAAC,KAAK,CAAC,IAAI,CAAC,mCAAI,KAAK,CAAC,IAAI,CAAC;IACzE,OAAO,CACL,8BAAM,SAAS,EAAC,8KAA8K,IAC3L,cAAc,CACV,CACR,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,eAAe,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oneuptime/common",
3
- "version": "11.5.2",
3
+ "version": "11.5.4",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",