@zernio/node 0.2.311 → 0.2.312

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
@@ -2787,6 +2787,10 @@ type InboxWebhookAccount = {
2787
2787
  * Social account ID (same value as id). Canonical field so consumers can filter every webhook event on one field (e.g. route staging vs production by account). id is kept for backward compatibility.
2788
2788
  */
2789
2789
  accountId?: string;
2790
+ /**
2791
+ * Zernio profile (workspace) ID this account belongs to. Use it to route or filter inbox webhooks by workspace. This is the profile ID only, not its name (resolve the name via the API with this ID). Optional; omitted on the shared WhatsApp sandbox account and when the account has no resolvable profile.
2792
+ */
2793
+ profileId?: string;
2790
2794
  platform: string;
2791
2795
  username: string;
2792
2796
  displayName?: string;
package/dist/index.d.ts CHANGED
@@ -2787,6 +2787,10 @@ type InboxWebhookAccount = {
2787
2787
  * Social account ID (same value as id). Canonical field so consumers can filter every webhook event on one field (e.g. route staging vs production by account). id is kept for backward compatibility.
2788
2788
  */
2789
2789
  accountId?: string;
2790
+ /**
2791
+ * Zernio profile (workspace) ID this account belongs to. Use it to route or filter inbox webhooks by workspace. This is the profile ID only, not its name (resolve the name via the API with this ID). Optional; omitted on the shared WhatsApp sandbox account and when the account has no resolvable profile.
2792
+ */
2793
+ profileId?: string;
2790
2794
  platform: string;
2791
2795
  username: string;
2792
2796
  displayName?: string;
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.311",
39
+ version: "0.2.312",
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.311",
8
+ version: "0.2.312",
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.311",
3
+ "version": "0.2.312",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -2010,6 +2010,10 @@ export type InboxWebhookAccount = {
2010
2010
  * Social account ID (same value as id). Canonical field so consumers can filter every webhook event on one field (e.g. route staging vs production by account). id is kept for backward compatibility.
2011
2011
  */
2012
2012
  accountId?: string;
2013
+ /**
2014
+ * Zernio profile (workspace) ID this account belongs to. Use it to route or filter inbox webhooks by workspace. This is the profile ID only, not its name (resolve the name via the API with this ID). Optional; omitted on the shared WhatsApp sandbox account and when the account has no resolvable profile.
2015
+ */
2016
+ profileId?: string;
2013
2017
  platform: string;
2014
2018
  username: string;
2015
2019
  displayName?: string;