@getlatedev/node 0.2.377 → 0.2.378
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 +26 -1
- package/dist/index.d.ts +26 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/generated/types.gen.ts +26 -1
package/dist/index.d.mts
CHANGED
|
@@ -10411,6 +10411,16 @@ type GetGoogleBusinessReviewsResponse = ({
|
|
|
10411
10411
|
comment?: string;
|
|
10412
10412
|
updateTime?: string;
|
|
10413
10413
|
} | null;
|
|
10414
|
+
/**
|
|
10415
|
+
* Number of photos attached to the review (photos only, videos are not counted)
|
|
10416
|
+
*/
|
|
10417
|
+
photoCount?: number;
|
|
10418
|
+
/**
|
|
10419
|
+
* Photos attached to the review by the reviewer
|
|
10420
|
+
*/
|
|
10421
|
+
photos?: Array<{
|
|
10422
|
+
url?: string;
|
|
10423
|
+
}>;
|
|
10414
10424
|
}>;
|
|
10415
10425
|
/**
|
|
10416
10426
|
* Overall average rating
|
|
@@ -16342,6 +16352,12 @@ type ListInboxReviewsResponse = ({
|
|
|
16342
16352
|
* Number of photos attached to the review (photos only; videos are not counted). Google Business only; 0 for other platforms.
|
|
16343
16353
|
*/
|
|
16344
16354
|
photoCount?: number;
|
|
16355
|
+
/**
|
|
16356
|
+
* Photos attached to the review. Google Business only; always an empty array for other platforms.
|
|
16357
|
+
*/
|
|
16358
|
+
photos?: Array<{
|
|
16359
|
+
url?: string;
|
|
16360
|
+
}>;
|
|
16345
16361
|
reply?: {
|
|
16346
16362
|
id?: string;
|
|
16347
16363
|
text?: string;
|
|
@@ -23912,7 +23928,16 @@ type CreateStandaloneAdData = {
|
|
|
23912
23928
|
*/
|
|
23913
23929
|
organizationId?: string;
|
|
23914
23930
|
/**
|
|
23915
|
-
*
|
|
23931
|
+
* Nested targeting object — the same TargetingSpec shape as `POST /v1/ads/boost`,
|
|
23932
|
+
* `POST /v1/ads/targeting/reach-estimate`, and `saved_targeting` audiences. Merged
|
|
23933
|
+
* UNDER the flat inline targeting fields below: `savedTargetingId` < `targeting` <
|
|
23934
|
+
* flat fields (a flat field present on the body replaces the nested value entirely).
|
|
23935
|
+
* Both forms are equivalent; use whichever your integration already builds.
|
|
23936
|
+
*
|
|
23937
|
+
*/
|
|
23938
|
+
targeting?: (TargetingSpec);
|
|
23939
|
+
/**
|
|
23940
|
+
* ISO 3166-1 alpha-2 country codes (e.g. ['NL']). Defaults to ['US'] when no other geo targeting (flat or nested `targeting`) is provided. (LinkedIn currently honours country-level targeting only.)
|
|
23916
23941
|
*/
|
|
23917
23942
|
countries?: Array<(string)>;
|
|
23918
23943
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -10411,6 +10411,16 @@ type GetGoogleBusinessReviewsResponse = ({
|
|
|
10411
10411
|
comment?: string;
|
|
10412
10412
|
updateTime?: string;
|
|
10413
10413
|
} | null;
|
|
10414
|
+
/**
|
|
10415
|
+
* Number of photos attached to the review (photos only, videos are not counted)
|
|
10416
|
+
*/
|
|
10417
|
+
photoCount?: number;
|
|
10418
|
+
/**
|
|
10419
|
+
* Photos attached to the review by the reviewer
|
|
10420
|
+
*/
|
|
10421
|
+
photos?: Array<{
|
|
10422
|
+
url?: string;
|
|
10423
|
+
}>;
|
|
10414
10424
|
}>;
|
|
10415
10425
|
/**
|
|
10416
10426
|
* Overall average rating
|
|
@@ -16342,6 +16352,12 @@ type ListInboxReviewsResponse = ({
|
|
|
16342
16352
|
* Number of photos attached to the review (photos only; videos are not counted). Google Business only; 0 for other platforms.
|
|
16343
16353
|
*/
|
|
16344
16354
|
photoCount?: number;
|
|
16355
|
+
/**
|
|
16356
|
+
* Photos attached to the review. Google Business only; always an empty array for other platforms.
|
|
16357
|
+
*/
|
|
16358
|
+
photos?: Array<{
|
|
16359
|
+
url?: string;
|
|
16360
|
+
}>;
|
|
16345
16361
|
reply?: {
|
|
16346
16362
|
id?: string;
|
|
16347
16363
|
text?: string;
|
|
@@ -23912,7 +23928,16 @@ type CreateStandaloneAdData = {
|
|
|
23912
23928
|
*/
|
|
23913
23929
|
organizationId?: string;
|
|
23914
23930
|
/**
|
|
23915
|
-
*
|
|
23931
|
+
* Nested targeting object — the same TargetingSpec shape as `POST /v1/ads/boost`,
|
|
23932
|
+
* `POST /v1/ads/targeting/reach-estimate`, and `saved_targeting` audiences. Merged
|
|
23933
|
+
* UNDER the flat inline targeting fields below: `savedTargetingId` < `targeting` <
|
|
23934
|
+
* flat fields (a flat field present on the body replaces the nested value entirely).
|
|
23935
|
+
* Both forms are equivalent; use whichever your integration already builds.
|
|
23936
|
+
*
|
|
23937
|
+
*/
|
|
23938
|
+
targeting?: (TargetingSpec);
|
|
23939
|
+
/**
|
|
23940
|
+
* ISO 3166-1 alpha-2 country codes (e.g. ['NL']). Defaults to ['US'] when no other geo targeting (flat or nested `targeting`) is provided. (LinkedIn currently honours country-level targeting only.)
|
|
23916
23941
|
*/
|
|
23917
23942
|
countries?: Array<(string)>;
|
|
23918
23943
|
/**
|
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: "@getlatedev/node",
|
|
39
|
-
version: "0.2.
|
|
39
|
+
version: "0.2.378",
|
|
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: "@getlatedev/node",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.378",
|
|
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
|
@@ -10033,6 +10033,16 @@ export type GetGoogleBusinessReviewsResponse = ({
|
|
|
10033
10033
|
comment?: string;
|
|
10034
10034
|
updateTime?: string;
|
|
10035
10035
|
} | null;
|
|
10036
|
+
/**
|
|
10037
|
+
* Number of photos attached to the review (photos only, videos are not counted)
|
|
10038
|
+
*/
|
|
10039
|
+
photoCount?: number;
|
|
10040
|
+
/**
|
|
10041
|
+
* Photos attached to the review by the reviewer
|
|
10042
|
+
*/
|
|
10043
|
+
photos?: Array<{
|
|
10044
|
+
url?: string;
|
|
10045
|
+
}>;
|
|
10036
10046
|
}>;
|
|
10037
10047
|
/**
|
|
10038
10048
|
* Overall average rating
|
|
@@ -16383,6 +16393,12 @@ export type ListInboxReviewsResponse = ({
|
|
|
16383
16393
|
* Number of photos attached to the review (photos only; videos are not counted). Google Business only; 0 for other platforms.
|
|
16384
16394
|
*/
|
|
16385
16395
|
photoCount?: number;
|
|
16396
|
+
/**
|
|
16397
|
+
* Photos attached to the review. Google Business only; always an empty array for other platforms.
|
|
16398
|
+
*/
|
|
16399
|
+
photos?: Array<{
|
|
16400
|
+
url?: string;
|
|
16401
|
+
}>;
|
|
16386
16402
|
reply?: {
|
|
16387
16403
|
id?: string;
|
|
16388
16404
|
text?: string;
|
|
@@ -24574,7 +24590,16 @@ export type CreateStandaloneAdData = {
|
|
|
24574
24590
|
*/
|
|
24575
24591
|
organizationId?: string;
|
|
24576
24592
|
/**
|
|
24577
|
-
*
|
|
24593
|
+
* Nested targeting object — the same TargetingSpec shape as `POST /v1/ads/boost`,
|
|
24594
|
+
* `POST /v1/ads/targeting/reach-estimate`, and `saved_targeting` audiences. Merged
|
|
24595
|
+
* UNDER the flat inline targeting fields below: `savedTargetingId` < `targeting` <
|
|
24596
|
+
* flat fields (a flat field present on the body replaces the nested value entirely).
|
|
24597
|
+
* Both forms are equivalent; use whichever your integration already builds.
|
|
24598
|
+
*
|
|
24599
|
+
*/
|
|
24600
|
+
targeting?: (TargetingSpec);
|
|
24601
|
+
/**
|
|
24602
|
+
* ISO 3166-1 alpha-2 country codes (e.g. ['NL']). Defaults to ['US'] when no other geo targeting (flat or nested `targeting`) is provided. (LinkedIn currently honours country-level targeting only.)
|
|
24578
24603
|
*/
|
|
24579
24604
|
countries?: Array<(string)>;
|
|
24580
24605
|
/**
|