@getlatedev/node 0.2.350 → 0.2.351

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
@@ -1567,6 +1567,10 @@ type AnalyticsListResponse = {
1567
1567
  * Thumbnail URL (same as url for images)
1568
1568
  */
1569
1569
  thumbnail?: string;
1570
+ /**
1571
+ * Accessibility alt text set on the media, when present.
1572
+ */
1573
+ altText?: string;
1570
1574
  }>;
1571
1575
  }>;
1572
1576
  pagination?: Pagination;
@@ -1636,6 +1640,10 @@ type AnalyticsSinglePostResponse = {
1636
1640
  * Thumbnail URL (same as url for images)
1637
1641
  */
1638
1642
  thumbnail?: string;
1643
+ /**
1644
+ * Accessibility alt text set on the media, when present.
1645
+ */
1646
+ altText?: string;
1639
1647
  }>;
1640
1648
  };
1641
1649
  /**
package/dist/index.d.ts CHANGED
@@ -1567,6 +1567,10 @@ type AnalyticsListResponse = {
1567
1567
  * Thumbnail URL (same as url for images)
1568
1568
  */
1569
1569
  thumbnail?: string;
1570
+ /**
1571
+ * Accessibility alt text set on the media, when present.
1572
+ */
1573
+ altText?: string;
1570
1574
  }>;
1571
1575
  }>;
1572
1576
  pagination?: Pagination;
@@ -1636,6 +1640,10 @@ type AnalyticsSinglePostResponse = {
1636
1640
  * Thumbnail URL (same as url for images)
1637
1641
  */
1638
1642
  thumbnail?: string;
1643
+ /**
1644
+ * Accessibility alt text set on the media, when present.
1645
+ */
1646
+ altText?: string;
1639
1647
  }>;
1640
1648
  };
1641
1649
  /**
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.350",
39
+ version: "0.2.351",
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.350",
8
+ version: "0.2.351",
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.350",
3
+ "version": "0.2.351",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -713,6 +713,10 @@ export type AnalyticsListResponse = {
713
713
  * Thumbnail URL (same as url for images)
714
714
  */
715
715
  thumbnail?: string;
716
+ /**
717
+ * Accessibility alt text set on the media, when present.
718
+ */
719
+ altText?: string;
716
720
  }>;
717
721
  }>;
718
722
  pagination?: Pagination;
@@ -784,6 +788,10 @@ export type AnalyticsSinglePostResponse = {
784
788
  * Thumbnail URL (same as url for images)
785
789
  */
786
790
  thumbnail?: string;
791
+ /**
792
+ * Accessibility alt text set on the media, when present.
793
+ */
794
+ altText?: string;
787
795
  }>;
788
796
  };
789
797