@emeryld/rrroutes-openapi 2.5.10 → 2.5.13

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 (48) hide show
  1. package/dist/index.cjs +64 -126
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.d.ts +3 -2
  4. package/dist/index.mjs +63 -125
  5. package/dist/index.mjs.map +1 -1
  6. package/dist/public/assets/docs.js +113 -113
  7. package/dist/web/v2/types/types.base.d.ts +1 -6
  8. package/dist/web/v2/types/types.cacheLog.d.ts +61 -670
  9. package/dist/web/v2/types/types.d.ts +3 -1
  10. package/dist/web/v2/types/types.endpoint.d.ts +5 -20
  11. package/dist/web/v2/types/types.log.d.ts +5 -20
  12. package/dist/web/v2/types/types.preset.d.ts +5 -20
  13. package/dist/web/v2/types/types.requestLog.d.ts +5 -20
  14. package/dist/web/v2/types/types.scheduling.d.ts +408 -0
  15. package/dist/web/v2/types/types.socket.d.ts +5 -20
  16. package/dist/web/v2/utils/dates.d.ts +4 -0
  17. package/dist/web/v2/utils/sizeFormat.d.ts +0 -1
  18. package/package.json +3 -3
  19. package/dist/web/v2/components/logs/cache/common/CacheSummaryStat.d.ts +0 -7
  20. package/dist/web/v2/components/logs/cache/common/CacheTraceDialog.d.ts +0 -8
  21. package/dist/web/v2/components/logs/cache/common/CacheValueDialog.d.ts +0 -8
  22. package/dist/web/v2/components/logs/cache/common/DetailField.d.ts +0 -7
  23. package/dist/web/v2/components/logs/cache/common/MutedText.d.ts +0 -4
  24. package/dist/web/v2/components/logs/cache/insights/CacheInsights.d.ts +0 -10
  25. package/dist/web/v2/components/logs/cache/insights/CacheInsightsKeySection.d.ts +0 -7
  26. package/dist/web/v2/components/logs/cache/insights/CacheInsightsKpiRow.d.ts +0 -8
  27. package/dist/web/v2/components/logs/cache/insights/CacheInsightsOverview.d.ts +0 -8
  28. package/dist/web/v2/components/logs/cache/insights/CacheInsightsTagSection.d.ts +0 -7
  29. package/dist/web/v2/components/logs/cache/insights/CacheProblemPanels.d.ts +0 -7
  30. package/dist/web/v2/components/logs/cache/insights/CacheTagInsights.d.ts +0 -20
  31. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailActions.d.ts +0 -12
  32. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailLogsTab.d.ts +0 -3
  33. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailModal.d.ts +0 -18
  34. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailSummary.d.ts +0 -17
  35. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailTimelineTab.d.ts +0 -7
  36. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailTracesTab.d.ts +0 -3
  37. package/dist/web/v2/components/logs/cache/logs/CacheDataCard.d.ts +0 -30
  38. package/dist/web/v2/components/logs/cache/logs/CacheFiltersCard.d.ts +0 -15
  39. package/dist/web/v2/components/logs/cache/logs/CacheLogsSection.d.ts +0 -1
  40. package/dist/web/v2/components/logs/cache/logs/CacheLogsTable.d.ts +0 -7
  41. package/dist/web/v2/components/logs/cache/logs/CacheSummaryTable.d.ts +0 -8
  42. package/dist/web/v2/components/logs/cache/modals/CacheTagDetailModal.d.ts +0 -11
  43. package/dist/web/v2/hooks/useCacheInsights.d.ts +0 -308
  44. package/dist/web/v2/utils/cache/cacheInsightsMappers.d.ts +0 -6
  45. package/dist/web/v2/utils/cache/cacheInsightsMetrics.d.ts +0 -24
  46. package/dist/web/v2/utils/cache/cacheTraceInsights.d.ts +0 -35
  47. package/dist/web/v2/utils/cacheFormat.d.ts +0 -7
  48. package/dist/web/v2/utils/cacheUtils.d.ts +0 -2
@@ -20,12 +20,7 @@ export declare const baseEntitySchema: z.ZodObject<{
20
20
  export declare const baseQuerySchema: z.ZodObject<{
21
21
  beforeDate: z.ZodOptional<z.ZodString>;
22
22
  afterDate: z.ZodOptional<z.ZodString>;
23
- orderBy: z.ZodOptional<z.ZodEnum<{
24
- timestamp: "timestamp";
25
- duration: "duration";
26
- level: "level";
27
- path: "path";
28
- }>>;
23
+ orderBy: z.ZodOptional<z.ZodString>;
29
24
  orderDirection: z.ZodOptional<z.ZodEnum<{
30
25
  asc: "asc";
31
26
  desc: "desc";