@fairmint/canton-node-sdk
Version:
Canton Node SDK
24 lines • 709 B
TypeScript
import { z } from 'zod';
export declare const GetPackageStatusParamsSchema: z.ZodObject<{
packageId: z.ZodString;
}, z.core.$strip>;
export type GetPackageStatusParams = z.infer<typeof GetPackageStatusParamsSchema>;
/**
* Get the status of a specific package
*
* @example
* ```typescript
* const status = await client.getPackageStatus({
* packageId: 'package-123'
* });
*
* ```;
*
* @param packageId - Package ID to get status for
*/
export declare const GetPackageStatus: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
packageId: string;
}, {
packageStatus: string;
}>;
//# sourceMappingURL=get-package-status.d.ts.map