//#region src/modules/namespaces/types.d.ts /** * Type for a namespace */ interface Namespace { /** Id */ id: string; /** Namespace name */ name: string; /** Credentials for fetchers used for namespace */ fetchLogin: { elastic: { /** Elastic username used to fetch data for reports in this namespace */ username: string; }; }; /** Additional options for fetchers used for namespace */ fetchOptions: { elastic: Record; }; /** Namespace logo */ logoId?: string; /** Creation date */ createdAt: Date; /** Last update date */ updatedAt?: Date | null; } //#endregion export { Namespace as t }; //# sourceMappingURL=types-DHTY3l5T.d.mts.map