import * as z from "zod"; export type ListUserActionsRequest = { filter: string; offset: number; username: string; }; export type UserActions = { actingAvatarTemplate: string; actingName: string | null; actingUserId: number; actingUsername: string; actionCode: string | null; actionType: number; archived: boolean; avatarTemplate: string; categoryId: number; closed: boolean; createdAt: string; deleted: boolean; excerpt: string; hidden: string | null; name: string | null; postId: string | null; postNumber: number; postType: string | null; slug: string; targetName: string | null; targetUserId: number; targetUsername: string; title: string; topicId: number; userId: number; username: string; }; /** * response */ export type ListUserActionsResponseBody = { userActions: Array; }; /** @internal */ export declare const ListUserActionsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListUserActionsRequest$Outbound = { filter: string; offset: number; username: string; }; /** @internal */ export declare const ListUserActionsRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ListUserActionsRequest$ { /** @deprecated use `ListUserActionsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListUserActionsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListUserActionsRequest$Outbound` instead. */ type Outbound = ListUserActionsRequest$Outbound; } /** @internal */ export declare const UserActions$inboundSchema: z.ZodType; /** @internal */ export type UserActions$Outbound = { acting_avatar_template: string; acting_name: string | null; acting_user_id: number; acting_username: string; action_code: string | null; action_type: number; archived: boolean; avatar_template: string; category_id: number; closed: boolean; created_at: string; deleted: boolean; excerpt: string; hidden: string | null; name: string | null; post_id: string | null; post_number: number; post_type: string | null; slug: string; target_name: string | null; target_user_id: number; target_username: string; title: string; topic_id: number; user_id: number; username: string; }; /** @internal */ export declare const UserActions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace UserActions$ { /** @deprecated use `UserActions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UserActions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UserActions$Outbound` instead. */ type Outbound = UserActions$Outbound; } /** @internal */ export declare const ListUserActionsResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ListUserActionsResponseBody$Outbound = { user_actions: Array; }; /** @internal */ export declare const ListUserActionsResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ListUserActionsResponseBody$ { /** @deprecated use `ListUserActionsResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListUserActionsResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListUserActionsResponseBody$Outbound` instead. */ type Outbound = ListUserActionsResponseBody$Outbound; } //# sourceMappingURL=listuseractions.d.ts.map