@getlatedev/node 0.2.345 → 0.2.346

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
@@ -18410,6 +18410,9 @@ type CreatePhoneNumberPortInData = {
18410
18410
  endUser: {
18411
18411
  entityName: string;
18412
18412
  authPersonName: string;
18413
+ /**
18414
+ * Phone number on the losing carrier's bill. Defaults to the ported number itself on single-number orders.
18415
+ */
18413
18416
  billingPhoneNumber?: string;
18414
18417
  accountNumber?: string;
18415
18418
  /**
@@ -18432,10 +18435,14 @@ type CreatePhoneNumberPortInData = {
18432
18435
  */
18433
18436
  invoiceDocumentId: string;
18434
18437
  /**
18435
- * Requested port date; the carrier confirms the actual FOC later.
18438
+ * Requested port date; the carrier confirms the actual FOC later. Defaults to one week out (shifted off weekends) when omitted.
18436
18439
  */
18437
18440
  focDatetimeRequested?: string;
18438
18441
  customerReference?: string;
18442
+ /**
18443
+ * Whether the losing account ports all its numbers (full) or keeps some (partial).
18444
+ */
18445
+ portType?: 'full' | 'partial';
18439
18446
  };
18440
18447
  };
18441
18448
  type CreatePhoneNumberPortInResponse = ({
package/dist/index.d.ts CHANGED
@@ -18410,6 +18410,9 @@ type CreatePhoneNumberPortInData = {
18410
18410
  endUser: {
18411
18411
  entityName: string;
18412
18412
  authPersonName: string;
18413
+ /**
18414
+ * Phone number on the losing carrier's bill. Defaults to the ported number itself on single-number orders.
18415
+ */
18413
18416
  billingPhoneNumber?: string;
18414
18417
  accountNumber?: string;
18415
18418
  /**
@@ -18432,10 +18435,14 @@ type CreatePhoneNumberPortInData = {
18432
18435
  */
18433
18436
  invoiceDocumentId: string;
18434
18437
  /**
18435
- * Requested port date; the carrier confirms the actual FOC later.
18438
+ * Requested port date; the carrier confirms the actual FOC later. Defaults to one week out (shifted off weekends) when omitted.
18436
18439
  */
18437
18440
  focDatetimeRequested?: string;
18438
18441
  customerReference?: string;
18442
+ /**
18443
+ * Whether the losing account ports all its numbers (full) or keeps some (partial).
18444
+ */
18445
+ portType?: 'full' | 'partial';
18439
18446
  };
18440
18447
  };
18441
18448
  type CreatePhoneNumberPortInResponse = ({
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.345",
39
+ version: "0.2.346",
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.345",
8
+ version: "0.2.346",
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.345",
3
+ "version": "0.2.346",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -18667,6 +18667,9 @@ export type CreatePhoneNumberPortInData = {
18667
18667
  endUser: {
18668
18668
  entityName: string;
18669
18669
  authPersonName: string;
18670
+ /**
18671
+ * Phone number on the losing carrier's bill. Defaults to the ported number itself on single-number orders.
18672
+ */
18670
18673
  billingPhoneNumber?: string;
18671
18674
  accountNumber?: string;
18672
18675
  /**
@@ -18689,10 +18692,14 @@ export type CreatePhoneNumberPortInData = {
18689
18692
  */
18690
18693
  invoiceDocumentId: string;
18691
18694
  /**
18692
- * Requested port date; the carrier confirms the actual FOC later.
18695
+ * Requested port date; the carrier confirms the actual FOC later. Defaults to one week out (shifted off weekends) when omitted.
18693
18696
  */
18694
18697
  focDatetimeRequested?: string;
18695
18698
  customerReference?: string;
18699
+ /**
18700
+ * Whether the losing account ports all its numbers (full) or keeps some (partial).
18701
+ */
18702
+ portType?: 'full' | 'partial';
18696
18703
  };
18697
18704
  };
18698
18705