UNPKG

@fairmint/canton-node-sdk

Version:
25 lines 1.14 kB
import { z } from 'zod'; export declare const CreateAnsEntryParamsSchema: z.ZodObject<{ name: z.ZodString; url: z.ZodString; description: z.ZodString; }, z.core.$strip>; export declare const GetAnsRulesParamsSchema: z.ZodObject<{ name: z.ZodString; }, z.core.$strip>; export declare const LookupAnsEntryByNameParamsSchema: z.ZodObject<{ name: z.ZodString; }, z.core.$strip>; export declare const LookupAnsEntryByPartyParamsSchema: z.ZodObject<{ party: z.ZodString; }, z.core.$strip>; export declare const ListAnsEntriesProxyParamsSchema: z.ZodObject<{ namePrefix: z.ZodOptional<z.ZodString>; pageSize: z.ZodDefault<z.ZodNumber>; }, z.core.$strip>; export type CreateAnsEntryParams = z.infer<typeof CreateAnsEntryParamsSchema>; export type GetAnsRulesParams = z.infer<typeof GetAnsRulesParamsSchema>; export type LookupAnsEntryByNameParams = z.infer<typeof LookupAnsEntryByNameParamsSchema>; export type LookupAnsEntryByPartyParams = z.infer<typeof LookupAnsEntryByPartyParamsSchema>; export type ListAnsEntriesProxyParams = z.infer<typeof ListAnsEntriesProxyParamsSchema>; //# sourceMappingURL=ans.d.ts.map