@hitc/netsuite-types 2025.1.0 → 2025.1.1

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.
@@ -40,6 +40,8 @@ export interface ReadOnlySubrecord {
40
40
  getSublistFields(options: SublistOptions): string[];
41
41
  /** Returns the value of a sublist field in a text representation. */
42
42
  getSublistText(options: SublistLineOptions): string;
43
+ /** Returns the value of a sublist field. */
44
+ getSublistValue(options: SublistLineOptions): N_record.FieldValue;
43
45
  /** Returns the text representation of a field value. */
44
46
  getText(options: GetFieldOptions): string;
45
47
  /** Returns the value of a field. */
@@ -66,7 +68,7 @@ export interface ReadOnlyTransactionRecord {
66
68
  /** Returns the value of a sublist field in a text representation. */
67
69
  getSublistText(options: SublistLineOptions): string;
68
70
  /** Returns the value of a sublist field. */
69
- getSublistValue(options: SublistLineOptions): N_record.Type | string;
71
+ getSublistValue(options: SublistLineOptions): N_record.FieldValue;
70
72
  /** Returns the subrecord for the associated field. */
71
73
  getSubrecord(options: GetFieldOptions): ReadOnlySubrecord;
72
74
  /** Returns the text representation of a field value. */
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": "2025.1.0",
11
+ "version": "2025.1.1",
12
12
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
13
13
  "license": "MIT",
14
14
  "repository": {