@zernio/node 0.2.94 → 0.2.95

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
@@ -12830,6 +12830,10 @@ type CreateStandaloneAdData = {
12830
12830
  * 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.
12831
12831
  */
12832
12832
  advantageAudience?: 0 | 1;
12833
+ /**
12834
+ * Meta only. Restrict the audience by gender. 'male' targets men only, 'female' targets women only, 'all' (default) targets everyone. Ignored by non-Meta platforms.
12835
+ */
12836
+ gender?: 'all' | 'male' | 'female';
12833
12837
  };
12834
12838
  };
12835
12839
  type CreateStandaloneAdResponse = (({
package/dist/index.d.ts CHANGED
@@ -12830,6 +12830,10 @@ type CreateStandaloneAdData = {
12830
12830
  * 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.
12831
12831
  */
12832
12832
  advantageAudience?: 0 | 1;
12833
+ /**
12834
+ * Meta only. Restrict the audience by gender. 'male' targets men only, 'female' targets women only, 'all' (default) targets everyone. Ignored by non-Meta platforms.
12835
+ */
12836
+ gender?: 'all' | 'male' | 'female';
12833
12837
  };
12834
12838
  };
12835
12839
  type CreateStandaloneAdResponse = (({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zernio/node",
3
- "version": "0.2.94",
3
+ "version": "0.2.95",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -13160,6 +13160,10 @@ export type CreateStandaloneAdData = {
13160
13160
  * 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.
13161
13161
  */
13162
13162
  advantageAudience?: 0 | 1;
13163
+ /**
13164
+ * Meta only. Restrict the audience by gender. 'male' targets men only, 'female' targets women only, 'all' (default) targets everyone. Ignored by non-Meta platforms.
13165
+ */
13166
+ gender?: 'all' | 'male' | 'female';
13163
13167
  };
13164
13168
  };
13165
13169