@adtrackify/at-service-common 1.0.17 → 1.0.18

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/dist/index.d.ts CHANGED
@@ -339,6 +339,17 @@ declare module '@adtrackify/at-service-common/types/db/destination' {
339
339
  required: boolean;
340
340
  order: number;
341
341
  }
342
+ export interface AdTrackifyFacebookDestination extends Destination {
343
+ configuration: FacebookPixelConfiguration;
344
+ }
345
+ export interface FacebookPixelConfiguration {
346
+ apiAccessToken?: string;
347
+ enableConversionAPI: boolean;
348
+ pixelId: string;
349
+ }
350
+ export interface GoogleAnalytics4Configuration {
351
+ measurementId: string;
352
+ }
342
353
 
343
354
  }
344
355
  declare module '@adtrackify/at-service-common/types/db/destinations' {