@@ -186,11 +186,6 @@ declare const enum TrackingTypes {
186186 */
187187 Initialization = "initialization" ,
188188
189- /**
190- * Defines that the data contains feature that should be tracked.
191- */
192- Feature = "feature" ,
193-
194189 /**
195190 * Defines that the data contains exception that should be tracked.
196191 */
@@ -670,19 +665,10 @@ interface IDictionary<T> {
670665
671666interface IAnalyticsService {
672667 checkConsent ( ) : Promise < void > ;
673- trackFeature ( featureName : string ) : Promise < void > ;
674668 trackException ( exception : any , message : string ) : Promise < void > ;
675669 setStatus ( settingName : string , enabled : boolean ) : Promise < void > ;
676670 getStatusMessage ( settingName : string , jsonFormat : boolean , readableSettingName : string ) : Promise < string > ;
677671 isEnabled ( settingName : string ) : Promise < boolean > ;
678- track ( featureName : string , featureValue : string ) : Promise < void > ;
679-
680- /**
681- * Tries to stop current eqatec monitor, clean it's state and remove the process.exit event handler.
682- * @param {string|number } code - Exit code as the method is used for process.exit event handler.
683- * @return void
684- */
685- tryStopEqatecMonitors ( code ?: string | number ) : void ;
686672
687673 /**
688674 * Tracks the answer of question if user allows to be tracked.
@@ -2035,4 +2021,4 @@ declare module "stringify-package" {
20352021declare module "detect-newline" {
20362022 function detectNewline ( data : string ) : string | null ;
20372023 export = detectNewline
2038- }
2024+ }
0 commit comments