cityworks 2.1.0 → 2.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.
@@ -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
  }