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

[Main][Task]27157764: Add all CfgSync plugin exports to AISKU and change the default CfgSync plugin url endpoint #2300

Merged
merged 5 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 AISKU/src/applicationinsights-web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,7 @@ export {
AjaxPlugin as DependenciesPlugin, IDependenciesPlugin,
DependencyListenerFunction, DependencyInitializerFunction, IDependencyInitializerHandler, IDependencyListenerHandler
} from "@microsoft/applicationinsights-dependencies-js";

export { CfgSyncPlugin, ICfgSyncPlugin, ICfgSyncConfig, ICfgSyncEvent, ICfgSyncMode, NonOverrideCfg, OnCompleteCallback, SendGetFunction
} from "@microsoft/applicationinsights-cfgsync-js";

Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const _defaultConfig: IConfigDefaults<ICfgSyncConfig> = objDeepFreeze({
syncMode: ICfgSyncMode.Broadcast,
blkCdnCfg: udfVal,
customEvtName: udfVal,
cfgUrl: udfVal, // as long as it is set to NOT NUll, we will NOT use config from core
cfgUrl: udfVal, //TODO: REPLACE TO DEFAULT URL
overrideSyncFn: udfVal,
overrideFetchFn: udfVal,
onCfgChangeReceive: udfVal,
Expand Down
Loading