@hitc/netsuite-types 2024.2.7 → 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.
Files changed (2) hide show
  1. package/N/cache.d.ts +1 -1
  2. package/package.json +1 -1
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/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.7",
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": {