added platform integration with script and added invisible captcha

This commit is contained in:
moulichand16
2026-04-08 16:27:40 +05:30
parent a3afa43963
commit 932f8ecb2f
4 changed files with 87 additions and 16 deletions

View File

@@ -14,14 +14,26 @@ export const LEADS_QUERY = `{ leads(first: 100, orderBy: [{ createdAt: DescNulls
aiSummary aiSuggestedAction
} } } }`;
export const CAMPAIGNS_QUERY = `{ campaigns(first: 50, orderBy: [{ createdAt: DescNullsLast }]) { edges { node {
id name createdAt updatedAt
campaignName typeCustom status platform
startDate endDate
export const CAMPAIGNS_QUERY = `{ campaigns(first: 50) { edges { node {
id
name
createdAt
updatedAt
status
typeCustom
platform
startDate
endDate
budget { amountMicros currencyCode }
amountSpent { amountMicros currencyCode }
impressions clicks targetCount contacted converted leadsGenerated
externalCampaignId platformUrl { primaryLinkUrl }
impressions
clicks
targetCount
contacted
converted
leadsGenerated
externalCampaignId
platformUrl { primaryLinkUrl }
} } } }`;
export const ADS_QUERY = `{ ads(first: 100, orderBy: [{ createdAt: DescNullsLast }]) { edges { node {