@zernio/node 0.2.846 → 0.2.848

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
@@ -25562,6 +25562,10 @@ type ListInboxReviewsResponse = ({
25562
25562
  profileImage?: (string) | null;
25563
25563
  };
25564
25564
  rating?: number;
25565
+ /**
25566
+ * Facebook recommendation: positive means recommends, negative means does not recommend. Null or absent when unavailable; absent for other platforms. Independent of the numeric rating.
25567
+ */
25568
+ recommendationType?: ('positive' | 'negative') | null;
25565
25569
  text?: string;
25566
25570
  created?: string;
25567
25571
  hasReply?: boolean;
@@ -35206,6 +35210,10 @@ type DuplicateAdData = {
35206
35210
  renamePrefix?: string;
35207
35211
  renameSuffix?: string;
35208
35212
  syncAfter?: boolean;
35213
+ /**
35214
+ * Point the copy at the source ad's creative object instead of copying it, so the copy keeps the same Facebook post, the same Instagram media, their existing likes, comments and shares, and the full creative setup (text variations included). This is what Ads Manager's "show existing reactions, comments and shares" does. Meta's native copy always publishes new posts. A creative belongs to one ad account, so `adSetId` must be in the source ad's account. 400 when the source ad has no creative yet.
35215
+ */
35216
+ reuseSourceCreative?: boolean;
35209
35217
  };
35210
35218
  headers?: {
35211
35219
  /**
package/dist/index.d.ts CHANGED
@@ -25562,6 +25562,10 @@ type ListInboxReviewsResponse = ({
25562
25562
  profileImage?: (string) | null;
25563
25563
  };
25564
25564
  rating?: number;
25565
+ /**
25566
+ * Facebook recommendation: positive means recommends, negative means does not recommend. Null or absent when unavailable; absent for other platforms. Independent of the numeric rating.
25567
+ */
25568
+ recommendationType?: ('positive' | 'negative') | null;
25565
25569
  text?: string;
25566
25570
  created?: string;
25567
25571
  hasReply?: boolean;
@@ -35206,6 +35210,10 @@ type DuplicateAdData = {
35206
35210
  renamePrefix?: string;
35207
35211
  renameSuffix?: string;
35208
35212
  syncAfter?: boolean;
35213
+ /**
35214
+ * Point the copy at the source ad's creative object instead of copying it, so the copy keeps the same Facebook post, the same Instagram media, their existing likes, comments and shares, and the full creative setup (text variations included). This is what Ads Manager's "show existing reactions, comments and shares" does. Meta's native copy always publishes new posts. A creative belongs to one ad account, so `adSetId` must be in the source ad's account. 400 when the source ad has no creative yet.
35215
+ */
35216
+ reuseSourceCreative?: boolean;
35209
35217
  };
35210
35218
  headers?: {
35211
35219
  /**
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.846",
39
+ version: "0.2.848",
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.846",
8
+ version: "0.2.848",
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.846",
3
+ "version": "0.2.848",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -25164,6 +25164,10 @@ export type ListInboxReviewsResponse = ({
25164
25164
  profileImage?: (string) | null;
25165
25165
  };
25166
25166
  rating?: number;
25167
+ /**
25168
+ * Facebook recommendation: positive means recommends, negative means does not recommend. Null or absent when unavailable; absent for other platforms. Independent of the numeric rating.
25169
+ */
25170
+ recommendationType?: ('positive' | 'negative') | null;
25167
25171
  text?: string;
25168
25172
  created?: string;
25169
25173
  hasReply?: boolean;
@@ -35590,6 +35594,10 @@ export type DuplicateAdData = {
35590
35594
  renamePrefix?: string;
35591
35595
  renameSuffix?: string;
35592
35596
  syncAfter?: boolean;
35597
+ /**
35598
+ * Point the copy at the source ad's creative object instead of copying it, so the copy keeps the same Facebook post, the same Instagram media, their existing likes, comments and shares, and the full creative setup (text variations included). This is what Ads Manager's "show existing reactions, comments and shares" does. Meta's native copy always publishes new posts. A creative belongs to one ad account, so `adSetId` must be in the source ad's account. 400 when the source ad has no creative yet.
35599
+ */
35600
+ reuseSourceCreative?: boolean;
35593
35601
  };
35594
35602
  headers?: {
35595
35603
  /**