@zernio/node 0.2.807 → 0.2.808
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 +2 -0
- package/dist/index.d.mts +255 -65
- package/dist/index.d.ts +255 -65
- package/dist/index.js +15 -1
- package/dist/index.mjs +15 -1
- package/package.json +1 -1
- package/src/client.ts +4 -0
- package/src/generated/sdk.gen.ts +83 -43
- package/src/generated/types.gen.ts +260 -64
package/README.md
CHANGED
|
@@ -338,6 +338,7 @@ try {
|
|
|
338
338
|
| `connect.getSubredditRules()` | Get subreddit rules |
|
|
339
339
|
| `connect.getTelegramConnectStatus()` | Generate Telegram code |
|
|
340
340
|
| `connect.getWhatsAppSdkConfig()` | Get Embedded Signup SDK config |
|
|
341
|
+
| `connect.getWordPressAuthUrl()` | Get WordPress.com OAuth connect URL |
|
|
341
342
|
| `connect.getYoutubeCaptions()` | Get a YouTube video transcript |
|
|
342
343
|
| `connect.getYoutubePlaylists()` | List YouTube playlists |
|
|
343
344
|
| `connect.updateFacebookPage()` | Update Facebook page |
|
|
@@ -359,6 +360,7 @@ try {
|
|
|
359
360
|
| `connect.connectSlackChannel()` | Connect a Slack channel |
|
|
360
361
|
| `connect.connectWhatsAppCredentials()` | Connect WhatsApp via credentials |
|
|
361
362
|
| `connect.connectWhatsAppEmbeddedSignup()` | Connect WhatsApp from Embedded Signup |
|
|
363
|
+
| `connect.connectWordPressWithApplicationPassword()` | Connect self-hosted WordPress with an application password |
|
|
362
364
|
| `connect.handleOAuthCallback()` | Complete OAuth callback |
|
|
363
365
|
| `connect.initiateTelegramConnect()` | Connect Telegram directly |
|
|
364
366
|
| `connect.resyncPageWebhookSubscription()` | Re-subscribe a Facebook Page to Zernio's webhooks |
|