@zernio/node 0.2.73 → 0.2.74

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
@@ -11604,6 +11604,10 @@ type UpdateAdData = {
11604
11604
  id: string;
11605
11605
  name: string;
11606
11606
  }>;
11607
+ /**
11608
+ * Meta only. Omit to preserve the existing setting on update. 0 = disabled, 1 = enabled.
11609
+ */
11610
+ advantage_audience?: 0 | 1;
11607
11611
  };
11608
11612
  name?: string;
11609
11613
  };
@@ -11741,6 +11745,10 @@ type BoostPostData = {
11741
11745
  id: string;
11742
11746
  name: string;
11743
11747
  }>;
11748
+ /**
11749
+ * Meta only. 0 = disabled (default), 1 = enabled.
11750
+ */
11751
+ advantage_audience?: 0 | 1;
11744
11752
  };
11745
11753
  /**
11746
11754
  * Max bid cap (Meta only)
@@ -11841,6 +11849,10 @@ type CreateStandaloneAdData = {
11841
11849
  * Google Search RSA only. Extra descriptions.
11842
11850
  */
11843
11851
  additionalDescriptions?: Array<(string)>;
11852
+ /**
11853
+ * Meta only. Controls the Advantage audience feature (targeting_automation). 0 = disabled (default), 1 = enabled. Meta Marketing API requires this field on all ad set creation requests.
11854
+ */
11855
+ advantageAudience?: 0 | 1;
11844
11856
  };
11845
11857
  };
11846
11858
  type CreateStandaloneAdResponse = ({
package/dist/index.d.ts CHANGED
@@ -11604,6 +11604,10 @@ type UpdateAdData = {
11604
11604
  id: string;
11605
11605
  name: string;
11606
11606
  }>;
11607
+ /**
11608
+ * Meta only. Omit to preserve the existing setting on update. 0 = disabled, 1 = enabled.
11609
+ */
11610
+ advantage_audience?: 0 | 1;
11607
11611
  };
11608
11612
  name?: string;
11609
11613
  };
@@ -11741,6 +11745,10 @@ type BoostPostData = {
11741
11745
  id: string;
11742
11746
  name: string;
11743
11747
  }>;
11748
+ /**
11749
+ * Meta only. 0 = disabled (default), 1 = enabled.
11750
+ */
11751
+ advantage_audience?: 0 | 1;
11744
11752
  };
11745
11753
  /**
11746
11754
  * Max bid cap (Meta only)
@@ -11841,6 +11849,10 @@ type CreateStandaloneAdData = {
11841
11849
  * Google Search RSA only. Extra descriptions.
11842
11850
  */
11843
11851
  additionalDescriptions?: Array<(string)>;
11852
+ /**
11853
+ * Meta only. Controls the Advantage audience feature (targeting_automation). 0 = disabled (default), 1 = enabled. Meta Marketing API requires this field on all ad set creation requests.
11854
+ */
11855
+ advantageAudience?: 0 | 1;
11844
11856
  };
11845
11857
  };
11846
11858
  type CreateStandaloneAdResponse = ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zernio/node",
3
- "version": "0.2.73",
3
+ "version": "0.2.74",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -11884,6 +11884,10 @@ export type UpdateAdData = {
11884
11884
  id: string;
11885
11885
  name: string;
11886
11886
  }>;
11887
+ /**
11888
+ * Meta only. Omit to preserve the existing setting on update. 0 = disabled, 1 = enabled.
11889
+ */
11890
+ advantage_audience?: 0 | 1;
11887
11891
  };
11888
11892
  name?: string;
11889
11893
  };
@@ -12033,6 +12037,10 @@ export type BoostPostData = {
12033
12037
  id: string;
12034
12038
  name: string;
12035
12039
  }>;
12040
+ /**
12041
+ * Meta only. 0 = disabled (default), 1 = enabled.
12042
+ */
12043
+ advantage_audience?: 0 | 1;
12036
12044
  };
12037
12045
  /**
12038
12046
  * Max bid cap (Meta only)
@@ -12136,6 +12144,10 @@ export type CreateStandaloneAdData = {
12136
12144
  * Google Search RSA only. Extra descriptions.
12137
12145
  */
12138
12146
  additionalDescriptions?: Array<(string)>;
12147
+ /**
12148
+ * Meta only. Controls the Advantage audience feature (targeting_automation). 0 = disabled (default), 1 = enabled. Meta Marketing API requires this field on all ad set creation requests.
12149
+ */
12150
+ advantageAudience?: 0 | 1;
12139
12151
  };
12140
12152
  };
12141
12153