@getlatedev/node 0.2.385 → 0.2.386

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
@@ -15846,6 +15846,10 @@ type ReplyToInboxPostData = {
15846
15846
  body: {
15847
15847
  accountId: string;
15848
15848
  message: string;
15849
+ /**
15850
+ * (Facebook only) URL of an image to attach, publishing a photo comment alongside the text. The URL must be publicly accessible so Meta can fetch it. Returns 400 for other platforms.
15851
+ */
15852
+ attachmentUrl?: string;
15849
15853
  /**
15850
15854
  * Reply to specific comment (optional)
15851
15855
  */
@@ -15881,9 +15885,9 @@ type ReplyToInboxPostResponse = ({
15881
15885
  cid?: (string) | null;
15882
15886
  };
15883
15887
  });
15884
- type ReplyToInboxPostError = ({
15888
+ type ReplyToInboxPostError = (unknown | {
15885
15889
  error?: string;
15886
- } | unknown);
15890
+ });
15887
15891
  type DeleteInboxCommentData = {
15888
15892
  path: {
15889
15893
  /**
package/dist/index.d.ts CHANGED
@@ -15846,6 +15846,10 @@ type ReplyToInboxPostData = {
15846
15846
  body: {
15847
15847
  accountId: string;
15848
15848
  message: string;
15849
+ /**
15850
+ * (Facebook only) URL of an image to attach, publishing a photo comment alongside the text. The URL must be publicly accessible so Meta can fetch it. Returns 400 for other platforms.
15851
+ */
15852
+ attachmentUrl?: string;
15849
15853
  /**
15850
15854
  * Reply to specific comment (optional)
15851
15855
  */
@@ -15881,9 +15885,9 @@ type ReplyToInboxPostResponse = ({
15881
15885
  cid?: (string) | null;
15882
15886
  };
15883
15887
  });
15884
- type ReplyToInboxPostError = ({
15888
+ type ReplyToInboxPostError = (unknown | {
15885
15889
  error?: string;
15886
- } | unknown);
15890
+ });
15887
15891
  type DeleteInboxCommentData = {
15888
15892
  path: {
15889
15893
  /**
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.385",
39
+ version: "0.2.386",
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.385",
8
+ version: "0.2.386",
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.385",
3
+ "version": "0.2.386",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -15837,6 +15837,10 @@ export type ReplyToInboxPostData = {
15837
15837
  body: {
15838
15838
  accountId: string;
15839
15839
  message: string;
15840
+ /**
15841
+ * (Facebook only) URL of an image to attach, publishing a photo comment alongside the text. The URL must be publicly accessible so Meta can fetch it. Returns 400 for other platforms.
15842
+ */
15843
+ attachmentUrl?: string;
15840
15844
  /**
15841
15845
  * Reply to specific comment (optional)
15842
15846
  */
@@ -15874,9 +15878,9 @@ export type ReplyToInboxPostResponse = ({
15874
15878
  };
15875
15879
  });
15876
15880
 
15877
- export type ReplyToInboxPostError = ({
15881
+ export type ReplyToInboxPostError = (unknown | {
15878
15882
  error?: string;
15879
- } | unknown);
15883
+ });
15880
15884
 
15881
15885
  export type DeleteInboxCommentData = {
15882
15886
  path: {