@emeryld/rrroutes-openapi 2.5.7 → 2.5.12
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/README.md +6 -0
- package/dist/docs/LeafDocsPage.d.ts +17 -1
- package/dist/index.cjs +98 -49
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +14 -26
- package/dist/index.mjs +97 -48
- package/dist/index.mjs.map +1 -1
- package/dist/public/assets/docs.js +120 -115
- package/dist/web/app.d.ts +4 -1
- package/dist/web/v2/AppShell.d.ts +3 -1
- package/dist/web/v2/components/endpoints/EndpointPlayground.d.ts +1 -3
- package/dist/web/v2/components/endpoints/KeyValueEditor.d.ts +2 -1
- package/dist/web/v2/components/endpoints/PlaygroundEditor.d.ts +1 -2
- package/dist/web/v2/components/feeds/FeedPagination.d.ts +1 -2
- package/dist/web/v2/components/history/RequestDetailContent.d.ts +2 -18
- package/dist/web/v2/components/inputs/JsonInputWithTools.d.ts +3 -1
- package/dist/web/v2/components/json/JsonTree.d.ts +11 -0
- package/dist/web/v2/components/json/JsonTreeRow.d.ts +14 -0
- package/dist/web/v2/components/json/JsonViewer.d.ts +13 -1
- package/dist/web/v2/components/json/jsonViewerUtils.d.ts +3 -0
- package/dist/web/v2/components/{playgroundOverlay/PlaygroundOverlayLayout.d.ts → layout/OverlayLayout.d.ts} +3 -3
- package/dist/web/v2/components/logs/cache/common/CacheSummaryStat.d.ts +7 -0
- package/dist/web/v2/components/logs/cache/common/CacheTraceDialog.d.ts +8 -0
- package/dist/web/v2/components/logs/cache/common/CacheValueDialog.d.ts +8 -0
- package/dist/web/v2/components/logs/cache/common/DetailField.d.ts +7 -0
- package/dist/web/v2/components/logs/cache/common/MutedText.d.ts +4 -0
- package/dist/web/v2/components/logs/cache/insights/CacheInsights.d.ts +10 -0
- package/dist/web/v2/components/logs/cache/insights/CacheInsightsKeySection.d.ts +7 -0
- package/dist/web/v2/components/logs/cache/insights/CacheInsightsKpiRow.d.ts +8 -0
- package/dist/web/v2/components/logs/cache/insights/CacheInsightsOverview.d.ts +8 -0
- package/dist/web/v2/components/logs/cache/insights/CacheInsightsTagSection.d.ts +7 -0
- package/dist/web/v2/components/logs/cache/insights/CacheProblemPanels.d.ts +7 -0
- package/dist/web/v2/components/logs/cache/insights/CacheTagInsights.d.ts +20 -0
- package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailActions.d.ts +12 -0
- package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailLogsTab.d.ts +3 -0
- package/dist/web/v2/components/logs/cache/{CacheKeyDetailModal.d.ts → key-detail/CacheKeyDetailModal.d.ts} +7 -2
- package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailSummary.d.ts +17 -0
- package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailTimelineTab.d.ts +7 -0
- package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailTracesTab.d.ts +3 -0
- package/dist/web/v2/components/logs/cache/logs/CacheDataCard.d.ts +30 -0
- package/dist/web/v2/components/logs/cache/logs/CacheFiltersCard.d.ts +15 -0
- package/dist/web/v2/components/logs/cache/logs/CacheLogsTable.d.ts +7 -0
- package/dist/web/v2/components/logs/cache/{CacheSummaryTable.d.ts → logs/CacheSummaryTable.d.ts} +1 -1
- package/dist/web/v2/components/logs/cache/modals/CacheTagDetailModal.d.ts +11 -0
- package/dist/web/v2/components/performance/PerformanceMonitor.d.ts +207 -0
- package/dist/web/v2/components/presets/PresetForm.d.ts +2 -1
- package/dist/web/v2/components/presets/PresetOperationsTabsEditor.d.ts +17 -0
- package/dist/web/v2/components/presets/PresetsCsvActions.d.ts +7 -0
- package/dist/web/v2/components/presets/presetOperationAdapters.d.ts +11 -0
- package/dist/web/v2/components/presets/presetOperationRun.d.ts +35 -0
- package/dist/web/v2/components/presets/presetOperationUtils.d.ts +2 -0
- package/dist/web/v2/components/primitives/HoverRow.d.ts +6 -0
- package/dist/web/v2/components/primitives/InlineActionButton.d.ts +7 -0
- package/dist/web/v2/components/primitives/SurfaceActionArea.d.ts +8 -0
- package/dist/web/v2/components/request/LastRunPanel.d.ts +17 -0
- package/dist/web/v2/components/request/RequestInputsEditor.d.ts +38 -0
- package/dist/web/v2/components/request/RequestUrlSelector.d.ts +15 -0
- package/dist/web/v2/components/requests/timeline/RequestTimeline.d.ts +13 -0
- package/dist/web/v2/components/requests/timeline/RequestTimelineEventMiniCard.d.ts +13 -0
- package/dist/web/v2/components/requests/timeline/RequestTimelineFilters.d.ts +20 -0
- package/dist/web/v2/components/requests/timeline/RequestTimelineRow.d.ts +15 -0
- package/dist/web/v2/components/requests/timeline/types.d.ts +19 -0
- package/dist/web/v2/components/tabs/StickyIconTabs.d.ts +17 -0
- package/dist/web/v2/components/tags/DurationChip.d.ts +16 -0
- package/dist/web/v2/components/tags/LogLevelChip.d.ts +1 -2
- package/dist/web/v2/hooks/useCacheTrace.d.ts +21 -0
- package/dist/web/v2/registries/logLevelRegistry.d.ts +27 -0
- package/dist/web/v2/stores/playgroundStore.d.ts +3 -9
- package/dist/web/v2/theme.d.ts +21 -0
- package/dist/web/v2/types/types.cacheLog.d.ts +271 -32
- package/dist/web/v2/types/types.d.ts +3 -1
- package/dist/web/v2/types/types.endpoint.d.ts +20 -0
- package/dist/web/v2/types/types.kvRow.d.ts +8 -0
- package/dist/web/v2/types/types.log.d.ts +25 -78
- package/dist/web/v2/types/types.requestLog.d.ts +40 -44
- package/dist/web/v2/types/types.scheduling.d.ts +423 -0
- package/dist/web/v2/utils/cache/cacheInsightsMappers.d.ts +6 -0
- package/dist/web/v2/utils/cache/cacheInsightsMetrics.d.ts +24 -0
- package/dist/web/v2/utils/cache/cacheTraceInsights.d.ts +35 -0
- package/dist/web/v2/utils/cacheFormat.d.ts +7 -0
- package/dist/web/v2/utils/cacheUtils.d.ts +2 -0
- package/dist/web/v2/utils/colorScale.d.ts +14 -0
- package/dist/web/v2/utils/downloadTextFile.d.ts +1 -0
- package/dist/web/v2/utils/kvRow.d.ts +4 -4
- package/dist/web/v2/utils/kvRowAdapters.d.ts +14 -0
- package/dist/web/v2/utils/presetCsv.d.ts +22 -0
- package/dist/web/v2/utils/presetsCsv.d.ts +6 -0
- package/dist/web/v2/utils/sizeFormat.d.ts +2 -0
- package/package.json +3 -3
- package/dist/web/v2/components/endpoints/PlaygroundRunPanel.d.ts +0 -12
- package/dist/web/v2/components/endpoints/PlaygroundTopTabs.d.ts +0 -11
- package/dist/web/v2/components/history/RequestTimeline.d.ts +0 -10
- package/dist/web/v2/components/logs/cache/CacheInsightsKeySection.d.ts +0 -6
- package/dist/web/v2/components/logs/cache/CacheInsightsOverview.d.ts +0 -6
- package/dist/web/v2/components/logs/cache/CacheInsightsTagSection.d.ts +0 -6
- package/dist/web/v2/components/logs/cache/CacheLogsTable.d.ts +0 -6
- package/dist/web/v2/components/logs/cache/CacheTagInsights.d.ts +0 -43
- package/dist/web/v2/components/logs/cache/CacheValueDialog.d.ts +0 -7
- package/dist/web/v2/components/presets/PresetOperationsEditor.d.ts +0 -7
- /package/dist/web/v2/components/{playgroundOverlay → layout}/useMeasuredElement.d.ts +0 -0
- /package/dist/web/v2/components/logs/cache/{CacheLogsSection.d.ts → logs/CacheLogsSection.d.ts} +0 -0
|
@@ -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,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 {};
|
|
File without changes
|
/package/dist/web/v2/components/logs/cache/{CacheLogsSection.d.ts → logs/CacheLogsSection.d.ts}
RENAMED
|
File without changes
|