@zernio/node 0.2.787 → 0.2.788

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/dist/index.d.mts CHANGED
@@ -39179,7 +39179,7 @@ type SearchAdTargetingData = {
39179
39179
  type SearchAdTargetingResponse = ({
39180
39180
  results?: Array<{
39181
39181
  /**
39182
- * The platform's opaque id. Use as a geo `key` (regions/cities/zips/metros) or an entity `id` (interests/behaviors) in TargetingSpec.
39182
+ * The platform's opaque id. Use as a geo `key` (regions/cities/zips/metros) or an entity `id` (interests/behaviors) in TargetingSpec. A `country` result is the exception on every platform: its id is the ISO 3166-1 alpha-2 code, which is what `targeting.countries` takes.
39183
39183
  */
39184
39184
  id: string;
39185
39185
  /**
package/dist/index.d.ts CHANGED
@@ -39179,7 +39179,7 @@ type SearchAdTargetingData = {
39179
39179
  type SearchAdTargetingResponse = ({
39180
39180
  results?: Array<{
39181
39181
  /**
39182
- * The platform's opaque id. Use as a geo `key` (regions/cities/zips/metros) or an entity `id` (interests/behaviors) in TargetingSpec.
39182
+ * The platform's opaque id. Use as a geo `key` (regions/cities/zips/metros) or an entity `id` (interests/behaviors) in TargetingSpec. A `country` result is the exception on every platform: its id is the ISO 3166-1 alpha-2 code, which is what `targeting.countries` takes.
39183
39183
  */
39184
39184
  id: string;
39185
39185
  /**
package/dist/index.js CHANGED
@@ -36,7 +36,7 @@ module.exports = __toCommonJS(index_exports);
36
36
  // package.json
37
37
  var package_default = {
38
38
  name: "@zernio/node",
39
- version: "0.2.787",
39
+ version: "0.2.788",
40
40
  description: "The official Node.js library for the Zernio API",
41
41
  main: "dist/index.js",
42
42
  module: "dist/index.mjs",
package/dist/index.mjs CHANGED
@@ -5,7 +5,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
5
5
  // package.json
6
6
  var package_default = {
7
7
  name: "@zernio/node",
8
- version: "0.2.787",
8
+ version: "0.2.788",
9
9
  description: "The official Node.js library for the Zernio API",
10
10
  main: "dist/index.js",
11
11
  module: "dist/index.mjs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zernio/node",
3
- "version": "0.2.787",
3
+ "version": "0.2.788",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -10451,15 +10451,20 @@ export const searchAdInterests = <ThrowOnError extends boolean = false>(options:
10451
10451
  * TikTok geo searches return every matching level in one list (`type` is
10452
10452
  * `country`, `region`, `city`, `district`, or `metro` for DMA areas), and
10453
10453
  * `geoType` is not applied. Results are scoped to the advertiser's targetable
10454
- * markets, and every id is usable in `regions`/`cities`/`metros` keys on
10455
- * `POST /v1/ads/create`.
10454
+ * markets. A `country` result's id is its ISO 3166-1 alpha-2 code, for
10455
+ * `targeting.countries`; every other id is TikTok's numeric location id,
10456
+ * usable in `regions`/`cities`/`metros` keys on `POST /v1/ads/create`.
10456
10457
  *
10457
10458
  * LinkedIn geo searches also return every matching level in one list, and
10458
10459
  * neither `geoType` nor `countryCode` is applied: LinkedIn's typeahead only
10459
10460
  * returns a name and a URN per result, with no level or country field to
10460
- * filter on. Every result has `type` set to `location`, and its id is a
10461
- * `urn:li:geo:*` URN usable as a `regions[].key` on `POST /v1/ads/create`,
10462
- * `POST /v1/ads/boost` and `POST /v1/ads/targeting/reach-estimate`.
10461
+ * filter on. A result whose URN is a country Zernio holds a code for has
10462
+ * `type: country` and its ISO 3166-1 alpha-2 code as the id, for
10463
+ * `targeting.countries`. Every other result has `type: region` and keeps
10464
+ * its `urn:li:geo:*` URN as the id, usable as a `regions[].key` on
10465
+ * `POST /v1/ads/create`, `POST /v1/ads/boost` and
10466
+ * `POST /v1/ads/targeting/reach-estimate` (LinkedIn puts countries and
10467
+ * regions in the same `locations` facet, so both target the same way).
10463
10468
  *
10464
10469
  * LinkedIn B2B searches (`industry`, `jobFunction`, `seniority`, `companySize`) return the
10465
10470
  * full URN to pass straight back, so no URN id fragment has to be assembled by hand:
@@ -10475,11 +10480,13 @@ export const searchAdInterests = <ThrowOnError extends boolean = false>(options:
10475
10480
  * `target_type` is an open taxonomy that does not map one-to-one onto the
10476
10481
  * `geoType` enum), so filter client-side on the returned `type` (`country`,
10477
10482
  * `region`, `city`, `zip`, `metro`, or the lowercased Google target type for
10478
- * rarer levels). `countryCode` scopes the search to one country. Each id is
10479
- * Google's numeric criterion id, usable as a `regions`/`cities`/`zips`/`metros`
10480
- * `key` on `POST /v1/ads/create`. Google city radius is not supported (pass a
10481
- * `customLocations` lat/lng pin for a radius); country targeting also accepts
10482
- * plain ISO codes via `countries` with no search call.
10483
+ * rarer levels). `countryCode` scopes the search to one country. A `country`
10484
+ * result's id is its ISO 3166-1 alpha-2 code, for `targeting.countries`;
10485
+ * every other id is Google's numeric criterion id, usable as a
10486
+ * `regions`/`cities`/`zips`/`metros` `key` on `POST /v1/ads/create`. Google
10487
+ * city radius is not supported (pass a `customLocations` lat/lng pin for a
10488
+ * radius); country targeting also accepts plain ISO codes via `countries`
10489
+ * with no search call.
10483
10490
  *
10484
10491
  * Pinterest resolves against three whole-catalog endpoints (interests, locations,
10485
10492
  * regions) with no server-side query or pagination, so matching, ranking and the
@@ -39831,7 +39831,7 @@ export type SearchAdTargetingData = {
39831
39831
  export type SearchAdTargetingResponse = ({
39832
39832
  results?: Array<{
39833
39833
  /**
39834
- * The platform's opaque id. Use as a geo `key` (regions/cities/zips/metros) or an entity `id` (interests/behaviors) in TargetingSpec.
39834
+ * The platform's opaque id. Use as a geo `key` (regions/cities/zips/metros) or an entity `id` (interests/behaviors) in TargetingSpec. A `country` result is the exception on every platform: its id is the ISO 3166-1 alpha-2 code, which is what `targeting.countries` takes.
39835
39835
  */
39836
39836
  id: string;
39837
39837
  /**