@hitc/netsuite-types 2024.2.6 → 2024.2.8

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/cache.d.ts CHANGED
@@ -42,7 +42,7 @@ export interface Cache {
42
42
  scope: string | Scope;
43
43
 
44
44
  /** Retrieves a value from the cache based on a key that you provide. If the requested value is not present in the cache, the method uses the user-defined function identified by the method’s option.loader parameter. The value retrieved by this function is cached and then returned. */
45
- get(options: GetOptions): string;
45
+ get(options: GetOptions): string | null;
46
46
 
47
47
  /** Puts a value into the cache. If the value provided is not a string, the system uses JSON.stringify() to convert the value to a string. */
48
48
  put(options: PutOptions): void;
package/N/types.d.ts CHANGED
@@ -187,7 +187,7 @@ export namespace EntryPoints {
187
187
  form: N_ui_serverWidget.Form;
188
188
  type: UserEventType;
189
189
  UserEventType: UserEventTypes;
190
- request: N_http.ServerRequest;
190
+ request: N_http.ServerRequest | undefined;
191
191
  }
192
192
 
193
193
  type beforeLoad = (scriptContext: beforeLoadContext) => void;
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": "2024.2.6",
11
+ "version": "2024.2.8",
12
12
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
13
13
  "license": "MIT",
14
14
  "repository": {