@zernio/node 0.2.63 → 0.2.65
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 +9 -0
- package/dist/index.d.mts +507 -7
- package/dist/index.d.ts +507 -7
- package/dist/index.js +41 -1
- package/dist/index.mjs +41 -1
- package/package.json +1 -1
- package/src/client.ts +16 -0
- package/src/generated/sdk.gen.ts +94 -1
- package/src/generated/types.gen.ts +515 -6
package/README.md
CHANGED
|
@@ -352,6 +352,7 @@ try {
|
|
|
352
352
|
|--------|-------------|
|
|
353
353
|
| `ads.listAdAccounts()` | List ad accounts |
|
|
354
354
|
| `ads.listAds()` | List ads |
|
|
355
|
+
| `ads.listConversionDestinations()` | List destinations for the Conversions API |
|
|
355
356
|
| `ads.createStandaloneAd()` | Create standalone ad |
|
|
356
357
|
| `ads.getAd()` | Get ad details |
|
|
357
358
|
| `ads.getAdAnalytics()` | Get ad analytics |
|
|
@@ -359,6 +360,7 @@ try {
|
|
|
359
360
|
| `ads.deleteAd()` | Cancel an ad |
|
|
360
361
|
| `ads.boostPost()` | Boost post as ad |
|
|
361
362
|
| `ads.searchAdInterests()` | Search targeting interests |
|
|
363
|
+
| `ads.sendConversions()` | Send conversion events to an ad platform |
|
|
362
364
|
|
|
363
365
|
### Broadcasts
|
|
364
366
|
| Method | Description |
|
|
@@ -418,6 +420,13 @@ try {
|
|
|
418
420
|
| `customFields.clearContactFieldValue()` | Clear custom field value |
|
|
419
421
|
| `customFields.setContactFieldValue()` | Set custom field value |
|
|
420
422
|
|
|
423
|
+
### Discord
|
|
424
|
+
| Method | Description |
|
|
425
|
+
|--------|-------------|
|
|
426
|
+
| `discord.getDiscordChannels()` | List Discord guild channels |
|
|
427
|
+
| `discord.getDiscordSettings()` | Get Discord account settings |
|
|
428
|
+
| `discord.updateDiscordSettings()` | Update Discord settings |
|
|
429
|
+
|
|
421
430
|
### GMB Attributes
|
|
422
431
|
| Method | Description |
|
|
423
432
|
|--------|-------------|
|