@zernio/node 0.2.278 → 0.2.279

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
@@ -4731,6 +4731,26 @@ type WebhookPayloadComment = {
4731
4731
  */
4732
4732
  promotionStatus?: string;
4733
4733
  };
4734
+ /**
4735
+ * Facebook only. Present on graphic-only comments (sticker, GIF, photo) that
4736
+ * carry no text. URLs are ephemeral and may expire for Meta platforms (oe= expiry),
4737
+ * so fetch promptly. Instagram comments do not support attachments.
4738
+ *
4739
+ */
4740
+ attachment?: {
4741
+ /**
4742
+ * Attachment type: sticker, animated_image_share, or photo.
4743
+ */
4744
+ type: string;
4745
+ /**
4746
+ * Rendered image/preview URL (from attachment.media.image.src).
4747
+ */
4748
+ imageUrl?: string;
4749
+ /**
4750
+ * Source URL (from attachment.url). For GIFs this is an l.facebook.com redirect.
4751
+ */
4752
+ url?: string;
4753
+ };
4734
4754
  };
4735
4755
  post: {
4736
4756
  /**
package/dist/index.d.ts CHANGED
@@ -4731,6 +4731,26 @@ type WebhookPayloadComment = {
4731
4731
  */
4732
4732
  promotionStatus?: string;
4733
4733
  };
4734
+ /**
4735
+ * Facebook only. Present on graphic-only comments (sticker, GIF, photo) that
4736
+ * carry no text. URLs are ephemeral and may expire for Meta platforms (oe= expiry),
4737
+ * so fetch promptly. Instagram comments do not support attachments.
4738
+ *
4739
+ */
4740
+ attachment?: {
4741
+ /**
4742
+ * Attachment type: sticker, animated_image_share, or photo.
4743
+ */
4744
+ type: string;
4745
+ /**
4746
+ * Rendered image/preview URL (from attachment.media.image.src).
4747
+ */
4748
+ imageUrl?: string;
4749
+ /**
4750
+ * Source URL (from attachment.url). For GIFs this is an l.facebook.com redirect.
4751
+ */
4752
+ url?: string;
4753
+ };
4734
4754
  };
4735
4755
  post: {
4736
4756
  /**
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: "@zernio/node",
39
- version: "0.2.278",
39
+ version: "0.2.279",
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: "@zernio/node",
8
- version: "0.2.278",
8
+ version: "0.2.279",
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": "@zernio/node",
3
- "version": "0.2.278",
3
+ "version": "0.2.279",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -4134,6 +4134,26 @@ export type WebhookPayloadComment = {
4134
4134
  */
4135
4135
  promotionStatus?: string;
4136
4136
  };
4137
+ /**
4138
+ * Facebook only. Present on graphic-only comments (sticker, GIF, photo) that
4139
+ * carry no text. URLs are ephemeral and may expire for Meta platforms (oe= expiry),
4140
+ * so fetch promptly. Instagram comments do not support attachments.
4141
+ *
4142
+ */
4143
+ attachment?: {
4144
+ /**
4145
+ * Attachment type: sticker, animated_image_share, or photo.
4146
+ */
4147
+ type: string;
4148
+ /**
4149
+ * Rendered image/preview URL (from attachment.media.image.src).
4150
+ */
4151
+ imageUrl?: string;
4152
+ /**
4153
+ * Source URL (from attachment.url). For GIFs this is an l.facebook.com redirect.
4154
+ */
4155
+ url?: string;
4156
+ };
4137
4157
  };
4138
4158
  post: {
4139
4159
  /**