@otr-app/shared-backend-generated-client 2.2.158 → 2.2.160

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.
@@ -1808,6 +1808,8 @@ angular.module('otrBackendService', [])
1808
1808
  * @name OtrService#listCostItemsForCustomerUsingGET
1809
1809
  * @param {object} parameters - method options and parameters
1810
1810
  * @param {string} parameters.caseId - caseId
1811
+ * @param {string} parameters.period - period
1812
+ * @param {string} parameters.productId - productId
1811
1813
  */
1812
1814
  OtrService.prototype.listCostItemsForCustomerUsingGET = function(parameters) {
1813
1815
  if (parameters === undefined) {
@@ -1830,6 +1832,14 @@ angular.module('otrBackendService', [])
1830
1832
  return deferred.promise;
1831
1833
  }
1832
1834
 
1835
+ if (parameters['period'] !== undefined) {
1836
+ queryParameters['period'] = parameters['period'];
1837
+ }
1838
+
1839
+ if (parameters['productId'] !== undefined) {
1840
+ queryParameters['productId'] = parameters['productId'];
1841
+ }
1842
+
1833
1843
  queryParameters = mergeQueryParams(parameters, queryParameters);
1834
1844
 
1835
1845
  this.request('GET', domain + path, parameters, body, headers, queryParameters, form, deferred);
@@ -2499,6 +2509,8 @@ angular.module('otrBackendService', [])
2499
2509
  * @param {object} parameters - method options and parameters
2500
2510
  * @param {string} parameters.caseId - caseId
2501
2511
  * @param {string} parameters.paymentPlanTypeId - paymentPlanTypeId
2512
+ * @param {string} parameters.period - period
2513
+ * @param {string} parameters.productId - productId
2502
2514
  */
2503
2515
  OtrService.prototype.generateCasePaymentPlanUsingGET = function(parameters) {
2504
2516
  if (parameters === undefined) {
@@ -2528,6 +2540,14 @@ angular.module('otrBackendService', [])
2528
2540
  return deferred.promise;
2529
2541
  }
2530
2542
 
2543
+ if (parameters['period'] !== undefined) {
2544
+ queryParameters['period'] = parameters['period'];
2545
+ }
2546
+
2547
+ if (parameters['productId'] !== undefined) {
2548
+ queryParameters['productId'] = parameters['productId'];
2549
+ }
2550
+
2531
2551
  queryParameters = mergeQueryParams(parameters, queryParameters);
2532
2552
 
2533
2553
  this.request('GET', domain + path, parameters, body, headers, queryParameters, form, deferred);