soda-nodejs 0.8.8 → 0.8.10

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.
@@ -1,9 +1,9 @@
1
1
  import { ExecOptions } from "child_process";
2
2
  import { ObjectEncodingOptions } from "fs";
3
- import { Options } from "iconv-lite";
3
+ import { Options as IconvOptions } from "iconv-lite";
4
4
  export type IconvDecodeOptions = {
5
5
  encoding: string;
6
- options?: Options;
6
+ options?: IconvOptions;
7
7
  };
8
8
  export declare function execAsync(command: string): Promise<string>;
9
9
  export declare function execAsync(command: string, options: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "soda-nodejs",
3
- "version": "0.8.8",
3
+ "version": "0.8.10",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "exports": {
@@ -40,7 +40,7 @@
40
40
  "which": "^5.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@types/node": "^24.10.2",
43
+ "@types/node": "^24.10.14",
44
44
  "@types/which": "^3.0.4",
45
45
  "typescript": ">=5.8.3"
46
46
  },
@@ -1,11 +1,11 @@
1
1
  import { exec, ExecOptions } from "child_process"
2
2
  import { ObjectEncodingOptions } from "fs"
3
3
 
4
- import iconv, { Options } from "iconv-lite"
4
+ import iconv, { Options as IconvOptions } from "iconv-lite"
5
5
 
6
6
  export type IconvDecodeOptions = {
7
7
  encoding: string
8
- options?: Options
8
+ options?: IconvOptions
9
9
  }
10
10
 
11
11
  export async function execAsync(command: string): Promise<string>