@getlatedev/node 0.2.462 → 0.2.463

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
@@ -18060,6 +18060,10 @@ type EnableWhatsAppCallingLegacyResponse = ({
18060
18060
  callingEnabled?: boolean;
18061
18061
  sipHostname?: string;
18062
18062
  forwardTo?: string;
18063
+ /**
18064
+ * Caller ID the forward-leg callee sees on tel: forwards. business = this WhatsApp number; platform = a Zernio number (customer-brought number without verified caller ID).
18065
+ */
18066
+ callerIdMode?: 'business' | 'platform';
18063
18067
  });
18064
18068
  type EnableWhatsAppCallingLegacyError = (unknown | {
18065
18069
  error?: string;
@@ -21628,6 +21632,14 @@ type GetWhatsAppCallingResponse = ({
21628
21632
  * True when the number's country blocks business-initiated (outbound) WhatsApp calling; inbound still works.
21629
21633
  */
21630
21634
  outboundDisabled?: boolean;
21635
+ /**
21636
+ * Caller ID the forward-leg callee sees on tel: forwards. business = this WhatsApp number; platform = a Zernio number (used when the number was brought by the customer and its caller ID is not verified for PSTN origination).
21637
+ */
21638
+ callerIdMode?: 'business' | 'platform';
21639
+ /**
21640
+ * True once the number completed caller-ID verification, making tel: forwards display the business number itself.
21641
+ */
21642
+ callerIdVerified?: boolean;
21631
21643
  });
21632
21644
  type GetWhatsAppCallingError = (unknown | {
21633
21645
  error?: string;
@@ -21659,6 +21671,10 @@ type EnableWhatsAppCallingResponse = ({
21659
21671
  callingEnabled?: boolean;
21660
21672
  sipHostname?: string;
21661
21673
  forwardTo?: string;
21674
+ /**
21675
+ * Caller ID the forward-leg callee sees on tel: forwards. business = this WhatsApp number; platform = a Zernio number (customer-brought number without verified caller ID).
21676
+ */
21677
+ callerIdMode?: 'business' | 'platform';
21662
21678
  });
21663
21679
  type EnableWhatsAppCallingError = (unknown | {
21664
21680
  error?: string;
package/dist/index.d.ts CHANGED
@@ -18060,6 +18060,10 @@ type EnableWhatsAppCallingLegacyResponse = ({
18060
18060
  callingEnabled?: boolean;
18061
18061
  sipHostname?: string;
18062
18062
  forwardTo?: string;
18063
+ /**
18064
+ * Caller ID the forward-leg callee sees on tel: forwards. business = this WhatsApp number; platform = a Zernio number (customer-brought number without verified caller ID).
18065
+ */
18066
+ callerIdMode?: 'business' | 'platform';
18063
18067
  });
18064
18068
  type EnableWhatsAppCallingLegacyError = (unknown | {
18065
18069
  error?: string;
@@ -21628,6 +21632,14 @@ type GetWhatsAppCallingResponse = ({
21628
21632
  * True when the number's country blocks business-initiated (outbound) WhatsApp calling; inbound still works.
21629
21633
  */
21630
21634
  outboundDisabled?: boolean;
21635
+ /**
21636
+ * Caller ID the forward-leg callee sees on tel: forwards. business = this WhatsApp number; platform = a Zernio number (used when the number was brought by the customer and its caller ID is not verified for PSTN origination).
21637
+ */
21638
+ callerIdMode?: 'business' | 'platform';
21639
+ /**
21640
+ * True once the number completed caller-ID verification, making tel: forwards display the business number itself.
21641
+ */
21642
+ callerIdVerified?: boolean;
21631
21643
  });
21632
21644
  type GetWhatsAppCallingError = (unknown | {
21633
21645
  error?: string;
@@ -21659,6 +21671,10 @@ type EnableWhatsAppCallingResponse = ({
21659
21671
  callingEnabled?: boolean;
21660
21672
  sipHostname?: string;
21661
21673
  forwardTo?: string;
21674
+ /**
21675
+ * Caller ID the forward-leg callee sees on tel: forwards. business = this WhatsApp number; platform = a Zernio number (customer-brought number without verified caller ID).
21676
+ */
21677
+ callerIdMode?: 'business' | 'platform';
21662
21678
  });
21663
21679
  type EnableWhatsAppCallingError = (unknown | {
21664
21680
  error?: 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: "@getlatedev/node",
39
- version: "0.2.462",
39
+ version: "0.2.463",
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.462",
8
+ version: "0.2.463",
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.462",
3
+ "version": "0.2.463",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -17876,6 +17876,10 @@ export type EnableWhatsAppCallingLegacyResponse = ({
17876
17876
  callingEnabled?: boolean;
17877
17877
  sipHostname?: string;
17878
17878
  forwardTo?: string;
17879
+ /**
17880
+ * Caller ID the forward-leg callee sees on tel: forwards. business = this WhatsApp number; platform = a Zernio number (customer-brought number without verified caller ID).
17881
+ */
17882
+ callerIdMode?: 'business' | 'platform';
17879
17883
  });
17880
17884
 
17881
17885
  export type EnableWhatsAppCallingLegacyError = (unknown | {
@@ -21736,6 +21740,14 @@ export type GetWhatsAppCallingResponse = ({
21736
21740
  * True when the number's country blocks business-initiated (outbound) WhatsApp calling; inbound still works.
21737
21741
  */
21738
21742
  outboundDisabled?: boolean;
21743
+ /**
21744
+ * Caller ID the forward-leg callee sees on tel: forwards. business = this WhatsApp number; platform = a Zernio number (used when the number was brought by the customer and its caller ID is not verified for PSTN origination).
21745
+ */
21746
+ callerIdMode?: 'business' | 'platform';
21747
+ /**
21748
+ * True once the number completed caller-ID verification, making tel: forwards display the business number itself.
21749
+ */
21750
+ callerIdVerified?: boolean;
21739
21751
  });
21740
21752
 
21741
21753
  export type GetWhatsAppCallingError = (unknown | {
@@ -21770,6 +21782,10 @@ export type EnableWhatsAppCallingResponse = ({
21770
21782
  callingEnabled?: boolean;
21771
21783
  sipHostname?: string;
21772
21784
  forwardTo?: string;
21785
+ /**
21786
+ * Caller ID the forward-leg callee sees on tel: forwards. business = this WhatsApp number; platform = a Zernio number (customer-brought number without verified caller ID).
21787
+ */
21788
+ callerIdMode?: 'business' | 'platform';
21773
21789
  });
21774
21790
 
21775
21791
  export type EnableWhatsAppCallingError = (unknown | {