npm package diff

Package: @forge/bridge

Versions: 5.7.0-next.10 - 5.7.0-next.11

File: package/out/featureFlags/featureFlags.d.ts

Index: package/out/featureFlags/featureFlags.d.ts
===================================================================
--- package/out/featureFlags/featureFlags.d.ts
+++ package/out/featureFlags/featureFlags.d.ts
@@ -1,6 +1,7 @@
+import { FeatureFlagEnvironment } from '../types';
 export interface ForgeFeatureFlagConfig {
-    environment?: 'development' | 'staging' | 'production';
+    environment?: FeatureFlagEnvironment;
 }
 export interface FeatureFlagUser {
     userId?: string;
     custom?: Record<string, string | number>;
@@ -19,12 +20,14 @@
 export declare class ForgeFeatureFlags {
     private initialized;
     private client;
     private dataAdapter;
+    private eventProps;
     private readonly CLIENT_KEY;
     initialize(user: FeatureFlagUser, config?: ForgeFeatureFlagConfig): Promise<void>;
     checkFlag(flagName: string): boolean;
     shutdown(): Promise<void>;
     isInitialized(): boolean;
     private convertUser;
+    private sendCheckFlagEvent;
 }
 //# sourceMappingURL=featureFlags.d.ts.map
\ No newline at end of file