@dyrected/admin 2.5.27 → 2.5.28

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
@@ -23,8 +23,10 @@ export interface AdminUIProps {
23
23
  onNavigate?: (path: string) => void;
24
24
  isEmbedded?: boolean;
25
25
  components?: DyrectedProviderProps['components'];
26
+ initialToken?: string;
27
+ defaultTechStack?: string;
26
28
  }
27
- export declare function AdminUI({ apiKey, baseUrl, siteId, onNavigate, isEmbedded, components }: AdminUIProps): import("react/jsx-runtime").JSX.Element;
29
+ export declare function AdminUI({ apiKey, baseUrl, siteId, onNavigate, isEmbedded, components, initialToken, defaultTechStack, }: AdminUIProps): import("react/jsx-runtime").JSX.Element;
28
30
  /**
29
31
  * Renders the Admin UI into a DOM element.
30
32
  * Useful for non-React frameworks like Nuxt, Svelte, or Vanilla JS.