@emeryld/rrroutes-openapi 2.5.6 → 2.5.10

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 (106) hide show
  1. package/README.md +6 -0
  2. package/dist/docs/LeafDocsPage.d.ts +17 -1
  3. package/dist/index.cjs +48 -24
  4. package/dist/index.cjs.map +1 -1
  5. package/dist/index.d.ts +14 -27
  6. package/dist/index.mjs +48 -24
  7. package/dist/index.mjs.map +1 -1
  8. package/dist/public/assets/docs.js +114 -106
  9. package/dist/web/app.d.ts +4 -1
  10. package/dist/web/v2/AppShell.d.ts +3 -1
  11. package/dist/web/v2/components/endpoints/EndpointPlayground.d.ts +8 -3
  12. package/dist/web/v2/components/endpoints/KeyValueEditor.d.ts +15 -0
  13. package/dist/web/v2/components/endpoints/PlaygroundEditor.d.ts +4 -6
  14. package/dist/web/v2/components/endpoints/usePlaygroundRunner.d.ts +8 -0
  15. package/dist/web/v2/components/feeds/FeedPagination.d.ts +1 -2
  16. package/dist/web/v2/components/history/RequestDetailContent.d.ts +2 -18
  17. package/dist/web/v2/components/inputs/JsonInputWithTools.d.ts +3 -1
  18. package/dist/web/v2/components/json/JsonTree.d.ts +11 -0
  19. package/dist/web/v2/components/json/JsonTreeRow.d.ts +14 -0
  20. package/dist/web/v2/components/json/JsonViewer.d.ts +13 -1
  21. package/dist/web/v2/components/json/jsonViewerUtils.d.ts +3 -0
  22. package/dist/web/v2/components/layout/OverlayLayout.d.ts +13 -0
  23. package/dist/web/v2/components/layout/useMeasuredElement.d.ts +10 -0
  24. package/dist/web/v2/components/logs/cache/common/CacheSummaryStat.d.ts +7 -0
  25. package/dist/web/v2/components/logs/cache/common/CacheTraceDialog.d.ts +8 -0
  26. package/dist/web/v2/components/logs/cache/common/CacheValueDialog.d.ts +8 -0
  27. package/dist/web/v2/components/logs/cache/common/DetailField.d.ts +7 -0
  28. package/dist/web/v2/components/logs/cache/common/MutedText.d.ts +4 -0
  29. package/dist/web/v2/components/logs/cache/insights/CacheInsights.d.ts +10 -0
  30. package/dist/web/v2/components/logs/cache/insights/CacheInsightsKeySection.d.ts +7 -0
  31. package/dist/web/v2/components/logs/cache/insights/CacheInsightsKpiRow.d.ts +8 -0
  32. package/dist/web/v2/components/logs/cache/insights/CacheInsightsOverview.d.ts +8 -0
  33. package/dist/web/v2/components/logs/cache/insights/CacheInsightsTagSection.d.ts +7 -0
  34. package/dist/web/v2/components/logs/cache/insights/CacheProblemPanels.d.ts +7 -0
  35. package/dist/web/v2/components/logs/cache/insights/CacheTagInsights.d.ts +20 -0
  36. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailActions.d.ts +12 -0
  37. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailLogsTab.d.ts +3 -0
  38. package/dist/web/v2/components/logs/cache/{CacheKeyDetailModal.d.ts → key-detail/CacheKeyDetailModal.d.ts} +7 -2
  39. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailSummary.d.ts +17 -0
  40. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailTimelineTab.d.ts +7 -0
  41. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailTracesTab.d.ts +3 -0
  42. package/dist/web/v2/components/logs/cache/logs/CacheDataCard.d.ts +30 -0
  43. package/dist/web/v2/components/logs/cache/logs/CacheFiltersCard.d.ts +15 -0
  44. package/dist/web/v2/components/logs/cache/logs/CacheLogsTable.d.ts +7 -0
  45. package/dist/web/v2/components/logs/cache/{CacheSummaryTable.d.ts → logs/CacheSummaryTable.d.ts} +1 -1
  46. package/dist/web/v2/components/logs/cache/modals/CacheTagDetailModal.d.ts +11 -0
  47. package/dist/web/v2/components/performance/PerformanceMonitor.d.ts +207 -0
  48. package/dist/web/v2/components/presets/PresetForm.d.ts +2 -1
  49. package/dist/web/v2/components/presets/PresetOperationsTabsEditor.d.ts +17 -0
  50. package/dist/web/v2/components/presets/PresetsCsvActions.d.ts +7 -0
  51. package/dist/web/v2/components/presets/presetOperationAdapters.d.ts +11 -0
  52. package/dist/web/v2/components/presets/presetOperationRun.d.ts +35 -0
  53. package/dist/web/v2/components/presets/presetOperationUtils.d.ts +2 -0
  54. package/dist/web/v2/components/primitives/HoverRow.d.ts +6 -0
  55. package/dist/web/v2/components/primitives/InlineActionButton.d.ts +7 -0
  56. package/dist/web/v2/components/primitives/SurfaceActionArea.d.ts +8 -0
  57. package/dist/web/v2/components/request/LastRunPanel.d.ts +17 -0
  58. package/dist/web/v2/components/request/RequestInputsEditor.d.ts +38 -0
  59. package/dist/web/v2/components/request/RequestUrlSelector.d.ts +15 -0
  60. package/dist/web/v2/components/requests/timeline/RequestTimeline.d.ts +13 -0
  61. package/dist/web/v2/components/requests/timeline/RequestTimelineEventMiniCard.d.ts +13 -0
  62. package/dist/web/v2/components/requests/timeline/RequestTimelineFilters.d.ts +20 -0
  63. package/dist/web/v2/components/requests/timeline/RequestTimelineRow.d.ts +15 -0
  64. package/dist/web/v2/components/requests/timeline/types.d.ts +19 -0
  65. package/dist/web/v2/{sockets → components/sockets}/SocketEventDetailModal.d.ts +1 -1
  66. package/dist/web/v2/{sockets → components/sockets}/SocketEventsTable.d.ts +1 -1
  67. package/dist/web/v2/components/tabs/StickyIconTabs.d.ts +17 -0
  68. package/dist/web/v2/components/tags/DurationChip.d.ts +16 -0
  69. package/dist/web/v2/components/tags/LogLevelChip.d.ts +1 -2
  70. package/dist/web/v2/hooks/useCacheTrace.d.ts +21 -0
  71. package/dist/web/v2/registries/logLevelRegistry.d.ts +27 -0
  72. package/dist/web/v2/stores/playgroundSettingsStore.d.ts +12 -0
  73. package/dist/web/v2/stores/playgroundStore.d.ts +4 -8
  74. package/dist/web/v2/theme.d.ts +21 -0
  75. package/dist/web/v2/types/types.cacheLog.d.ts +351 -24
  76. package/dist/web/v2/types/types.endpoint.d.ts +20 -0
  77. package/dist/web/v2/types/types.kvRow.d.ts +8 -0
  78. package/dist/web/v2/types/types.log.d.ts +25 -78
  79. package/dist/web/v2/types/types.requestLog.d.ts +40 -44
  80. package/dist/web/v2/utils/cache/cacheInsightsMappers.d.ts +6 -0
  81. package/dist/web/v2/utils/cache/cacheInsightsMetrics.d.ts +24 -0
  82. package/dist/web/v2/utils/cache/cacheTraceInsights.d.ts +35 -0
  83. package/dist/web/v2/utils/cacheFormat.d.ts +7 -0
  84. package/dist/web/v2/utils/cacheUtils.d.ts +2 -0
  85. package/dist/web/v2/utils/colorScale.d.ts +14 -0
  86. package/dist/web/v2/utils/dates.d.ts +1 -0
  87. package/dist/web/v2/utils/downloadTextFile.d.ts +1 -0
  88. package/dist/web/v2/utils/kvRow.d.ts +15 -0
  89. package/dist/web/v2/utils/kvRowAdapters.d.ts +14 -0
  90. package/dist/web/v2/utils/presetCsv.d.ts +22 -0
  91. package/dist/web/v2/utils/presetsCsv.d.ts +6 -0
  92. package/dist/web/v2/utils/schemaDefaults.d.ts +7 -0
  93. package/dist/web/v2/utils/sizeFormat.d.ts +2 -0
  94. package/package.json +1 -1
  95. package/dist/web/v2/components/endpoints/PlaygroundTabs.d.ts +0 -11
  96. package/dist/web/v2/components/history/RequestTimeline.d.ts +0 -10
  97. package/dist/web/v2/components/logs/cache/CacheInsightsKeySection.d.ts +0 -6
  98. package/dist/web/v2/components/logs/cache/CacheInsightsOverview.d.ts +0 -6
  99. package/dist/web/v2/components/logs/cache/CacheInsightsTagSection.d.ts +0 -6
  100. package/dist/web/v2/components/logs/cache/CacheLogsTable.d.ts +0 -6
  101. package/dist/web/v2/components/logs/cache/CacheTagInsights.d.ts +0 -43
  102. package/dist/web/v2/components/logs/cache/CacheValueDialog.d.ts +0 -7
  103. package/dist/web/v2/components/presets/PresetOperationsEditor.d.ts +0 -7
  104. /package/dist/web/v2/components/logs/cache/{CacheLogsSection.d.ts → logs/CacheLogsSection.d.ts} +0 -0
  105. /package/dist/web/v2/{sockets → components/sockets}/SocketEventsSection.d.ts +0 -0
  106. /package/dist/web/v2/{sockets → components/sockets}/SocketPlayground.d.ts +0 -0
@@ -1,10 +0,0 @@
1
- import type { CacheLogType } from '../../types/types.cacheLog.js';
2
- import type { LogType } from '../../types/types.log.js';
3
- import type { SocketEventType } from '../../types/types.socket.js';
4
- import { RequestTimelineEvent } from './RequestDetailContent.js';
5
- export declare function RequestTimeline({ events, onSelectCache, onSelectLog, onSelectSocket, }: {
6
- events: RequestTimelineEvent[];
7
- onSelectCache?: (cache: CacheLogType) => void;
8
- onSelectLog?: (log: LogType) => void;
9
- onSelectSocket?: (socket: SocketEventType) => void;
10
- }): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +0,0 @@
1
- import type { CacheKeyInsight } from '../../../types/types.cacheLog';
2
- type CacheInsightsKeySectionProps = {
3
- keys: CacheKeyInsight[];
4
- };
5
- export default function CacheInsightsKeySection({ keys, }: CacheInsightsKeySectionProps): import("react/jsx-runtime").JSX.Element;
6
- export {};
@@ -1,6 +0,0 @@
1
- import type { CacheLogsFilter } from '../../../types/types.cacheLog';
2
- type CacheInsightsOverviewProps = {
3
- filters: CacheLogsFilter;
4
- };
5
- export default function CacheInsightsOverview({ filters, }: CacheInsightsOverviewProps): import("react/jsx-runtime").JSX.Element;
6
- export {};
@@ -1,6 +0,0 @@
1
- import type { CacheTagInsight } from '../../../types/types.cacheLog';
2
- type CacheInsightsTagSectionProps = {
3
- tags: CacheTagInsight[];
4
- };
5
- export default function CacheInsightsTagSection({ tags, }: CacheInsightsTagSectionProps): import("react/jsx-runtime").JSX.Element;
6
- export {};
@@ -1,6 +0,0 @@
1
- import type { CacheLogType } from '../../../types/types.cacheLog.js';
2
- type CacheLogsTableProps = {
3
- logs: CacheLogType[];
4
- };
5
- export default function CacheLogsTable({ logs }: CacheLogsTableProps): import("react/jsx-runtime").JSX.Element;
6
- export {};
@@ -1,43 +0,0 @@
1
- import type { CacheKeyInsight, CacheTagInsight } from '../../../types/types.cacheLog.js';
2
- export interface CacheTagStat {
3
- tag: string;
4
- hits: number;
5
- misses: number;
6
- sets: number;
7
- totalSizeKB: number;
8
- totalRequests: number;
9
- hitRate: number;
10
- missRate: number;
11
- avgMissDurationMs: number | null;
12
- }
13
- export type CacheInsightDatum = {
14
- id: string;
15
- label: string;
16
- sets: number;
17
- totalSizeKB: number;
18
- totalRequests: number;
19
- hitRate: number;
20
- missRate: number;
21
- avgMissDurationMs: number | null;
22
- hitsSinceLastSet?: number;
23
- missesSinceLastSet?: number;
24
- deletesSinceLastSet?: number;
25
- avgTimeBetweenSetsMs?: number | null;
26
- avgHitsBetweenSets?: number | null;
27
- avgMissesBetweenSets?: number | null;
28
- };
29
- type Dimension = 'tag' | 'key';
30
- export type CacheInsightsProps = {
31
- tagStats?: CacheInsightDatum[];
32
- keyStats?: CacheInsightDatum[];
33
- defaultDimension?: Dimension;
34
- onVisibleChange?: (ids: string[]) => void;
35
- };
36
- export declare function CacheInsights({ tagStats, keyStats, defaultDimension, onVisibleChange, }: CacheInsightsProps): import("react/jsx-runtime").JSX.Element | null;
37
- type CacheTagInsightsProps = {
38
- stats: CacheTagStat[];
39
- };
40
- export declare const CacheTagInsights: ({ stats }: CacheTagInsightsProps) => import("react/jsx-runtime").JSX.Element;
41
- export declare function mapKeyInsightsToChartData(keys: CacheKeyInsight[]): CacheInsightDatum[];
42
- export declare function mapTagInsightsToChartData(tags: CacheTagInsight[]): CacheInsightDatum[];
43
- export {};
@@ -1,7 +0,0 @@
1
- import type { CacheLogType } from '../../../types/types.cacheLog.js';
2
- type CacheValueDialogProps = {
3
- log: CacheLogType;
4
- onClose: () => void;
5
- };
6
- export default function CacheValueDialog({ log, onClose, }: CacheValueDialogProps): import("react/jsx-runtime").JSX.Element;
7
- export {};
@@ -1,7 +0,0 @@
1
- import type { PresetType } from '../../types/types.preset.js';
2
- type PresetOperationsEditorProps = {
3
- operations: PresetType['operations'];
4
- onChange: (ops: PresetType['operations']) => void;
5
- };
6
- export default function PresetOperationsEditor({ operations, onChange, }: PresetOperationsEditorProps): import("react/jsx-runtime").JSX.Element;
7
- export {};