@zernio/node 0.2.143 → 0.2.144

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
@@ -13664,6 +13664,10 @@ type ListAdCampaignsData = {
13664
13664
  * Platform ad account ID (e.g. act_123 for Meta)
13665
13665
  */
13666
13666
  adAccountId?: string;
13667
+ /**
13668
+ * Start of metrics date range (YYYY-MM-DD, inclusive). Defaults to 90 days ago when both date params are omitted.
13669
+ */
13670
+ fromDate?: string;
13667
13671
  limit?: number;
13668
13672
  /**
13669
13673
  * Page number (1-based)
@@ -13682,6 +13686,10 @@ type ListAdCampaignsData = {
13682
13686
  * Filter by derived campaign status (post-aggregation)
13683
13687
  */
13684
13688
  status?: AdStatus;
13689
+ /**
13690
+ * End of metrics date range (YYYY-MM-DD, inclusive). Defaults to today. Max 730-day range.
13691
+ */
13692
+ toDate?: string;
13685
13693
  };
13686
13694
  };
13687
13695
  type ListAdCampaignsResponse = ({
package/dist/index.d.ts CHANGED
@@ -13664,6 +13664,10 @@ type ListAdCampaignsData = {
13664
13664
  * Platform ad account ID (e.g. act_123 for Meta)
13665
13665
  */
13666
13666
  adAccountId?: string;
13667
+ /**
13668
+ * Start of metrics date range (YYYY-MM-DD, inclusive). Defaults to 90 days ago when both date params are omitted.
13669
+ */
13670
+ fromDate?: string;
13667
13671
  limit?: number;
13668
13672
  /**
13669
13673
  * Page number (1-based)
@@ -13682,6 +13686,10 @@ type ListAdCampaignsData = {
13682
13686
  * Filter by derived campaign status (post-aggregation)
13683
13687
  */
13684
13688
  status?: AdStatus;
13689
+ /**
13690
+ * End of metrics date range (YYYY-MM-DD, inclusive). Defaults to today. Max 730-day range.
13691
+ */
13692
+ toDate?: string;
13685
13693
  };
13686
13694
  };
13687
13695
  type ListAdCampaignsResponse = ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zernio/node",
3
- "version": "0.2.143",
3
+ "version": "0.2.144",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -13960,6 +13960,10 @@ export type ListAdCampaignsData = {
13960
13960
  * Platform ad account ID (e.g. act_123 for Meta)
13961
13961
  */
13962
13962
  adAccountId?: string;
13963
+ /**
13964
+ * Start of metrics date range (YYYY-MM-DD, inclusive). Defaults to 90 days ago when both date params are omitted.
13965
+ */
13966
+ fromDate?: string;
13963
13967
  limit?: number;
13964
13968
  /**
13965
13969
  * Page number (1-based)
@@ -13978,6 +13982,10 @@ export type ListAdCampaignsData = {
13978
13982
  * Filter by derived campaign status (post-aggregation)
13979
13983
  */
13980
13984
  status?: AdStatus;
13985
+ /**
13986
+ * End of metrics date range (YYYY-MM-DD, inclusive). Defaults to today. Max 730-day range.
13987
+ */
13988
+ toDate?: string;
13981
13989
  };
13982
13990
  };
13983
13991