Skip to content

Commit

Permalink
📝 Updated Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Jun 25, 2024
1 parent e1b87c2 commit b3bc049
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/open-source/contributors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ For the sake of this guide, let's map the common object `contact` under `crm` ca
slug: string;
remote_id: string;
}[]
): UnifiedContactOutput | UnifiedContactOutput[];
): Promise<UnifiedContactOutput | UnifiedContactOutput[]>;
}
```

Expand All @@ -222,7 +222,7 @@ For the sake of this guide, let's map the common object `contact` under `crm` ca
slug: string;
remote_id: string;
}[],
): UnifiedContactOutput | UnifiedContactOutput[] {}
): Promise<UnifiedContactOutput | UnifiedContactOutput[]> {}
}
```

Expand Down Expand Up @@ -269,7 +269,7 @@ Now you must test Panora unified endpoints with the new connector built.
The values for `linkedUserId` and `projectId` are to be found within the webapp at `localhost`
```shell Insert an api key connection
curl --request POST \
--url http://localhost:3000/connections/apikey/callback?query=state \
--url http://localhost:3000/connections/apikey/callback?state=state \
--header 'Content-Type: application/json' \
--data '{
"apikey": "YOUR_CONNECTOR_API_KEY",
Expand Down

0 comments on commit b3bc049

Please sign in to comment.