@xyd-js/core 0.0.0-build-d97dca6-20250821231438 → 0.0.0-build-4afb92e-20250828232425
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/CHANGELOG.md +1 -1
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
- package/src/types/settings.ts +3 -3
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1241,14 +1241,14 @@ interface EditLink {
|
|
|
1241
1241
|
* Analytics configuration
|
|
1242
1242
|
*/
|
|
1243
1243
|
interface IntegrationAnalytics {
|
|
1244
|
-
/**
|
|
1244
|
+
/** LiveSession analytics configuration */
|
|
1245
1245
|
livesession?: IntegrationAnalyticsLiveSession;
|
|
1246
1246
|
}
|
|
1247
1247
|
/**
|
|
1248
|
-
*
|
|
1248
|
+
* LiveSession analytics configuration
|
|
1249
1249
|
*/
|
|
1250
1250
|
interface IntegrationAnalyticsLiveSession {
|
|
1251
|
-
/**
|
|
1251
|
+
/** LiveSession's TrackID */
|
|
1252
1252
|
trackId: string;
|
|
1253
1253
|
}
|
|
1254
1254
|
/**
|
package/package.json
CHANGED
package/src/types/settings.ts
CHANGED
|
@@ -972,15 +972,15 @@ export interface EditLink {
|
|
|
972
972
|
* Analytics configuration
|
|
973
973
|
*/
|
|
974
974
|
export interface IntegrationAnalytics {
|
|
975
|
-
/**
|
|
975
|
+
/** LiveSession analytics configuration */
|
|
976
976
|
livesession?: IntegrationAnalyticsLiveSession
|
|
977
977
|
}
|
|
978
978
|
|
|
979
979
|
/**
|
|
980
|
-
*
|
|
980
|
+
* LiveSession analytics configuration
|
|
981
981
|
*/
|
|
982
982
|
export interface IntegrationAnalyticsLiveSession {
|
|
983
|
-
/**
|
|
983
|
+
/** LiveSession's TrackID */
|
|
984
984
|
trackId: string
|
|
985
985
|
}
|
|
986
986
|
// #endregion IntegrationAnalytics
|