Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Telemetry Adapter Version #415

Merged
merged 4 commits into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Fixed

- Update `ACSAdapterVersion` to reflect the correct version

## [1.10.12] - 2025-02-21

### Added
Expand Down
6 changes: 3 additions & 3 deletions src/telemetry/AriaTelemetry.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { AWTEventData, AWTLogConfiguration, AWTLogManager, AWTLogger } from '../external/aria/webjs/AriaSDK';
import { ic3ClientVersion, webChatACSAdapterVersion } from '../config/settings';
import { ic3ClientVersion } from '../config/settings';
import { isBrowser, isReactNative } from '../utils/platform';

import { AWTEventPriority } from '../external/aria/common/Enums';
import LogLevel from '../telemetry/LogLevel';
import ScenarioType from '../telemetry/ScenarioType';
import { ariaTelemetryKey } from '../config/settings';
import { version as ACSAdapterVersion } from '@microsoft/botframework-webchat-adapter-azure-communication-chat/package.json';

interface BaseContract {
ChatSDKRuntimeId: string;
Expand Down Expand Up @@ -821,7 +821,7 @@ class AriaTelemetry {
Event: '',
ExceptionDetails: '',
ElapsedTimeInMilliseconds: '',
ACSAdapterVersion: webChatACSAdapterVersion
ACSAdapterVersion
}
}

Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"lib": ["es2018", "dom"],
"resolveJsonModule": true,
"incremental": true,
"sourceMap": true,
"target": "es5",
Expand Down
Loading