@hitc/netsuite-types 2021.2.14 → 2021.2.15

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 +1 -1
  2. package/package.json +1 -1
package/N/dataset.d.ts CHANGED
@@ -94,7 +94,7 @@ interface CreateConditionOptions {
94
94
  /** Uses the query.Operator enumeration, otherwise can be 'AND' or 'OR' when you are combining condition children. */
95
95
  operator: string;
96
96
  /** The values attribute is required unless the operator is 'AND' or 'OR', as it is when you are combining condition children. */
97
- values?: string[]|number[]|boolean[]|Date[];
97
+ values?: string[]|number[]|boolean[]|Date[]|{ dateId: string, type: string }[]; // For example, for after Start of Last Fiscal Year, use: { dateId: "SOLFY", type: "end" }
98
98
  }
99
99
 
100
100
  interface CreateJoinOptions {
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": "2021.2.14",
11
+ "version": "2021.2.15",
12
12
  "main": "index.d.ts",
13
13
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
14
14
  "license": "MIT",