import type * as qapps from "@distilled.cloud/aws/qapps"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { QApp } from "./QApp.ts"; /** * Request for {@link BatchUpdateCategory} — `instanceId` is injected from the bound Q App. */ export interface BatchUpdateCategoryRequest extends Omit { } /** * Runtime binding for `qapps:BatchUpdateCategory`. * * Renames or recolors existing library categories. Provide the implementation with * `Effect.provide(AWS.QApps.BatchUpdateCategoryHttp)`. * ### Categories * **Example:** Rename a Category * ```typescript * // init — bind the operation to the Q App * const batchUpdateCategory = yield* AWS.QApps.BatchUpdateCategory(app); * * // runtime * yield* batchUpdateCategory({ * categories: [{ id: categoryId, title: "People Ops" }], * }); * ``` * * @binding */ export interface BatchUpdateCategory extends Binding.Service Effect.Effect<(request: BatchUpdateCategoryRequest) => Effect.Effect>> { } export declare const BatchUpdateCategory: BatchUpdateCategory; //# sourceMappingURL=BatchUpdateCategory.d.ts.map