@zernio/node 0.2.121 → 0.2.123
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 +8 -0
- package/dist/index.d.mts +409 -22
- package/dist/index.d.ts +409 -22
- package/dist/index.js +56 -0
- package/dist/index.mjs +56 -0
- package/package.json +1 -1
- package/src/client.ts +16 -0
- package/src/generated/sdk.gen.ts +181 -15
- package/src/generated/types.gen.ts +426 -21
package/README.md
CHANGED
|
@@ -369,15 +369,23 @@ try {
|
|
|
369
369
|
| `ads.listAdAccounts()` | List ad accounts |
|
|
370
370
|
| `ads.listAds()` | List ads |
|
|
371
371
|
| `ads.listAdsBusinessCenters()` | List TikTok Business Centers |
|
|
372
|
+
| `ads.listConversionAssociations()` | List campaigns associated with a conversion destination |
|
|
372
373
|
| `ads.listConversionDestinations()` | List destinations for the Conversions API |
|
|
374
|
+
| `ads.createConversionDestination()` | Create a conversion destination (LinkedIn) |
|
|
373
375
|
| `ads.createCtwaAd()` | Create Click-to-WhatsApp ad |
|
|
374
376
|
| `ads.createStandaloneAd()` | Create standalone ad |
|
|
375
377
|
| `ads.getAd()` | Get ad details |
|
|
376
378
|
| `ads.getAdAnalytics()` | Get ad analytics |
|
|
377
379
|
| `ads.getAdComments()` | List comments on an ad |
|
|
380
|
+
| `ads.getConversionDestination()` | Fetch a single conversion destination |
|
|
381
|
+
| `ads.getConversionMetrics()` | Fetch attribution metrics for a conversion destination |
|
|
378
382
|
| `ads.updateAd()` | Update ad |
|
|
383
|
+
| `ads.updateConversionDestination()` | Update a conversion destination |
|
|
379
384
|
| `ads.deleteAd()` | Cancel an ad |
|
|
385
|
+
| `ads.deleteConversionDestination()` | Soft-delete a conversion destination |
|
|
386
|
+
| `ads.addConversionAssociations()` | Associate campaigns with a conversion destination |
|
|
380
387
|
| `ads.boostPost()` | Boost post as ad |
|
|
388
|
+
| `ads.removeConversionAssociations()` | Remove campaign↔conversion associations |
|
|
381
389
|
| `ads.searchAdInterests()` | Search targeting interests |
|
|
382
390
|
| `ads.searchAdTargetingLocations()` | Search geo targeting locations (Meta) |
|
|
383
391
|
| `ads.sendConversions()` | Send conversion events to an ad platform |
|