UNPKG

vwo-fme-node-sdk

Version:

VWO Node/JavaScript SDK for Feature Management and Experimentation

34 lines (33 loc) 1.44 kB
/** * Copyright 2024-2025 Wingify Software Pvt. Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { SettingsModel } from '../models/settings/SettingsModel'; import { ContextModel } from '../models/user/ContextModel'; /** * Creates and sends an impression for a variation shown event. * This function constructs the necessary properties and payload for the event * and uses the NetworkUtil to send a POST API request. * * @param {SettingsModel} settings - The settings model containing configuration. * @param {number} campaignId - The ID of the campaign. * @param {number} variationId - The ID of the variation shown to the user. * @param {ContextModel} context - The user context model containing user-specific data. */ export declare const createAndSendImpressionForVariationShown: ( settings: SettingsModel, campaignId: number, variationId: number, context: ContextModel, ) => Promise<void>;