@nibssplc/cams-sdk-react 0.0.1-beta.76 → 0.0.1-beta.78

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.
@@ -3,5 +3,5 @@ interface MFAOptionsProps {
3
3
  onAuthFailed?: () => void;
4
4
  MFAEndpoint?: string;
5
5
  }
6
- declare const MFAOptions: ({ onComplete, onAuthFailed, MFAEndpoint }?: MFAOptionsProps) => import("react/jsx-runtime").JSX.Element;
6
+ declare const MFAOptions: ({ onComplete, onAuthFailed, MFAEndpoint, }?: MFAOptionsProps) => import("react/jsx-runtime").JSX.Element;
7
7
  export default MFAOptions;
@@ -16,6 +16,7 @@ interface MSALProviderProps extends BaseProviderProps, Omit<UseCAMSMSALAuthOptio
16
16
  msalInstance?: PublicClientApplication;
17
17
  }
18
18
  type UnifiedCAMSProviderProps = RegularProviderProps | MSALProviderProps;
19
+ export declare const setCookie: (name: string, value: string, days?: number) => void;
19
20
  export declare function UnifiedCAMSProvider(props: UnifiedCAMSProviderProps): import("react/jsx-runtime").JSX.Element;
20
21
  export declare const CAMSProvider: (props: Omit<RegularProviderProps, "mode">) => import("react/jsx-runtime").JSX.Element;
21
22
  export declare const CAMSMSALProvider: (props: Omit<MSALProviderProps, "mode">) => import("react/jsx-runtime").JSX.Element;