@fairmint/canton-node-sdk
Version:
Canton Node SDK
24 lines • 1.23 kB
TypeScript
import { type z } from 'zod';
import type { paths } from '../../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi';
import { AsyncSubmitParamsSchema } from '../../../../schemas/operations';
declare const endpoint: "/v2/commands/async/submit";
export type AsyncSubmitParams = z.infer<typeof AsyncSubmitParamsSchema>;
export type AsyncSubmitResponse = paths[typeof endpoint]['post']['responses']['200']['content']['application/json'];
export declare const AsyncSubmit: new (client: import("../../../../../../core").BaseClient) => import("../../../../../../core").ApiOperation<{
commands: any[];
commandId?: string | undefined;
actAs?: string[] | undefined;
userId?: string | undefined;
readAs?: string[] | undefined;
workflowId?: string | undefined;
deduplicationPeriod?: any;
minLedgerTimeAbs?: string | undefined;
minLedgerTimeRel?: any;
submissionId?: string | undefined;
disclosedContracts?: any[] | undefined;
synchronizerId?: string | undefined;
packageIdSelectionPreference?: string[] | undefined;
prefetchContractKeys?: any[] | undefined;
}, Record<string, never>>;
export {};
//# sourceMappingURL=submit.d.ts.map