/** * Organizations Resource * * Manage organizations (schools, districts, departments). */ import { BaseResource } from '../base'; import type { z } from 'zod/v4'; import type { OrgCreateInput } from '@timeback/types/zod'; import type { ListParamsNoSearch, OneRosterTransportLike, Organization, OrganizationFilterFields } from '../../types'; /** * Resource for all organizations regardless of type. * * For school-specific access with nested resources, use SchoolsResource. */ export declare class OrgsResource extends BaseResource> { constructor(transport: OneRosterTransportLike); protected get unwrapKey(): string; protected get wrapKey(): string; protected get createSchema(): z.ZodTypeAny; protected get updateSchema(): z.ZodTypeAny; } //# sourceMappingURL=orgs.d.ts.map