@hitc/netsuite-types 2022.1.3 → 2022.1.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/record.d.ts +1 -1
- package/N/types.d.ts +5 -5
- package/N/ui/message.d.ts +1 -1
- package/N/ui/serverWidget.d.ts +2 -2
- package/package.json +1 -1
package/N/record.d.ts
CHANGED
|
@@ -526,7 +526,7 @@ export interface ClientCurrentRecord {
|
|
|
526
526
|
/** The internal ID of a specific record. */
|
|
527
527
|
id: number;
|
|
528
528
|
/** Inserts a sublist line. */
|
|
529
|
-
insertLine(options: InsertLineOptions):
|
|
529
|
+
insertLine(options: InsertLineOptions): this; // Issue #132
|
|
530
530
|
/**
|
|
531
531
|
* Indicates whether the record is in dynamic or standard mode.
|
|
532
532
|
* - If set to true, the record is currently in dynamic mode. If set to false, the record is currently in standard mode.
|
package/N/types.d.ts
CHANGED
|
@@ -73,11 +73,11 @@ declare interface UserEventTypes {
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
declare enum ScheduledInvocationType {
|
|
76
|
-
SCHEDULED,
|
|
77
|
-
ON_DEMAND,
|
|
78
|
-
|
|
79
|
-
ABORTED,
|
|
80
|
-
SKIPPED
|
|
76
|
+
SCHEDULED, // The normal execution according to the deployment options specified in the UI.
|
|
77
|
+
ON_DEMAND, // The script is executed via a call from a script (using ScheduledScriptTask.submit()).
|
|
78
|
+
USER_INTERFACE, // The script is executed via the UI (the Save & Execute button has been clicked).
|
|
79
|
+
ABORTED, // The script re-executed automatically following an aborted execution (system went down during execution).
|
|
80
|
+
SKIPPED // The script is executed automatically following downtime during which the script should have been executed.
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
declare interface ScheduledInvocationTypes {
|
package/N/ui/message.d.ts
CHANGED
package/N/ui/serverWidget.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {ServerResponse} from 'N/http';
|
|
2
2
|
import {AddColumnOptions, AddEditColumnOptions, AddRowOptions, AddRowsOptions} from 'N/portlet';
|
|
3
|
-
import {MessageCreateOptions} from 'N/ui/message';
|
|
3
|
+
import {Message, MessageCreateOptions} from 'N/ui/message';
|
|
4
4
|
|
|
5
5
|
export interface AddButtonOptions {
|
|
6
6
|
/** The internal ID of the button. If you are adding the button to an existing page, the internal ID must be in lowercase, contain no spaces, and include the prefix custpage. */
|
|
@@ -449,7 +449,7 @@ export interface Form extends BaseForm {
|
|
|
449
449
|
addButton(options: AddButtonOptions): Button;
|
|
450
450
|
addCredentialField(options: AddCredentialFieldOptions): Field;
|
|
451
451
|
addFieldGroup(options: AddFieldGroupOptions): FieldGroup;
|
|
452
|
-
addPageInitMessage(options: MessageCreateOptions): void;
|
|
452
|
+
addPageInitMessage(options: { message: Message } | MessageCreateOptions): void;
|
|
453
453
|
addPageLink(options: AddPageLinkOptions): void;
|
|
454
454
|
addResetButton(options?: AddResetButtonOptions): Button;
|
|
455
455
|
addSecretKeyField(options: AddSecretKeyFieldOptions): Field;
|
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.1.
|
|
11
|
+
"version": "2022.1.6",
|
|
12
12
|
"main": "index.d.ts",
|
|
13
13
|
"author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
|
|
14
14
|
"license": "MIT",
|