@hitc/netsuite-types 2023.1.3 → 2023.1.4

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.
Files changed (2) hide show
  1. package/N/url.d.ts +7 -3
  2. package/package.json +1 -1
package/N/url.d.ts CHANGED
@@ -20,10 +20,14 @@ interface resolveRecordOptions {
20
20
  }
21
21
 
22
22
  interface resolveScriptOptions {
23
- scriptId: string;
24
- deploymentId: string;
25
- returnExternalUrl?: boolean;
23
+ /** The script ID (string) or internal ID (number) of the script. The ID must identify a RESTlet or a Suitelet. */
24
+ scriptId: string|number;
25
+ /** The script ID (string) or internal ID (number) of the deployment script. */
26
+ deploymentId: string|number;
27
+ /** The object containing name/value pairs to describe the query. */
26
28
  params?: any;
29
+ /** Indicates whether to return the external URL. By default, the internal URL is returned (that is, the default value is false). */
30
+ returnExternalUrl?: boolean;
27
31
  }
28
32
 
29
33
  interface resolveTaskLinkOptions {
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.1.3",
11
+ "version": "2023.1.4",
12
12
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
13
13
  "license": "MIT",
14
14
  "repository": {