@hitc/netsuite-types 2023.2.7 → 2023.2.9

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 +2 -1
  2. package/package.json +1 -1
package/N/task.d.ts CHANGED
@@ -111,7 +111,7 @@ interface SuiteQLTask {
111
111
 
112
112
  interface SearchTaskCreateOptions {
113
113
  taskType: TaskType.SEARCH
114
- savedSearchId?: number;
114
+ savedSearchId?: number | string;
115
115
  fileId?: number;
116
116
  filePath?: string;
117
117
  }
@@ -146,6 +146,7 @@ interface SearchTask {
146
146
  savedSearchId: number;
147
147
  fileId: number;
148
148
  filePath: string;
149
+ inboundDependencies: Record<string, Readonly<{id?: string; type: string; scriptId: string; deploymentId: string; params: any}>>;
149
150
  }
150
151
 
151
152
  interface SearchTaskStatus {
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.7",
11
+ "version": "2023.2.9",
12
12
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
13
13
  "license": "MIT",
14
14
  "repository": {