@otr-app/shared-backend-generated-client 2.5.154 → 2.5.156
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/dist/angular/api/casePaymentController.service.ts +4 -17
- package/dist/angular/model/getLawfirmCaseStatsResponse.ts +1 -0
- package/dist/angular/model/listCostItemsForCustomerResponse.ts +1 -0
- package/dist/otrBackendService.js +0 -10
- package/dist/otrBackendService.min.js +8 -8
- package/dist/typescript/api/CasePaymentControllerApi.d.ts +1 -3
- package/dist/typescript/api/CasePaymentControllerApi.js +1 -9
- package/dist/typescript/model/GetLawfirmCaseStatsResponse.d.ts +1 -0
- package/dist/typescript/model/ListCostItemsForCustomerResponse.d.ts +1 -0
- package/dist/typescript-fetch/apis/CasePaymentControllerApi.d.ts +0 -13
- package/dist/typescript-fetch/apis/CasePaymentControllerApi.js +0 -18
- package/dist/typescript-fetch/models/GetLawfirmCaseStatsResponse.d.ts +6 -0
- package/dist/typescript-fetch/models/GetLawfirmCaseStatsResponse.js +2 -0
- package/dist/typescript-fetch/models/ListCostItemsForCustomerResponse.d.ts +6 -0
- package/dist/typescript-fetch/models/ListCostItemsForCustomerResponse.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +13 -14
- package/dist/typescript-open-api/otr-backend.js +8 -8
- package/package.json +1 -1
|
@@ -808,29 +808,17 @@ export class CasePaymentControllerService {
|
|
|
808
808
|
/**
|
|
809
809
|
* listCostItemsForCustomer
|
|
810
810
|
* @param caseId caseId
|
|
811
|
-
* @param period period
|
|
812
|
-
* @param productId productId
|
|
813
811
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
814
812
|
* @param reportProgress flag to report request and response progress.
|
|
815
813
|
*/
|
|
816
|
-
public listCostItemsForCustomerUsingGET(caseId: string,
|
|
817
|
-
public listCostItemsForCustomerUsingGET(caseId: string,
|
|
818
|
-
public listCostItemsForCustomerUsingGET(caseId: string,
|
|
819
|
-
public listCostItemsForCustomerUsingGET(caseId: string,
|
|
814
|
+
public listCostItemsForCustomerUsingGET(caseId: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<ListCostItemsForCustomerResponse>;
|
|
815
|
+
public listCostItemsForCustomerUsingGET(caseId: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<ListCostItemsForCustomerResponse>>;
|
|
816
|
+
public listCostItemsForCustomerUsingGET(caseId: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<ListCostItemsForCustomerResponse>>;
|
|
817
|
+
public listCostItemsForCustomerUsingGET(caseId: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
|
|
820
818
|
if (caseId === null || caseId === undefined) {
|
|
821
819
|
throw new Error('Required parameter caseId was null or undefined when calling listCostItemsForCustomerUsingGET.');
|
|
822
820
|
}
|
|
823
821
|
|
|
824
|
-
let localVarQueryParameters = new HttpParams({encoder: this.encoder});
|
|
825
|
-
if (period !== undefined && period !== null) {
|
|
826
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
827
|
-
<any>period, 'period');
|
|
828
|
-
}
|
|
829
|
-
if (productId !== undefined && productId !== null) {
|
|
830
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
831
|
-
<any>productId, 'productId');
|
|
832
|
-
}
|
|
833
|
-
|
|
834
822
|
let localVarHeaders = this.defaultHeaders;
|
|
835
823
|
|
|
836
824
|
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
@@ -866,7 +854,6 @@ export class CasePaymentControllerService {
|
|
|
866
854
|
return this.httpClient.request<ListCostItemsForCustomerResponse>('get', `${this.configuration.basePath}${localVarPath}`,
|
|
867
855
|
{
|
|
868
856
|
context: localVarHttpContext,
|
|
869
|
-
params: localVarQueryParameters,
|
|
870
857
|
responseType: <any>responseType_,
|
|
871
858
|
withCredentials: this.configuration.withCredentials,
|
|
872
859
|
headers: localVarHeaders,
|
|
@@ -2533,8 +2533,6 @@ angular.module('otrBackendService', [])
|
|
|
2533
2533
|
* @name OtrService#listCostItemsForCustomerUsingGET
|
|
2534
2534
|
* @param {object} parameters - method options and parameters
|
|
2535
2535
|
* @param {string} parameters.caseId - caseId
|
|
2536
|
-
* @param {string} parameters.period - period
|
|
2537
|
-
* @param {string} parameters.productId - productId
|
|
2538
2536
|
*/
|
|
2539
2537
|
OtrService.prototype.listCostItemsForCustomerUsingGET = function(parameters) {
|
|
2540
2538
|
if (parameters === undefined) {
|
|
@@ -2557,14 +2555,6 @@ angular.module('otrBackendService', [])
|
|
|
2557
2555
|
return deferred.promise;
|
|
2558
2556
|
}
|
|
2559
2557
|
|
|
2560
|
-
if (parameters['period'] !== undefined) {
|
|
2561
|
-
queryParameters['period'] = parameters['period'];
|
|
2562
|
-
}
|
|
2563
|
-
|
|
2564
|
-
if (parameters['productId'] !== undefined) {
|
|
2565
|
-
queryParameters['productId'] = parameters['productId'];
|
|
2566
|
-
}
|
|
2567
|
-
|
|
2568
2558
|
queryParameters = mergeQueryParams(parameters, queryParameters);
|
|
2569
2559
|
|
|
2570
2560
|
this.request('GET', domain + path, parameters, body, headers, queryParameters, form, deferred);
|