first commit

This commit is contained in:
Stefan Hacker
2026-01-29 01:16:54 +01:00
commit 31f807fbd0
12106 changed files with 2480685 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
export declare function getAllPlatforms(includeInactive?: boolean): Promise<{
id: number;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
name: string;
contactInfo: string | null;
}[]>;
export declare function getPlatformById(id: number): Promise<({
_count: {
contracts: number;
};
} & {
id: number;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
name: string;
contactInfo: string | null;
}) | null>;
export declare function createPlatform(data: {
name: string;
contactInfo?: string;
}): Promise<{
id: number;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
name: string;
contactInfo: string | null;
}>;
export declare function updatePlatform(id: number, data: {
name?: string;
contactInfo?: string;
isActive?: boolean;
}): Promise<{
id: number;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
name: string;
contactInfo: string | null;
}>;
export declare function deletePlatform(id: number): Promise<{
id: number;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
name: string;
contactInfo: string | null;
}>;
//# sourceMappingURL=platform.service.d.ts.map