@fluidframework/telemetry-utils
Advanced tools
Comparing version 2.5.0 to 2.10.0-304831
@@ -16,4 +16,4 @@ /*! | ||
export { createSampledLogger, type IEventSampler, type ISampledTelemetryLogger, measure, } from "./utils.js"; | ||
export type { TelemetryEventPropertyTypeExt, ITelemetryEventExt, ITelemetryGenericEventExt, ITelemetryErrorEventExt, ITelemetryPerformanceEventExt, ITelemetryLoggerExt, ITaggedTelemetryPropertyTypeExt, ITelemetryPropertiesExt, TelemetryEventCategory, } from "./telemetryTypes.js"; | ||
export type { TelemetryEventPropertyTypeExt, ITelemetryEventExt, ITelemetryGenericEventExt, ITelemetryErrorEventExt, ITelemetryPerformanceEventExt, ITelemetryLoggerExt, ITelemetryPropertiesExt, TelemetryEventCategory, } from "./telemetryTypes.js"; | ||
export { TelemetryEventBatcher } from "./telemetryEventBatcher.js"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -29,14 +29,2 @@ /*! | ||
/** | ||
* A property to be logged to telemetry containing both the value and a tag. Tags are generic strings that can be used | ||
* to mark pieces of information that should be organized or handled differently by loggers in various first or third | ||
* party scenarios. For example, tags are used to mark personal information that should not be stored in logs. | ||
* | ||
* @deprecated Use {@link @fluidframework/core-interfaces#Tagged}\<{@link TelemetryEventPropertyTypeExt}\> | ||
* @internal | ||
*/ | ||
export interface ITaggedTelemetryPropertyTypeExt { | ||
value: TelemetryEventPropertyTypeExt; | ||
tag: string; | ||
} | ||
/** | ||
* JSON-serializable properties, which will be logged with telemetry. | ||
@@ -43,0 +31,0 @@ * @legacy |
@@ -16,4 +16,4 @@ /*! | ||
export { createSampledLogger, type IEventSampler, type ISampledTelemetryLogger, measure, } from "./utils.js"; | ||
export type { TelemetryEventPropertyTypeExt, ITelemetryEventExt, ITelemetryGenericEventExt, ITelemetryErrorEventExt, ITelemetryPerformanceEventExt, ITelemetryLoggerExt, ITaggedTelemetryPropertyTypeExt, ITelemetryPropertiesExt, TelemetryEventCategory, } from "./telemetryTypes.js"; | ||
export type { TelemetryEventPropertyTypeExt, ITelemetryEventExt, ITelemetryGenericEventExt, ITelemetryErrorEventExt, ITelemetryPerformanceEventExt, ITelemetryLoggerExt, ITelemetryPropertiesExt, TelemetryEventCategory, } from "./telemetryTypes.js"; | ||
export { TelemetryEventBatcher } from "./telemetryEventBatcher.js"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -29,14 +29,2 @@ /*! | ||
/** | ||
* A property to be logged to telemetry containing both the value and a tag. Tags are generic strings that can be used | ||
* to mark pieces of information that should be organized or handled differently by loggers in various first or third | ||
* party scenarios. For example, tags are used to mark personal information that should not be stored in logs. | ||
* | ||
* @deprecated Use {@link @fluidframework/core-interfaces#Tagged}\<{@link TelemetryEventPropertyTypeExt}\> | ||
* @internal | ||
*/ | ||
export interface ITaggedTelemetryPropertyTypeExt { | ||
value: TelemetryEventPropertyTypeExt; | ||
tag: string; | ||
} | ||
/** | ||
* JSON-serializable properties, which will be logged with telemetry. | ||
@@ -43,0 +31,0 @@ * @legacy |
{ | ||
"name": "@fluidframework/telemetry-utils", | ||
"version": "2.5.0", | ||
"version": "2.10.0-304831", | ||
"description": "Collection of telemetry relates utilities for Fluid", | ||
@@ -72,6 +72,6 @@ "homepage": "https://fluidframework.com", | ||
"dependencies": { | ||
"@fluid-internal/client-utils": "~2.5.0", | ||
"@fluidframework/core-interfaces": "~2.5.0", | ||
"@fluidframework/core-utils": "~2.5.0", | ||
"@fluidframework/driver-definitions": "~2.5.0", | ||
"@fluid-internal/client-utils": "2.10.0-304831", | ||
"@fluidframework/core-interfaces": "2.10.0-304831", | ||
"@fluidframework/core-utils": "2.10.0-304831", | ||
"@fluidframework/driver-definitions": "2.10.0-304831", | ||
"debug": "^4.3.4", | ||
@@ -83,8 +83,8 @@ "uuid": "^9.0.0" | ||
"@biomejs/biome": "~1.9.3", | ||
"@fluid-internal/mocha-test-setup": "~2.5.0", | ||
"@fluid-tools/build-cli": "^0.49.0", | ||
"@fluid-internal/mocha-test-setup": "2.10.0-304831", | ||
"@fluid-tools/build-cli": "^0.50.0", | ||
"@fluidframework/build-common": "^2.0.3", | ||
"@fluidframework/build-tools": "^0.49.0", | ||
"@fluidframework/build-tools": "^0.50.0", | ||
"@fluidframework/eslint-config-fluid": "^5.4.0", | ||
"@fluidframework/telemetry-utils-previous": "npm:@fluidframework/telemetry-utils@~2.4.0", | ||
"@fluidframework/telemetry-utils-previous": "npm:@fluidframework/telemetry-utils@2.5.0", | ||
"@microsoft/api-extractor": "7.47.8", | ||
@@ -91,0 +91,0 @@ "@types/debug": "^4.1.5", |
@@ -92,3 +92,2 @@ /*! | ||
ITelemetryLoggerExt, | ||
ITaggedTelemetryPropertyTypeExt, | ||
ITelemetryPropertiesExt, | ||
@@ -95,0 +94,0 @@ TelemetryEventCategory, |
@@ -39,15 +39,2 @@ /*! | ||
/** | ||
* A property to be logged to telemetry containing both the value and a tag. Tags are generic strings that can be used | ||
* to mark pieces of information that should be organized or handled differently by loggers in various first or third | ||
* party scenarios. For example, tags are used to mark personal information that should not be stored in logs. | ||
* | ||
* @deprecated Use {@link @fluidframework/core-interfaces#Tagged}\<{@link TelemetryEventPropertyTypeExt}\> | ||
* @internal | ||
*/ | ||
export interface ITaggedTelemetryPropertyTypeExt { | ||
value: TelemetryEventPropertyTypeExt; | ||
tag: string; | ||
} | ||
/** | ||
* JSON-serializable properties, which will be logged with telemetry. | ||
@@ -54,0 +41,0 @@ * @legacy |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
909283
11344
1
+ Added@fluid-internal/client-utils@2.10.0-304831(transitive)
+ Added@fluidframework/core-interfaces@2.10.0-304831(transitive)
+ Added@fluidframework/core-utils@2.10.0-304831(transitive)
+ Added@fluidframework/driver-definitions@2.10.0-304831(transitive)
- Removed@fluid-internal/client-utils@2.5.0(transitive)
- Removed@fluidframework/core-interfaces@2.5.0(transitive)
- Removed@fluidframework/core-utils@2.5.0(transitive)
- Removed@fluidframework/driver-definitions@2.5.0(transitive)