@hitc/netsuite-types 2022.1.1 → 2022.1.2

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/dataset.d.ts +5 -1
  2. package/package.json +1 -1
package/N/dataset.d.ts CHANGED
@@ -53,7 +53,11 @@ export interface Dataset {
53
53
  getExpressionFromColumn(options: { alias: string, columnId?: number }): Expression;
54
54
  /** Executes the dataset and returns the result set (the same as in N/query Module). */
55
55
  run(): ResultSet;
56
- runPaged(): PagedData;
56
+ /**
57
+ * Executes the dataset and returns the result set as paginated data (the same as in N/query Module).
58
+ * The maximum number of results per page is 1000. The minimum number of results per page is 5, except for the last page, which may include fewer than 5 results.
59
+ */
60
+ runPaged(options?: { pageSize: number }): PagedData;
57
61
  save(): void; // May need to test what this returns. Documentation says an object, but what object? The dataset itself?
58
62
  columns: Column[];
59
63
  condition: Condition;
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": "2022.1.1",
11
+ "version": "2022.1.2",
12
12
  "main": "index.d.ts",
13
13
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
14
14
  "license": "MIT",