@getlatedev/node 0.2.570 → 0.2.571

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
@@ -22696,6 +22696,10 @@ type SubmitPhoneNumberKycData = {
22696
22696
  first_name?: string;
22697
22697
  last_name?: string;
22698
22698
  street_address?: string;
22699
+ /**
22700
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
22701
+ */
22702
+ extended_address?: string;
22699
22703
  locality?: string;
22700
22704
  administrative_area?: string;
22701
22705
  postal_code?: string;
@@ -22762,6 +22766,10 @@ type ValidatePhoneNumberKycAddressData = {
22762
22766
  */
22763
22767
  country: string;
22764
22768
  street_address: string;
22769
+ /**
22770
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
22771
+ */
22772
+ extended_address?: string;
22765
22773
  /**
22766
22774
  * City / town.
22767
22775
  */
@@ -23444,6 +23452,10 @@ type SubmitWhatsAppNumberKycData = {
23444
23452
  first_name?: string;
23445
23453
  last_name?: string;
23446
23454
  street_address?: string;
23455
+ /**
23456
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
23457
+ */
23458
+ extended_address?: string;
23447
23459
  locality?: string;
23448
23460
  administrative_area?: string;
23449
23461
  postal_code?: string;
@@ -23498,6 +23510,10 @@ type ValidateWhatsAppNumberKycAddressData = {
23498
23510
  */
23499
23511
  country: string;
23500
23512
  street_address: string;
23513
+ /**
23514
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
23515
+ */
23516
+ extended_address?: string;
23501
23517
  /**
23502
23518
  * City / town.
23503
23519
  */
package/dist/index.d.ts CHANGED
@@ -22696,6 +22696,10 @@ type SubmitPhoneNumberKycData = {
22696
22696
  first_name?: string;
22697
22697
  last_name?: string;
22698
22698
  street_address?: string;
22699
+ /**
22700
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
22701
+ */
22702
+ extended_address?: string;
22699
22703
  locality?: string;
22700
22704
  administrative_area?: string;
22701
22705
  postal_code?: string;
@@ -22762,6 +22766,10 @@ type ValidatePhoneNumberKycAddressData = {
22762
22766
  */
22763
22767
  country: string;
22764
22768
  street_address: string;
22769
+ /**
22770
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
22771
+ */
22772
+ extended_address?: string;
22765
22773
  /**
22766
22774
  * City / town.
22767
22775
  */
@@ -23444,6 +23452,10 @@ type SubmitWhatsAppNumberKycData = {
23444
23452
  first_name?: string;
23445
23453
  last_name?: string;
23446
23454
  street_address?: string;
23455
+ /**
23456
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
23457
+ */
23458
+ extended_address?: string;
23447
23459
  locality?: string;
23448
23460
  administrative_area?: string;
23449
23461
  postal_code?: string;
@@ -23498,6 +23510,10 @@ type ValidateWhatsAppNumberKycAddressData = {
23498
23510
  */
23499
23511
  country: string;
23500
23512
  street_address: string;
23513
+ /**
23514
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
23515
+ */
23516
+ extended_address?: string;
23501
23517
  /**
23502
23518
  * City / town.
23503
23519
  */
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.570",
39
+ version: "0.2.571",
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.570",
8
+ version: "0.2.571",
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.570",
3
+ "version": "0.2.571",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -22688,6 +22688,10 @@ export type SubmitPhoneNumberKycData = {
22688
22688
  first_name?: string;
22689
22689
  last_name?: string;
22690
22690
  street_address?: string;
22691
+ /**
22692
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
22693
+ */
22694
+ extended_address?: string;
22691
22695
  locality?: string;
22692
22696
  administrative_area?: string;
22693
22697
  postal_code?: string;
@@ -22763,6 +22767,10 @@ export type ValidatePhoneNumberKycAddressData = {
22763
22767
  */
22764
22768
  country: string;
22765
22769
  street_address: string;
22770
+ /**
22771
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
22772
+ */
22773
+ extended_address?: string;
22766
22774
  /**
22767
22775
  * City / town.
22768
22776
  */
@@ -23489,6 +23497,10 @@ export type SubmitWhatsAppNumberKycData = {
23489
23497
  first_name?: string;
23490
23498
  last_name?: string;
23491
23499
  street_address?: string;
23500
+ /**
23501
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
23502
+ */
23503
+ extended_address?: string;
23492
23504
  locality?: string;
23493
23505
  administrative_area?: string;
23494
23506
  postal_code?: string;
@@ -23549,6 +23561,10 @@ export type ValidateWhatsAppNumberKycAddressData = {
23549
23561
  */
23550
23562
  country: string;
23551
23563
  street_address: string;
23564
+ /**
23565
+ * Address complement: apartment, suite, unit, or the quadra/lote used in some countries. Optional. Does not substitute for a building number on street_address.
23566
+ */
23567
+ extended_address?: string;
23552
23568
  /**
23553
23569
  * City / town.
23554
23570
  */