import { RestCommand } from "../../types.js"; import { SchemaDiffOutput } from "./diff.js"; //#region src/rest/commands/schema/apply.d.ts /** * Update the instance's schema by passing the diff previously retrieved via /schema/diff endpoint in the request body. This endpoint is only available to admin users. * @param diff JSON object containing hash and diffs of collections, fields, and relations to apply. * @returns Empty body. */ declare const schemaApply: (diff: SchemaDiffOutput) => RestCommand; //#endregion export { schemaApply }; //# sourceMappingURL=apply.d.ts.map