diff --git a/integration-templates/linear/linear-projects.ts b/integration-templates/linear/linear-projects.ts index 3af96dd989f..26dcd4cac73 100644 --- a/integration-templates/linear/linear-projects.ts +++ b/integration-templates/linear/linear-projects.ts @@ -21,6 +21,7 @@ export default async function fetchData(nango: NangoSync) { nodes { id name + url description teams { nodes { @@ -60,6 +61,7 @@ function mapProjects(records: any[]): LinearProject[] { return { id: record.id, name: record.name, + url: record.url, description: record.description, createdAt: new Date(record.createdAt), updatedAt: new Date(record.updatedAt), diff --git a/integration-templates/linear/nango.yaml b/integration-templates/linear/nango.yaml index 0fd9f90d4b4..01fea352b1b 100644 --- a/integration-templates/linear/nango.yaml +++ b/integration-templates/linear/nango.yaml @@ -42,6 +42,7 @@ models: LinearProject: id: string + url: string name: string description: string | null createdAt: date