mcp-talent-server
Version:
Model Context Protocol server for talent management tools
91 lines • 2.14 kB
TypeScript
import mongoose from "mongoose";
declare const SheetSchemaTracker: mongoose.Model<{
createdAt: NativeDate;
updatedAt: NativeDate;
} & {
userId: string;
version: number;
schema: any;
sheetId: string;
sheetName: string;
fieldTypes: any;
nestedPaths: string[];
lastUpdated: NativeDate;
}, {}, {}, {}, mongoose.Document<unknown, {}, {
createdAt: NativeDate;
updatedAt: NativeDate;
} & {
userId: string;
version: number;
schema: any;
sheetId: string;
sheetName: string;
fieldTypes: any;
nestedPaths: string[];
lastUpdated: NativeDate;
}, {}, {
timestamps: true;
}> & {
createdAt: NativeDate;
updatedAt: NativeDate;
} & {
userId: string;
version: number;
schema: any;
sheetId: string;
sheetName: string;
fieldTypes: any;
nestedPaths: string[];
lastUpdated: NativeDate;
} & {
_id: mongoose.Types.ObjectId;
} & {
__v: number;
}, mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
timestamps: true;
}, {
createdAt: NativeDate;
updatedAt: NativeDate;
} & {
userId: string;
version: number;
schema: any;
sheetId: string;
sheetName: string;
fieldTypes: any;
nestedPaths: string[];
lastUpdated: NativeDate;
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
createdAt: NativeDate;
updatedAt: NativeDate;
} & {
userId: string;
version: number;
schema: any;
sheetId: string;
sheetName: string;
fieldTypes: any;
nestedPaths: string[];
lastUpdated: NativeDate;
}>, {}, mongoose.ResolveSchemaOptions<{
timestamps: true;
}>> & mongoose.FlatRecord<{
createdAt: NativeDate;
updatedAt: NativeDate;
} & {
userId: string;
version: number;
schema: any;
sheetId: string;
sheetName: string;
fieldTypes: any;
nestedPaths: string[];
lastUpdated: NativeDate;
}> & {
_id: mongoose.Types.ObjectId;
} & {
__v: number;
}>>;
declare function getSchemas(): Promise<any>;
export { getSchemas, SheetSchemaTracker };
//# sourceMappingURL=sheet-schema-tracker.model.d.ts.map