@tramvai/module-metrics 2.149.1 → 2.150.1
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/lib/browser.d.ts +1 -0
- package/lib/constants.d.ts +1 -0
- package/lib/instantMetrics/browser.d.ts +1 -0
- package/lib/instantMetrics/server.d.ts +1 -0
- package/lib/instantMetrics/shared.d.ts +1 -0
- package/lib/instantMetrics/store.d.ts +2 -1
- package/lib/metrics/commandLine.d.ts +1 -0
- package/lib/metrics/eventLoop.d.ts +1 -0
- package/lib/performance-devtools/PerfMetrics.d.ts +1 -0
- package/lib/performance-devtools/mockPerformance.d.ts +1 -0
- package/lib/performance-devtools/startMeasure.d.ts +1 -0
- package/lib/performance-devtools/supportsUserTiming.d.ts +1 -0
- package/lib/performance-devtools/uniqueId.d.ts +1 -0
- package/lib/request/MetricsServicesRegistry.d.ts +1 -0
- package/lib/request/PrefixTree.d.ts +1 -0
- package/lib/request/createRequestWithMetrics.d.ts +1 -0
- package/lib/request/index.d.ts +1 -0
- package/lib/request/initRequestsMetrics.d.ts +1 -0
- package/lib/request/types.d.ts +1 -0
- package/lib/server.d.ts +1 -0
- package/package.json +11 -11
package/lib/browser.d.ts
CHANGED
package/lib/constants.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export declare const setInstantMetrics: import("@tramvai/types-actions-state-context").EventCreator1<any
|
|
1
|
+
export declare const setInstantMetrics: import("@tramvai/types-actions-state-context").EventCreator1<any>;
|
|
2
2
|
export interface State {
|
|
3
3
|
instantMetricsMap: Record<string, boolean>;
|
|
4
4
|
}
|
|
5
5
|
export declare const MetricsStore: import("@tramvai/state").Reducer<State, string, never>;
|
|
6
|
+
//# sourceMappingURL=store.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { COMMAND_LINE_EXECUTION_END_TOKEN } from '@tramvai/tokens-core-private';
|
|
2
2
|
import type { Metrics } from '@tramvai/tokens-metrics';
|
|
3
3
|
export declare const commandLineMetrics: (metrics: Metrics) => typeof COMMAND_LINE_EXECUTION_END_TOKEN;
|
|
4
|
+
//# sourceMappingURL=commandLine.d.ts.map
|
package/lib/request/index.d.ts
CHANGED
package/lib/request/types.d.ts
CHANGED
package/lib/server.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/module-metrics",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.150.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"browser": "lib/browser.js",
|
|
6
6
|
"main": "lib/server.js",
|
|
@@ -18,16 +18,16 @@
|
|
|
18
18
|
"watch": "tsc -w"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@tramvai/core": "2.
|
|
22
|
-
"@tramvai/tokens-common": "2.
|
|
23
|
-
"@tramvai/tokens-core-private": "2.
|
|
24
|
-
"@tramvai/tokens-server": "2.
|
|
25
|
-
"@tramvai/tokens-server-private": "2.
|
|
26
|
-
"@tramvai/tokens-metrics": "2.
|
|
27
|
-
"@tramvai/tokens-router": "2.
|
|
28
|
-
"@tramvai/tokens-http-client": "2.
|
|
29
|
-
"@tramvai/state": "2.
|
|
30
|
-
"@tramvai/papi": "2.
|
|
21
|
+
"@tramvai/core": "2.150.1",
|
|
22
|
+
"@tramvai/tokens-common": "2.150.1",
|
|
23
|
+
"@tramvai/tokens-core-private": "2.150.1",
|
|
24
|
+
"@tramvai/tokens-server": "2.150.1",
|
|
25
|
+
"@tramvai/tokens-server-private": "2.150.1",
|
|
26
|
+
"@tramvai/tokens-metrics": "2.150.1",
|
|
27
|
+
"@tramvai/tokens-router": "2.150.1",
|
|
28
|
+
"@tramvai/tokens-http-client": "2.150.1",
|
|
29
|
+
"@tramvai/state": "2.150.1",
|
|
30
|
+
"@tramvai/papi": "2.150.1",
|
|
31
31
|
"@tinkoff/measure-fastify-requests": "0.1.11",
|
|
32
32
|
"@tinkoff/monkeypatch": "2.0.5",
|
|
33
33
|
"@tinkoff/url": "0.8.6",
|