@fairmint/canton-node-sdk
Version:
Canton Node SDK
24 lines • 1.06 kB
TypeScript
import z from 'zod';
import type { paths } from '../../../../../generated/apps/validator/src/main/openapi/scan-proxy';
type Endpoint = '/v0/scan-proxy/featured-apps/{provider_party_id}';
export type LookupFeaturedAppRightResponse = paths[Endpoint]['get']['responses']['200']['content']['application/json'];
export declare const GetFeaturedAppRightParamsSchema: z.ZodObject<{
partyId: z.ZodString;
}, z.core.$strip>;
export type GetFeaturedAppRightParams = z.infer<typeof GetFeaturedAppRightParamsSchema>;
/**
* Lookup featured app right
*
* @example
* ```typescript
* const right = await client.lookupFeaturedAppRight({ partyId: 'party123' });
*
* ```;
*/
export declare const LookupFeaturedAppRight: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
partyId: string;
}, {
featured_app_right?: import("../../../../../generated/apps/validator/src/main/openapi/scan-proxy").components["schemas"]["Contract"];
}>;
export {};
//# sourceMappingURL=lookup-featured-app-right.d.ts.map