@hitc/netsuite-types 2022.2.14 → 2022.2.15
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/N/record.d.ts +9 -1
- package/package.json +1 -1
package/N/record.d.ts
CHANGED
|
@@ -27,6 +27,14 @@ interface AttachRecordOptions {
|
|
|
27
27
|
id: number | string;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
interface CommitLineOptions {
|
|
31
|
+
/** The internal ID of the sublist. */
|
|
32
|
+
sublistId: string;
|
|
33
|
+
/** If set to true, scripting recalculation is ignored. */
|
|
34
|
+
ignoreRecalc?: boolean;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
|
|
30
38
|
interface CancelCommitLineOptions {
|
|
31
39
|
/** The internal ID of the sublist. */
|
|
32
40
|
sublistId: string;
|
|
@@ -472,7 +480,7 @@ export interface ClientCurrentRecord {
|
|
|
472
480
|
cancelLine(options: CancelCommitLineOptions): Record;
|
|
473
481
|
cancelLine(sublistId: string): Record;
|
|
474
482
|
/** Commits the currently selected line on a sublist. */
|
|
475
|
-
commitLine(options:
|
|
483
|
+
commitLine(options: CommitLineOptions): Record;
|
|
476
484
|
copy: RecordCopyFunction;
|
|
477
485
|
/** Performs macro operation and returns its result in a plain JavaScript object. */
|
|
478
486
|
executeMacro: ExecuteMacroFunction;
|
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.
|
|
11
|
+
"version": "2022.2.15",
|
|
12
12
|
"author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"repository": {
|