/** * Compatibility re-export. * * The canonical host/hosting facade contract now lives in `gdc-sdk-core-ts` so * browser and Node runtimes can share the same orchestration surface. This * file stays as a stable import path for existing Node consumers. */ export { confirmLegalOrganizationOrderWithDeps, HostLifecycleRequestType, HostedTenantLifecycleRequestType, submitHostedTenantLifecycleWithDeps, } from 'gdc-sdk-core-ts'; export type { HostingControllerFacade, HostLifecycleInput, HostRouteContext, HostedTenantLifecycleInput, LegalOrganizationOrderInput, } from 'gdc-sdk-core-ts'; /** Descendant groups that a controller can clean explicitly before tenant shutdown. */ /** * Tenant-owned subject group supported by the generic cleanup endpoint. * Employees use their dedicated encrypted lifecycle so license release and * audit metadata cannot be bypassed. */ export type HostedTenantDescendantKind = 'individuals';