@zernio/node 0.2.33 → 0.2.35
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 +29 -0
- package/dist/index.d.mts +643 -16
- package/dist/index.d.ts +643 -16
- package/dist/index.js +134 -0
- package/dist/index.mjs +134 -0
- package/package.json +1 -1
- package/src/client.ts +52 -0
- package/src/generated/sdk.gen.ts +194 -1
- package/src/generated/types.gen.ts +668 -15
package/README.md
CHANGED
|
@@ -342,6 +342,35 @@ try {
|
|
|
342
342
|
| `accountSettings.setMessengerMenu()` | Set FB persistent menu |
|
|
343
343
|
| `accountSettings.setTelegramCommands()` | Set TG bot commands |
|
|
344
344
|
|
|
345
|
+
### Ad Audiences
|
|
346
|
+
| Method | Description |
|
|
347
|
+
|--------|-------------|
|
|
348
|
+
| `adAudiences.listAdAudiences()` | List custom audiences |
|
|
349
|
+
| `adAudiences.createAdAudience()` | Create a custom audience (Meta only) |
|
|
350
|
+
| `adAudiences.getAdAudience()` | Get audience details |
|
|
351
|
+
| `adAudiences.deleteAdAudience()` | Delete a custom audience |
|
|
352
|
+
| `adAudiences.addUsersToAdAudience()` | Add users to a customer list audience |
|
|
353
|
+
|
|
354
|
+
### Ad Campaigns
|
|
355
|
+
| Method | Description |
|
|
356
|
+
|--------|-------------|
|
|
357
|
+
| `adCampaigns.listAdCampaigns()` | List campaigns with aggregate metrics |
|
|
358
|
+
| `adCampaigns.updateAdCampaignStatus()` | Pause or resume a campaign |
|
|
359
|
+
|
|
360
|
+
### Ads
|
|
361
|
+
| Method | Description |
|
|
362
|
+
|--------|-------------|
|
|
363
|
+
| `ads.listAdAccounts()` | List ad accounts for a social account |
|
|
364
|
+
| `ads.listAds()` | List ads |
|
|
365
|
+
| `ads.createStandaloneAd()` | Create a standalone ad with custom creative |
|
|
366
|
+
| `ads.getAd()` | Get ad details |
|
|
367
|
+
| `ads.getAdAnalytics()` | Get ad analytics with daily breakdown |
|
|
368
|
+
| `ads.updateAd()` | Update ad (pause/resume, budget, targeting, name) |
|
|
369
|
+
| `ads.deleteAd()` | Cancel an ad |
|
|
370
|
+
| `ads.boostPost()` | Boost an existing post as a paid ad |
|
|
371
|
+
| `ads.searchAdInterests()` | Search targeting interests |
|
|
372
|
+
| `ads.syncExternalAds()` | Sync external ads from platform ad managers |
|
|
373
|
+
|
|
345
374
|
### Broadcasts
|
|
346
375
|
| Method | Description |
|
|
347
376
|
|--------|-------------|
|