UNPKG

@fairmint/canton-node-sdk

Version:
40 lines 1.82 kB
import { z } from 'zod'; export declare const CreateAnsEntryRequestSchema: z.ZodObject<{ name: z.ZodString; url: z.ZodString; description: z.ZodString; }, z.core.$strip>; export declare const CreateAnsEntryResponseSchema: z.ZodObject<{ name: z.ZodString; url: z.ZodString; description: z.ZodString; entryContextCid: z.ZodString; subscriptionRequestCid: z.ZodString; }, z.core.$strip>; export declare const ListAnsEntriesResponseSchema: z.ZodObject<{ entries: z.ZodArray<z.ZodAny>; }, z.core.$strip>; export declare const ListAnsEntriesProxyResponseSchema: z.ZodObject<{ entries: z.ZodArray<z.ZodAny>; }, z.core.$strip>; export declare const LookupAnsEntryByNameResponseSchema: z.ZodObject<{ entry: z.ZodAny; }, z.core.$strip>; export declare const LookupAnsEntryByPartyResponseSchema: z.ZodObject<{ entry: z.ZodAny; }, z.core.$strip>; export declare const GetAnsRulesRequestSchema: z.ZodObject<{ name: z.ZodString; }, z.core.$strip>; export declare const GetAnsRulesResponseSchema: z.ZodObject<{ rules: z.ZodArray<z.ZodAny>; }, z.core.$strip>; export type CreateAnsEntryRequest = z.infer<typeof CreateAnsEntryRequestSchema>; export type CreateAnsEntryResponse = z.infer<typeof CreateAnsEntryResponseSchema>; export type ListAnsEntriesResponse = z.infer<typeof ListAnsEntriesResponseSchema>; export type ListAnsEntriesProxyResponse = z.infer<typeof ListAnsEntriesProxyResponseSchema>; export type LookupAnsEntryByNameResponse = z.infer<typeof LookupAnsEntryByNameResponseSchema>; export type LookupAnsEntryByPartyResponse = z.infer<typeof LookupAnsEntryByPartyResponseSchema>; export type GetAnsRulesRequest = z.infer<typeof GetAnsRulesRequestSchema>; export type GetAnsRulesResponse = z.infer<typeof GetAnsRulesResponseSchema>; //# sourceMappingURL=ans.d.ts.map