Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | import { z } from '@hono/zod-openapi';
export const getInfoAboutGroupsTheUserBelongsToResponseMemberElementSchema = z.object({
user_id: z.string().min(1),
user_name: z.string().min(1),
});
export const getInfoAboutGroupsTheUserBelongsToResponseGroupElementSchema = z.object({
group_id: z.uuid(),
group_name: z.string().min(1),
created_by_id: z.string().min(1),
created_by_name: z.string().min(1),
members: z.array(getInfoAboutGroupsTheUserBelongsToResponseMemberElementSchema),
});
export const getInfoAboutGroupsTheUserBelongsToResponseSchema = z.object({
groups: z.array(getInfoAboutGroupsTheUserBelongsToResponseGroupElementSchema),
});
export type GetInfoAboutGroupsTheUserBelongsToResponseMemberElementSchemaType = z.infer<
typeof getInfoAboutGroupsTheUserBelongsToResponseMemberElementSchema
>;
export type GetInfoAboutGroupsTheUserBelongsToResponseGroupElementSchemaType = z.infer<
typeof getInfoAboutGroupsTheUserBelongsToResponseGroupElementSchema
>;
export type GetInfoAboutGroupsTheUserBelongsToResponseSchemaType = z.infer<
typeof getInfoAboutGroupsTheUserBelongsToResponseSchema
>;
export const getInfoAboutUserTransactionsResponseTransactionElementSchema = z.object({
counterparty_id: z.string().min(1),
counterparty_name: z.string().min(1),
amount: z.number(),
});
export const getInfoAboutUserTransactionsResponseSchema = z.object({
transactions: z.array(getInfoAboutUserTransactionsResponseTransactionElementSchema),
});
export type GetInfoAboutUserTransactionsResponseTransactionElementSchemaType = z.infer<
typeof getInfoAboutUserTransactionsResponseTransactionElementSchema
>;
export type GetInfoAboutUserTransactionsResponseSchemaType = z.infer<typeof getInfoAboutUserTransactionsResponseSchema>;
|