@getlatedev/node 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/index.d.mts +919 -9
- package/dist/index.d.ts +919 -9
- package/dist/index.js +138 -0
- package/dist/index.mjs +138 -0
- package/package.json +1 -1
- package/src/client.ts +44 -0
- package/src/generated/sdk.gen.ts +246 -2
- package/src/generated/types.gen.ts +956 -8
package/README.md
CHANGED
|
@@ -286,12 +286,15 @@ try {
|
|
|
286
286
|
| `connect.listPinterestBoardsForSelection()` | List Pinterest Boards after OAuth (Headless Mode) |
|
|
287
287
|
| `connect.listSnapchatProfiles()` | List Snapchat Public Profiles after OAuth (Headless Mode) |
|
|
288
288
|
| `connect.getConnectUrl()` | Start OAuth connection for a platform |
|
|
289
|
+
| `connect.getFacebookPages()` | List available Facebook pages for a connected account |
|
|
290
|
+
| `connect.getGmbLocations()` | List available Google Business Profile locations for a connected account |
|
|
289
291
|
| `connect.getLinkedInOrganizations()` | Get available LinkedIn organizations for a connected account |
|
|
290
292
|
| `connect.getPendingOAuthData()` | Fetch pending OAuth selection data (Headless Mode) |
|
|
291
293
|
| `connect.getPinterestBoards()` | List Pinterest boards for a connected account |
|
|
292
294
|
| `connect.getRedditSubreddits()` | List Reddit subreddits for a connected account |
|
|
293
295
|
| `connect.getTelegramConnectStatus()` | Generate Telegram access code |
|
|
294
296
|
| `connect.updateFacebookPage()` | Update selected Facebook page for a connected account |
|
|
297
|
+
| `connect.updateGmbLocation()` | Update selected Google Business Profile location for a connected account |
|
|
295
298
|
| `connect.updateLinkedInOrganization()` | Switch LinkedIn account type (personal/organization) |
|
|
296
299
|
| `connect.updatePinterestBoards()` | Set default Pinterest board on the connection |
|
|
297
300
|
| `connect.updateRedditSubreddits()` | Set default subreddit on the connection |
|