@hitc/netsuite-types 2026.1.4 → 2026.1.5
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/ui/serverWidget.d.ts +2 -2
- package/package.json +1 -1
package/N/ui/serverWidget.d.ts
CHANGED
|
@@ -234,8 +234,8 @@ interface SublistSetSublistValueOptions {
|
|
|
234
234
|
id: string;
|
|
235
235
|
/** The line number for this field (starts at 0). */
|
|
236
236
|
line: number;
|
|
237
|
-
/** The value for the field being set. */
|
|
238
|
-
value: string;
|
|
237
|
+
/** The value for the field being set. Use null instead of an empty string. */
|
|
238
|
+
value: string|null;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
241
|
interface SetSplashOptions {
|