@zernio/node 0.2.97 → 0.2.98

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
@@ -12657,6 +12657,14 @@ type ListAdAccountsResponse = ({
12657
12657
  name?: string;
12658
12658
  currency?: string;
12659
12659
  status?: string;
12660
+ /**
12661
+ * IANA timezone of the ad account (Meta only). Drives daily-budget reset and Insights day boundaries.
12662
+ */
12663
+ timezoneName?: string;
12664
+ /**
12665
+ * Signed UTC offset in hours, reflecting current DST (Meta only).
12666
+ */
12667
+ timezoneOffsetHoursUtc?: number;
12660
12668
  }>;
12661
12669
  });
12662
12670
  type ListAdAccountsError = ({
package/dist/index.d.ts CHANGED
@@ -12657,6 +12657,14 @@ type ListAdAccountsResponse = ({
12657
12657
  name?: string;
12658
12658
  currency?: string;
12659
12659
  status?: string;
12660
+ /**
12661
+ * IANA timezone of the ad account (Meta only). Drives daily-budget reset and Insights day boundaries.
12662
+ */
12663
+ timezoneName?: string;
12664
+ /**
12665
+ * Signed UTC offset in hours, reflecting current DST (Meta only).
12666
+ */
12667
+ timezoneOffsetHoursUtc?: number;
12660
12668
  }>;
12661
12669
  });
12662
12670
  type ListAdAccountsError = ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zernio/node",
3
- "version": "0.2.97",
3
+ "version": "0.2.98",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -12982,6 +12982,14 @@ export type ListAdAccountsResponse = ({
12982
12982
  name?: string;
12983
12983
  currency?: string;
12984
12984
  status?: string;
12985
+ /**
12986
+ * IANA timezone of the ad account (Meta only). Drives daily-budget reset and Insights day boundaries.
12987
+ */
12988
+ timezoneName?: string;
12989
+ /**
12990
+ * Signed UTC offset in hours, reflecting current DST (Meta only).
12991
+ */
12992
+ timezoneOffsetHoursUtc?: number;
12985
12993
  }>;
12986
12994
  });
12987
12995