@hitc/netsuite-types 2023.2.5 → 2023.2.6
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/query.d.ts +2 -2
- package/N/ui/serverWidget.d.ts +2 -2
- package/package.json +1 -1
package/N/query.d.ts
CHANGED
|
@@ -200,7 +200,7 @@ interface DeleteQueryOptions {
|
|
|
200
200
|
id: number;
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
-
interface RunSuiteQLOptions {
|
|
203
|
+
export interface RunSuiteQLOptions {
|
|
204
204
|
/**
|
|
205
205
|
* String representation of SuiteQL query
|
|
206
206
|
*/
|
|
@@ -211,7 +211,7 @@ interface RunSuiteQLOptions {
|
|
|
211
211
|
customScriptId?: string;
|
|
212
212
|
}
|
|
213
213
|
|
|
214
|
-
interface RunSuiteQLPagedOptions extends RunSuiteQLOptions {
|
|
214
|
+
export interface RunSuiteQLPagedOptions extends RunSuiteQLOptions {
|
|
215
215
|
pageSize?: number;
|
|
216
216
|
}
|
|
217
217
|
|
package/N/ui/serverWidget.d.ts
CHANGED
|
@@ -329,7 +329,7 @@ export interface Assistant {
|
|
|
329
329
|
/** Identifies the current step. You can set any step as the current step. */
|
|
330
330
|
currentStep: AssistantStep;
|
|
331
331
|
/** Error message text for the current step. Optionally, you can use HTML tags to format the message. */
|
|
332
|
-
errorHtml: string;
|
|
332
|
+
errorHtml: string | undefined;
|
|
333
333
|
/** The text to display after the assistant finishes. For example “You have completed the Small Business Setup Assistant. Take the rest of the day off”. To trigger display of the completion message, call Assistant.isFinished(). */
|
|
334
334
|
finishedHtml: string;
|
|
335
335
|
/** Indicates whether to show or hide the Add to Shortcuts link that appears in the top-right corner of an assistant page. */
|
|
@@ -472,7 +472,7 @@ export interface Form extends BaseForm {
|
|
|
472
472
|
removeButton(options: IDOptions): void;
|
|
473
473
|
}
|
|
474
474
|
|
|
475
|
-
export interface List {
|
|
475
|
+
export interface List {
|
|
476
476
|
/** Adds a button to a list */
|
|
477
477
|
addButton(options: AddButtonOptions): Button;
|
|
478
478
|
/** Adds a column to a list */
|
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": "2023.2.
|
|
11
|
+
"version": "2023.2.6",
|
|
12
12
|
"author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"repository": {
|