cityworks 2.1.0 → 2.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.
package/README.md CHANGED
@@ -63,7 +63,11 @@ Some of the methods are general or top-level, and so, are accessed separately ar
63
63
 
64
64
  cw.gis.methodHere().then(resp => {})
65
65
 
66
- [General search methods](https://walker.github.io/cityworks/classes/search.Search.html):
66
+ [General query methods](https://walker.github.io/cityworks/classes/query.Query.html):
67
+
68
+ cw.query.methodHere().then(resp => {})
69
+
70
+ [(Deprecated) General search methods](https://walker.github.io/cityworks/classes/search.Search.html):
67
71
 
68
72
  cw.search.methodHere().then(resp => {})
69
73
 
@@ -199,6 +199,8 @@ export declare class CaseData {
199
199
  setCaseData(caseId: number, items: Array<{
200
200
  code: string;
201
201
  value: any;
202
+ rate?: number;
203
+ quantity?: number;
202
204
  }>): Promise<unknown>;
203
205
  /**
204
206
  * Set Case Data Detail Item for a Case by GroupCode.ItemCode syntax reference
@@ -210,5 +212,5 @@ export declare class CaseData {
210
212
  * @param {any} value - The value to set the specified detail to
211
213
  * @return {Object} Returns Promise
212
214
  */
213
- setCaseDataItem(caseId: number, detailGroupAndItemCode: string, value: any): Promise<unknown>;
215
+ setCaseDataItem(caseId: number, detailGroupAndItemCode: string, value: any, rate?: number, quantity?: number): Promise<unknown>;
214
216
  }