@fairmint/canton-node-sdk
Version:
Canton Node SDK
13 lines • 720 B
TypeScript
import { z } from 'zod';
import type { paths } from '../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi';
type Endpoint = '/v2/users/{user-id}';
export declare const DeleteUserParamsSchema: z.ZodObject<{
userId: z.ZodString;
}, z.core.$strip>;
export type DeleteUserParams = z.infer<typeof DeleteUserParamsSchema>;
export type DeleteUserResponse = paths[Endpoint]['delete']['responses']['200']['content']['application/json'];
export declare const DeleteUser: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
userId: string;
}, Record<string, never>>;
export {};
//# sourceMappingURL=delete-user.d.ts.map