@zernio/node 0.2.835 → 0.2.836

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
@@ -26890,6 +26890,10 @@ type ListImessageAvailableNumbersResponse = ({
26890
26890
  */
26891
26891
  phone?: string;
26892
26892
  region?: string;
26893
+ /**
26894
+ * Area the provider reports for the number (e.g. a US state), when known
26895
+ */
26896
+ location?: string;
26893
26897
  }>;
26894
26898
  region?: (string) | null;
26895
26899
  });
package/dist/index.d.ts CHANGED
@@ -26890,6 +26890,10 @@ type ListImessageAvailableNumbersResponse = ({
26890
26890
  */
26891
26891
  phone?: string;
26892
26892
  region?: string;
26893
+ /**
26894
+ * Area the provider reports for the number (e.g. a US state), when known
26895
+ */
26896
+ location?: string;
26893
26897
  }>;
26894
26898
  region?: (string) | null;
26895
26899
  });
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.835",
39
+ version: "0.2.836",
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.835",
8
+ version: "0.2.836",
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.835",
3
+ "version": "0.2.836",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -5311,7 +5311,10 @@ export const listImessageSenderOrders = <ThrowOnError extends boolean = false>(o
5311
5311
  * account.connected webhook. Billing starts at activation (monthly per
5312
5312
  * sender, no proration). Requires usage-based billing and a valid
5313
5313
  * payment method. Pass purchaseIntentId to make retries idempotent —
5314
- * the provider-side order is never retried automatically.
5314
+ * the provider-side order is never retried automatically. Ordered phone
5315
+ * senders include SMS/RCS fallback with call forwarding and the ability
5316
+ * to message contacts who have not written first (sending intervals
5317
+ * still apply).
5315
5318
  *
5316
5319
  */
5317
5320
  export const orderImessageSender = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<OrderImessageSenderData, ThrowOnError>) => {
@@ -26622,6 +26622,10 @@ export type ListImessageAvailableNumbersResponse = ({
26622
26622
  */
26623
26623
  phone?: string;
26624
26624
  region?: string;
26625
+ /**
26626
+ * Area the provider reports for the number (e.g. a US state), when known
26627
+ */
26628
+ location?: string;
26625
26629
  }>;
26626
26630
  region?: (string) | null;
26627
26631
  });