docs: update implementation plan and add backend completion summary
- Mark backend as complete in IMPLEMENTATION_PLAN.md - Create ADMIN_BACKEND_COMPLETE.md with full documentation - Document all API endpoints - Add testing instructions - Add deployment notes
This commit is contained in:
20
apps/api/dist/admin/admin-users.controller.d.ts
vendored
20
apps/api/dist/admin/admin-users.controller.d.ts
vendored
@@ -4,8 +4,8 @@ export declare class AdminUsersController {
|
||||
constructor(service: AdminUsersService);
|
||||
findAll(search?: string): Promise<{
|
||||
id: string;
|
||||
createdAt: Date;
|
||||
email: string;
|
||||
createdAt: Date;
|
||||
emailVerified: boolean;
|
||||
name: string | null;
|
||||
role: string;
|
||||
@@ -28,10 +28,10 @@ export declare class AdminUsersController {
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
name: string;
|
||||
currency: string;
|
||||
slug: string;
|
||||
description: string | null;
|
||||
price: import("@prisma/client/runtime/library").Decimal;
|
||||
currency: string;
|
||||
durationType: string;
|
||||
durationDays: number | null;
|
||||
trialDays: number;
|
||||
@@ -70,15 +70,15 @@ export declare class AdminUsersController {
|
||||
};
|
||||
} & {
|
||||
id: string;
|
||||
email: string;
|
||||
phone: string | null;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
status: string;
|
||||
email: string;
|
||||
emailVerified: boolean;
|
||||
passwordHash: string | null;
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
phone: string | null;
|
||||
defaultCurrency: string | null;
|
||||
timeZone: string | null;
|
||||
otpEmailEnabled: boolean;
|
||||
@@ -94,15 +94,15 @@ export declare class AdminUsersController {
|
||||
role: string;
|
||||
}): Promise<{
|
||||
id: string;
|
||||
email: string;
|
||||
phone: string | null;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
status: string;
|
||||
email: string;
|
||||
emailVerified: boolean;
|
||||
passwordHash: string | null;
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
phone: string | null;
|
||||
defaultCurrency: string | null;
|
||||
timeZone: string | null;
|
||||
otpEmailEnabled: boolean;
|
||||
@@ -118,15 +118,15 @@ export declare class AdminUsersController {
|
||||
reason: string;
|
||||
}): Promise<{
|
||||
id: string;
|
||||
email: string;
|
||||
phone: string | null;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
status: string;
|
||||
email: string;
|
||||
emailVerified: boolean;
|
||||
passwordHash: string | null;
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
phone: string | null;
|
||||
defaultCurrency: string | null;
|
||||
timeZone: string | null;
|
||||
otpEmailEnabled: boolean;
|
||||
@@ -140,15 +140,15 @@ export declare class AdminUsersController {
|
||||
}>;
|
||||
unsuspend(id: string): Promise<{
|
||||
id: string;
|
||||
email: string;
|
||||
phone: string | null;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
status: string;
|
||||
email: string;
|
||||
emailVerified: boolean;
|
||||
passwordHash: string | null;
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
phone: string | null;
|
||||
defaultCurrency: string | null;
|
||||
timeZone: string | null;
|
||||
otpEmailEnabled: boolean;
|
||||
|
||||
Reference in New Issue
Block a user