@hitc/netsuite-types 2026.1.0 → 2026.1.1

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/task.d.ts +5 -4
  2. package/package.json +1 -1
package/N/task.d.ts CHANGED
@@ -236,10 +236,11 @@ interface MapReduceScriptTaskStatus {
236
236
  getTotalReduceCount(): number;
237
237
  getTotalOutputCount(): number;
238
238
  toString(): string;
239
- scriptId: string | null;
240
- deploymentId: string | null;
241
- stage: MapReduceStage | `${MapReduceStage}` | null;
242
- status: TaskStatus | `${TaskStatus}` | null;
239
+ readonly scriptId: number | null;
240
+ readonly deploymentId: string | null;
241
+ readonly stage: MapReduceStage | `${MapReduceStage}` | null;
242
+ readonly status: TaskStatus | `${TaskStatus}` | null;
243
+ readonly taskId: string;
243
244
  }
244
245
 
245
246
  interface ScheduledScriptTaskCreateOptions {
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": "2026.1.0",
11
+ "version": "2026.1.1",
12
12
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
13
13
  "license": "MIT",
14
14
  "repository": {