@hitc/netsuite-types 2022.2.10 → 2022.2.11

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.
Files changed (2) hide show
  1. package/SuiteGL.d.ts +11 -0
  2. package/package.json +1 -1
package/SuiteGL.d.ts CHANGED
@@ -106,6 +106,17 @@ interface CustomLines {
106
106
  * ledger account ID and the amount of the custom line.
107
107
  */
108
108
  addNewLine(): CustomLine;
109
+ /**
110
+ * Returns the number of custom lines with GL impact for a specific accounting book in a transaction.
111
+ * Use this method in conjunction with getLine(index) to read individual custom lines.
112
+ */
113
+ getCount(): number;
114
+ /**
115
+ * Returns a CustomLine object that represents a custom line with GL impact.
116
+ * CustomLine objects are stored in the CustomLines object starting at index 0.
117
+ * @param {number} index
118
+ */
119
+ getLine (index: number): CustomLine;
109
120
  }
110
121
 
111
122
  /**
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "posttest": "npm run cleanup"
9
9
  },
10
10
  "homepage": "https://github.com/headintheclouddev/typings-suitescript-2.0",
11
- "version": "2022.2.10",
11
+ "version": "2022.2.11",
12
12
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
13
13
  "license": "MIT",
14
14
  "repository": {