@hitc/netsuite-types 2023.2.9 → 2024.1.0

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/https.d.ts +2 -1
  2. package/package.json +1 -1
package/N/https.d.ts CHANGED
@@ -75,7 +75,7 @@ interface HttpsCreateSecureStringFunction {
75
75
  promise(options: CreateSecureStringOptions): Promise<SecureString>;
76
76
  }
77
77
 
78
- interface RequestRestletOptions {
78
+ export interface RequestRestletOptions {
79
79
  /** The PUT/POST data. This is ignored if the options.method is not POST or PUT. */
80
80
  body?: string | Object,
81
81
  /** The script ID of the script deployment record. */
@@ -95,6 +95,7 @@ interface RequestRestletOptions {
95
95
 
96
96
  interface RequestRestletFunction {
97
97
  (options: RequestRestletOptions): ClientResponse
98
+ promise(options: RequestRestletOptions): Promise<ClientResponse>;
98
99
  }
99
100
 
100
101
  interface RequestSuiteletOptions extends RequestRestletOptions {
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.9",
11
+ "version": "2024.1.0",
12
12
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
13
13
  "license": "MIT",
14
14
  "repository": {