/******************************************************************************** * MIT License * © Copyright 2023 Adobe. All rights reserved. * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. ********************************************************************************/ import { UserPreferences } from "@adobe/ccweb-add-on-core"; import "reflect-metadata"; import { CLIProgram } from "../models/CLIProgram.js"; /** * Analytics service implementation. */ export declare class AnalyticsService { private readonly _preferences; private _program; private _startTime; /** * Instantiate {@link AnalyticsService}. * @param preferences - {@link UserPreferences} reference. * @returns Reference to a new {@link AnalyticsService} instance. */ constructor(preferences: UserPreferences); /** * Set the program which is being executed. * @param program - {@link CLIProgram} reference. */ set program(program: CLIProgram); /** * Set the start time of an operation. */ set startTime(time: number); /** * Post an event to Adobe analytics service. * @param eventType - Event type, either a SUCCESS, or an ERROR. * @param eventData - Event data. * @param isSuccess - Does the event represent a successful operation. * @returns Promise. */ postEvent(eventType: string, eventData: string, isSuccess: boolean): Promise; private _getClientId; } //# sourceMappingURL=AnalyticsService.d.ts.map