@otr-app/shared-backend-generated-client 2.5.89 → 2.5.90
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 +12 -4
- package/dist/otrBackendService.js +5 -0
- package/dist/otrBackendService.min.js +6 -6
- package/dist/typescript/api/CasePaymentControllerApi.d.ts +2 -1
- package/dist/typescript/api/CasePaymentControllerApi.js +5 -1
- package/dist/typescript-fetch/apis/CasePaymentControllerApi.d.ts +1 -0
- package/dist/typescript-fetch/apis/CasePaymentControllerApi.js +3 -0
- package/dist/typescript-open-api/otr-backend.d.ts +4 -1
- package/package.json +1 -1
|
@@ -61,8 +61,9 @@ export declare class CasePaymentControllerApi {
|
|
|
61
61
|
*
|
|
62
62
|
* @summary getCasePayments
|
|
63
63
|
* @param caseId caseId
|
|
64
|
+
* @param includeInactiveLawfirmCases includeInactiveLawfirmCases
|
|
64
65
|
*/
|
|
65
|
-
getCasePaymentsUsingGET(caseId: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCasePaymentsResponse>;
|
|
66
|
+
getCasePaymentsUsingGET(caseId: string, includeInactiveLawfirmCases?: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCasePaymentsResponse>;
|
|
66
67
|
/**
|
|
67
68
|
*
|
|
68
69
|
* @summary getOverdueCasePayments
|
|
@@ -201,8 +201,9 @@ export class CasePaymentControllerApi {
|
|
|
201
201
|
*
|
|
202
202
|
* @summary getCasePayments
|
|
203
203
|
* @param caseId caseId
|
|
204
|
+
* @param includeInactiveLawfirmCases includeInactiveLawfirmCases
|
|
204
205
|
*/
|
|
205
|
-
getCasePaymentsUsingGET(caseId, extraHttpRequestParams) {
|
|
206
|
+
getCasePaymentsUsingGET(caseId, includeInactiveLawfirmCases, extraHttpRequestParams) {
|
|
206
207
|
const localVarPath = this.basePath + '/api/v1/cases/{caseId}/payments'
|
|
207
208
|
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
|
|
208
209
|
let queryParameters = {};
|
|
@@ -211,6 +212,9 @@ export class CasePaymentControllerApi {
|
|
|
211
212
|
if (caseId === null || caseId === undefined) {
|
|
212
213
|
throw new Error('Required parameter caseId was null or undefined when calling getCasePaymentsUsingGET.');
|
|
213
214
|
}
|
|
215
|
+
if (includeInactiveLawfirmCases !== undefined) {
|
|
216
|
+
queryParameters['includeInactiveLawfirmCases'] = includeInactiveLawfirmCases;
|
|
217
|
+
}
|
|
214
218
|
let httpRequestParams = {
|
|
215
219
|
method: 'GET',
|
|
216
220
|
url: localVarPath,
|
|
@@ -38,6 +38,7 @@ export interface GetAvailablePaymentPlansUsingPOSTRequest {
|
|
|
38
38
|
}
|
|
39
39
|
export interface GetCasePaymentsUsingGETRequest {
|
|
40
40
|
caseId: string;
|
|
41
|
+
includeInactiveLawfirmCases?: boolean;
|
|
41
42
|
}
|
|
42
43
|
export interface GetOverdueCasePaymentsUsingGETRequest {
|
|
43
44
|
caseId: string;
|
|
@@ -208,6 +208,9 @@ export class CasePaymentControllerApi extends runtime.BaseAPI {
|
|
|
208
208
|
throw new runtime.RequiredError('caseId', 'Required parameter requestParameters.caseId was null or undefined when calling getCasePaymentsUsingGET.');
|
|
209
209
|
}
|
|
210
210
|
const queryParameters = {};
|
|
211
|
+
if (requestParameters.includeInactiveLawfirmCases !== undefined) {
|
|
212
|
+
queryParameters['includeInactiveLawfirmCases'] = requestParameters.includeInactiveLawfirmCases;
|
|
213
|
+
}
|
|
211
214
|
const headerParameters = {};
|
|
212
215
|
const response = yield this.request({
|
|
213
216
|
path: `/api/v1/cases/{caseId}/payments`.replace(`{${"caseId"}}`, encodeURIComponent(String(requestParameters.caseId))),
|
|
@@ -19517,7 +19517,10 @@ export interface operations {
|
|
|
19517
19517
|
};
|
|
19518
19518
|
getCasePaymentsUsingGET: {
|
|
19519
19519
|
parameters: {
|
|
19520
|
-
query?:
|
|
19520
|
+
query?: {
|
|
19521
|
+
/** @description includeInactiveLawfirmCases */
|
|
19522
|
+
includeInactiveLawfirmCases?: boolean;
|
|
19523
|
+
};
|
|
19521
19524
|
header?: never;
|
|
19522
19525
|
path: {
|
|
19523
19526
|
/** @description caseId */
|