@orsetra/shared-auth 1.1.2 → 1.1.3

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.
@@ -21,7 +21,7 @@ interface ZitadelContextType {
21
21
 
22
22
  const ZitadelContext = createContext<ZitadelContextType | undefined>(undefined)
23
23
 
24
- interface ZitadelProviderProps {
24
+ export interface ZitadelProviderProps {
25
25
  children: ReactNode
26
26
  config: ZitadelConfig
27
27
  /** Render the action button shown inside the session-expired modal. Receives the sign-in handler. */
package/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  // Auth exports - Main app
2
2
  export { ZitadelProvider, useZitadel } from './ZitadelProvider'
3
+ export type { ZitadelProviderProps } from './ZitadelProvider'
3
4
  export { ProtectedRoute } from './ProtectedRoute'
4
5
  export { ZitadelAuthService } from './services/zitadel.auth.service'
5
6
  export { createAuthConfig } from './config/zitadel.config'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orsetra/shared-auth",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Shared authentication utilities for Orsetra platform using Zitadel",
5
5
  "main": "./index.ts",
6
6
  "types": "./index.ts",