feat: add worklist engine with prioritized missed calls, follow-ups, and leads

This commit is contained in:
2026-03-18 11:26:04 +05:30
parent f0d3d2c9f1
commit 6f7d408724
8 changed files with 484 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ export class PlatformGraphqlService {
}
// Query using a passed-through auth header (user JWT)
private async queryWithAuth<T>(query: string, variables: Record<string, any> | undefined, authHeader: string): Promise<T> {
async queryWithAuth<T>(query: string, variables: Record<string, any> | undefined, authHeader: string): Promise<T> {
const response = await axios.post(
this.graphqlUrl,
{ query, variables },