Skip to content

Commit 6dc7705

Browse files
v1.0.1
1 parent a74be79 commit 6dc7705

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ Send connection requests to LinkedIn users with optional personalized messages.
371371
```typescript
372372
await linkedapi.account.sendConnectionRequest({
373373
personUrl: "https://www.linkedin.com/in/john-doe",
374-
message: "Hello! I'd love to connect and discuss opportunities.",
374+
note: "Hello! I'd love to connect and discuss opportunities.",
375375
});
376376
```
377377

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkedapi-node",
3-
"version": "1.0.0-alpha.1",
3+
"version": "1.0.1",
44
"description": "Official TypeScript SDK for Linked API",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/account-api/account-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ export class AccountApi {
865865
* ```typescript
866866
* const connectionWorkflow = await linkedapi.account.sendConnectionRequest({
867867
* personUrl: "https://www.linkedin.com/in/john-doe",
868-
* message: "Hi John, I'd love to connect and discuss opportunities in tech!"
868+
* note: "Hi John, I'd love to connect and discuss opportunities in tech!"
869869
* });
870870
*
871871
* await connectionWorkflow.result();

0 commit comments

Comments
 (0)