@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 +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +8 -0
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
|
@@ -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
|
|