@zernio/node 0.2.37 → 0.2.39
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 +18 -13
- package/dist/index.d.mts +629 -247
- package/dist/index.d.ts +629 -247
- package/dist/index.js +104 -69
- package/dist/index.mjs +104 -69
- package/package.json +1 -1
- package/src/client.ts +34 -24
- package/src/generated/sdk.gen.ts +192 -127
- package/src/generated/types.gen.ts +661 -274
package/README.md
CHANGED
|
@@ -208,6 +208,8 @@ try {
|
|
|
208
208
|
| `analytics.getBestTimeToPost()` | Get best times to post |
|
|
209
209
|
| `analytics.getContentDecay()` | Get content performance decay |
|
|
210
210
|
| `analytics.getDailyMetrics()` | Get daily aggregated metrics |
|
|
211
|
+
| `analytics.getGoogleBusinessPerformance()` | Get Google Business Profile performance metrics |
|
|
212
|
+
| `analytics.getGoogleBusinessSearchKeywords()` | Get Google Business Profile search keywords |
|
|
211
213
|
| `analytics.getInstagramAccountInsights()` | Get Instagram account-level insights |
|
|
212
214
|
| `analytics.getInstagramDemographics()` | Get Instagram audience demographics |
|
|
213
215
|
| `analytics.getLinkedInAggregateAnalytics()` | Get LinkedIn aggregate stats |
|
|
@@ -216,6 +218,7 @@ try {
|
|
|
216
218
|
| `analytics.getPostingFrequency()` | Get posting frequency vs engagement |
|
|
217
219
|
| `analytics.getPostTimeline()` | Get post analytics timeline |
|
|
218
220
|
| `analytics.getYouTubeDailyViews()` | Get YouTube daily views |
|
|
221
|
+
| `analytics.getYouTubeDemographics()` | Get YouTube audience demographics |
|
|
219
222
|
|
|
220
223
|
### Account Groups
|
|
221
224
|
| Method | Description |
|
|
@@ -257,19 +260,6 @@ try {
|
|
|
257
260
|
|--------|-------------|
|
|
258
261
|
| `media.getMediaPresignedUrl()` | Get presigned upload URL |
|
|
259
262
|
|
|
260
|
-
### Tools
|
|
261
|
-
| Method | Description |
|
|
262
|
-
|--------|-------------|
|
|
263
|
-
| `tools.getYouTubeTranscript()` | Get YouTube transcript |
|
|
264
|
-
| `tools.checkInstagramHashtags()` | Check IG hashtag bans |
|
|
265
|
-
| `tools.downloadBlueskyMedia()` | Download Bluesky media |
|
|
266
|
-
| `tools.downloadFacebookVideo()` | Download Facebook video |
|
|
267
|
-
| `tools.downloadInstagramMedia()` | Download Instagram media |
|
|
268
|
-
| `tools.downloadLinkedInVideo()` | Download LinkedIn video |
|
|
269
|
-
| `tools.downloadTikTokVideo()` | Download TikTok video |
|
|
270
|
-
| `tools.downloadTwitterMedia()` | Download Twitter/X media |
|
|
271
|
-
| `tools.downloadYouTubeVideo()` | Download YouTube video |
|
|
272
|
-
|
|
273
263
|
### Users
|
|
274
264
|
| Method | Description |
|
|
275
265
|
|--------|-------------|
|
|
@@ -355,6 +345,7 @@ try {
|
|
|
355
345
|
| Method | Description |
|
|
356
346
|
|--------|-------------|
|
|
357
347
|
| `adCampaigns.listAdCampaigns()` | List campaigns with aggregate metrics |
|
|
348
|
+
| `adCampaigns.getAdTree()` | Get nested campaign/ad-set/ad tree |
|
|
358
349
|
| `adCampaigns.updateAdCampaignStatus()` | Pause or resume a campaign |
|
|
359
350
|
|
|
360
351
|
### Ads
|
|
@@ -562,6 +553,20 @@ try {
|
|
|
562
553
|
| `whatsapp.sendWhatsAppBulk()` | Bulk send template messages |
|
|
563
554
|
| `whatsapp.uploadWhatsAppProfilePhoto()` | Upload profile picture |
|
|
564
555
|
|
|
556
|
+
### WhatsApp Flows
|
|
557
|
+
| Method | Description |
|
|
558
|
+
|--------|-------------|
|
|
559
|
+
| `whatsappFlows.listWhatsAppFlows()` | List flows |
|
|
560
|
+
| `whatsappFlows.createWhatsAppFlow()` | Create flow |
|
|
561
|
+
| `whatsappFlows.getWhatsAppFlow()` | Get flow |
|
|
562
|
+
| `whatsappFlows.getWhatsAppFlowJson()` | Get flow JSON asset |
|
|
563
|
+
| `whatsappFlows.updateWhatsAppFlow()` | Update flow |
|
|
564
|
+
| `whatsappFlows.deleteWhatsAppFlow()` | Delete flow |
|
|
565
|
+
| `whatsappFlows.deprecateWhatsAppFlow()` | Deprecate flow |
|
|
566
|
+
| `whatsappFlows.publishWhatsAppFlow()` | Publish flow |
|
|
567
|
+
| `whatsappFlows.sendWhatsAppFlowMessage()` | Send flow message |
|
|
568
|
+
| `whatsappFlows.uploadWhatsAppFlowJson()` | Upload flow JSON |
|
|
569
|
+
|
|
565
570
|
### WhatsApp Phone Numbers
|
|
566
571
|
| Method | Description |
|
|
567
572
|
|--------|-------------|
|