interview-widget 1.0.14 → 1.0.16

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.
@@ -6,6 +6,7 @@ interface VideoFeedProps {
6
6
  interviewId?: string;
7
7
  interview_duration?: number | undefined;
8
8
  showProctoringUI?: boolean;
9
+ onSetReference?: () => void;
9
10
  }
10
11
  declare const VideoFeed: import('react').ForwardRefExoticComponent<VideoFeedProps & import('react').RefAttributes<VideoFeedHandle>>;
11
12
  export default VideoFeed;
package/dist/types.d.ts CHANGED
@@ -25,6 +25,7 @@ export interface InterviewQuestionResponse {
25
25
  }
26
26
  export interface InterviewWidgetProps {
27
27
  interviewId: string;
28
+ brandName?: string;
28
29
  title?: string;
29
30
  onInterviewEnd?: () => void;
30
31
  onInterviewDisqualify?: () => void;
@@ -6,3 +6,4 @@ export declare function sleep(ms: number): Promise<void>;
6
6
  export declare function generateButtonGradient(baseColor: string): string;
7
7
  export declare const generateUniqueId: () => string;
8
8
  export declare function decodeJwt(token: string): Record<string, any> | null;
9
+ export declare const getFirstCapital: (str: string | null | undefined) => string;