UNPKG

@fairmint/canton-node-sdk

Version:
26 lines 1.66 kB
import { z } from 'zod'; import type { paths } from '../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi'; declare const endpoint: "/v2/users/{user-id}/rights"; export type GrantUserRightsParams = { userId: string; } & paths[typeof endpoint]['post']['requestBody']['content']['application/json']; export type GrantUserRightsResponse = paths[typeof endpoint]['post']['responses']['200']['content']['application/json']; export declare const GrantUserRights: { new (client: import("../../../../../core").BaseClient): { execute(params: GrantUserRightsParams): Promise<{ newlyGrantedRights?: import("../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi").components["schemas"]["Right"][]; }>; client: import("../../../../../core").BaseClient; validateParams<T>(params: T, schema: z.ZodSchema<T>): T; makeGetRequest<T>(url: string, config?: import("../../../../../core").RequestConfig): Promise<T>; makePostRequest<T>(url: string, data: unknown, config?: import("../../../../../core").RequestConfig): Promise<T>; makeDeleteRequest<T>(url: string, config?: import("../../../../../core").RequestConfig): Promise<T>; makePatchRequest<T>(url: string, data: unknown, config?: import("../../../../../core").RequestConfig): Promise<T>; getManagedParties(): string[]; getPartyId(): string | undefined; getApiUrl(): string; buildPartyList(additionalParties?: string[]): string[]; }; }; export {}; //# sourceMappingURL=grant-user-rights.d.ts.map