@hitc/netsuite-types 2025.1.0 → 2025.1.2
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/https.d.ts +1 -1
- package/N/plugins/glPlugin.d.ts +3 -1
- package/package.json +1 -1
package/N/https.d.ts
CHANGED
|
@@ -98,7 +98,7 @@ interface RequestRestletFunction {
|
|
|
98
98
|
promise(options: RequestRestletOptions): Promise<ClientResponse>;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
interface RequestSuiteletOptions extends RequestRestletOptions {
|
|
101
|
+
export interface RequestSuiteletOptions extends RequestRestletOptions {
|
|
102
102
|
/** Specifies whether to perform the request as an unauthenticated user; this case uses the Online Form User role. */
|
|
103
103
|
external?: boolean,
|
|
104
104
|
}
|
package/N/plugins/glPlugin.d.ts
CHANGED
|
@@ -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.
|
|
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.
|
|
11
|
+
"version": "2025.1.2",
|
|
12
12
|
"author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"repository": {
|