@getlatedev/node 0.2.341 → 0.2.342

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
@@ -22642,6 +22642,14 @@ type ListAdAccountsResponse = ({
22642
22642
  * Signed UTC offset in hours, reflecting current DST (Meta only).
22643
22643
  */
22644
22644
  timezoneOffsetHoursUtc?: number;
22645
+ /**
22646
+ * Meta only. Whether the account can create/run ads now. Absent (treat as true) on non-Meta platforms.
22647
+ */
22648
+ selectable?: boolean;
22649
+ /**
22650
+ * Meta only. Human-readable reason when selectable is false; null when selectable.
22651
+ */
22652
+ unusableReason?: (string) | null;
22645
22653
  }>;
22646
22654
  });
22647
22655
  type ListAdAccountsError = ({
package/dist/index.d.ts CHANGED
@@ -22642,6 +22642,14 @@ type ListAdAccountsResponse = ({
22642
22642
  * Signed UTC offset in hours, reflecting current DST (Meta only).
22643
22643
  */
22644
22644
  timezoneOffsetHoursUtc?: number;
22645
+ /**
22646
+ * Meta only. Whether the account can create/run ads now. Absent (treat as true) on non-Meta platforms.
22647
+ */
22648
+ selectable?: boolean;
22649
+ /**
22650
+ * Meta only. Human-readable reason when selectable is false; null when selectable.
22651
+ */
22652
+ unusableReason?: (string) | null;
22645
22653
  }>;
22646
22654
  });
22647
22655
  type ListAdAccountsError = ({
package/dist/index.js CHANGED
@@ -36,7 +36,7 @@ module.exports = __toCommonJS(index_exports);
36
36
  // package.json
37
37
  var package_default = {
38
38
  name: "@getlatedev/node",
39
- version: "0.2.341",
39
+ version: "0.2.342",
40
40
  description: "The official Node.js library for the Zernio API",
41
41
  main: "dist/index.js",
42
42
  module: "dist/index.mjs",
package/dist/index.mjs CHANGED
@@ -5,7 +5,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
5
5
  // package.json
6
6
  var package_default = {
7
7
  name: "@getlatedev/node",
8
- version: "0.2.341",
8
+ version: "0.2.342",
9
9
  description: "The official Node.js library for the Zernio API",
10
10
  main: "dist/index.js",
11
11
  module: "dist/index.mjs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlatedev/node",
3
- "version": "0.2.341",
3
+ "version": "0.2.342",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -23277,6 +23277,14 @@ export type ListAdAccountsResponse = ({
23277
23277
  * Signed UTC offset in hours, reflecting current DST (Meta only).
23278
23278
  */
23279
23279
  timezoneOffsetHoursUtc?: number;
23280
+ /**
23281
+ * Meta only. Whether the account can create/run ads now. Absent (treat as true) on non-Meta platforms.
23282
+ */
23283
+ selectable?: boolean;
23284
+ /**
23285
+ * Meta only. Human-readable reason when selectable is false; null when selectable.
23286
+ */
23287
+ unusableReason?: (string) | null;
23280
23288
  }>;
23281
23289
  });
23282
23290