UNPKG

@fairmint/canton-node-sdk

Version:
13 lines 886 B
import { type z } from 'zod'; import type { paths } from '../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi'; import { UpdateUserIdentityProviderParamsSchema } from '../../../schemas/operations'; type Endpoint = '/v2/users/{user-id}/identity-provider-id'; export type UpdateUserIdentityProviderParams = z.infer<typeof UpdateUserIdentityProviderParamsSchema>; export type UpdateUserIdentityProviderResponse = paths[Endpoint]['patch']['responses']['200']['content']['application/json']; export declare const UpdateUserIdentityProvider: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{ userId: string; sourceIdentityProviderId: string; targetIdentityProviderId: string; }, Record<string, never>>; export {}; //# sourceMappingURL=update-user-identity-provider.d.ts.map