@fairmint/canton-node-sdk
Version:
Canton Node SDK
27 lines • 1.27 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 { SubmitAndWaitParamsSchema } from '../../../schemas/operations';
declare const endpoint: "/v2/commands/submit-and-wait";
export type SubmitAndWaitParams = z.infer<typeof SubmitAndWaitParamsSchema>;
export type SubmitAndWaitResponse = paths[typeof endpoint]['post']['responses']['200']['content']['application/json'];
export declare const SubmitAndWait: 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;
}, {
updateId: string;
completionOffset: number;
}>;
export {};
//# sourceMappingURL=submit-and-wait.d.ts.map