import { AuthChain } from '../misc/auth-chain'; import { JSONSchema, ValidateFunction } from '../validation'; /** * This type describes the minimum deployment + AuthChain needed to synchronize * a deployed entity across catalysts. * @public @deprecated */ export type DeploymentWithAuthChain = { entityId: string; entityType: string; pointers: string[]; localTimestamp: number; authChain: AuthChain; }; /** * @public * @deprecated use SyncDeployment instead */ export declare namespace DeploymentWithAuthChain { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=deployment-with-auth-chain.d.ts.map