@getlatedev/node 0.2.559 → 0.2.560

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
@@ -8254,6 +8254,29 @@ type WebhookPayloadMessage = {
8254
8254
  flow_id?: string;
8255
8255
  };
8256
8256
  } | null;
8257
+ /**
8258
+ * WhatsApp only. Meta's own reason this message has no
8259
+ * renderable body. Present when Meta attached an error to the
8260
+ * inbound payload; in practice the `unsupported`, `errors` and
8261
+ * `unknown` types (code 131051: message type currently not
8262
+ * supported). `text` on those messages is the fixed
8263
+ * `[Unsupported message]` placeholder.
8264
+ *
8265
+ */
8266
+ unsupported?: {
8267
+ /**
8268
+ * Meta's numeric error code (e.g. 131051).
8269
+ */
8270
+ code?: number;
8271
+ /**
8272
+ * Meta's short error title.
8273
+ */
8274
+ title?: string;
8275
+ /**
8276
+ * Meta's human-readable error detail string.
8277
+ */
8278
+ details?: string;
8279
+ };
8257
8280
  } | null;
8258
8281
  /**
8259
8282
  * UTC time at which Zernio generated this event (set once when the event payload is built, before delivery is queued). Retries and redeliveries keep the original value, so it reflects the event, not the delivery attempt.
package/dist/index.d.ts CHANGED
@@ -8254,6 +8254,29 @@ type WebhookPayloadMessage = {
8254
8254
  flow_id?: string;
8255
8255
  };
8256
8256
  } | null;
8257
+ /**
8258
+ * WhatsApp only. Meta's own reason this message has no
8259
+ * renderable body. Present when Meta attached an error to the
8260
+ * inbound payload; in practice the `unsupported`, `errors` and
8261
+ * `unknown` types (code 131051: message type currently not
8262
+ * supported). `text` on those messages is the fixed
8263
+ * `[Unsupported message]` placeholder.
8264
+ *
8265
+ */
8266
+ unsupported?: {
8267
+ /**
8268
+ * Meta's numeric error code (e.g. 131051).
8269
+ */
8270
+ code?: number;
8271
+ /**
8272
+ * Meta's short error title.
8273
+ */
8274
+ title?: string;
8275
+ /**
8276
+ * Meta's human-readable error detail string.
8277
+ */
8278
+ details?: string;
8279
+ };
8257
8280
  } | null;
8258
8281
  /**
8259
8282
  * UTC time at which Zernio generated this event (set once when the event payload is built, before delivery is queued). Retries and redeliveries keep the original value, so it reflects the event, not the delivery attempt.
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.559",
39
+ version: "0.2.560",
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.559",
8
+ version: "0.2.560",
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.559",
3
+ "version": "0.2.560",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -7239,6 +7239,29 @@ export type WebhookPayloadMessage = {
7239
7239
  flow_id?: string;
7240
7240
  };
7241
7241
  } | null;
7242
+ /**
7243
+ * WhatsApp only. Meta's own reason this message has no
7244
+ * renderable body. Present when Meta attached an error to the
7245
+ * inbound payload; in practice the `unsupported`, `errors` and
7246
+ * `unknown` types (code 131051: message type currently not
7247
+ * supported). `text` on those messages is the fixed
7248
+ * `[Unsupported message]` placeholder.
7249
+ *
7250
+ */
7251
+ unsupported?: {
7252
+ /**
7253
+ * Meta's numeric error code (e.g. 131051).
7254
+ */
7255
+ code?: number;
7256
+ /**
7257
+ * Meta's short error title.
7258
+ */
7259
+ title?: string;
7260
+ /**
7261
+ * Meta's human-readable error detail string.
7262
+ */
7263
+ details?: string;
7264
+ };
7242
7265
  } | null;
7243
7266
  /**
7244
7267
  * UTC time at which Zernio generated this event (set once when the event payload is built, before delivery is queued). Retries and redeliveries keep the original value, so it reflects the event, not the delivery attempt.