@otr-app/shared-backend-generated-client 2.5.60 → 2.5.62
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/.openapi-generator/FILES +2 -0
- package/dist/angular/api/lawfirmController.service.ts +56 -0
- package/dist/angular/model/accountManagerModel.ts +19 -0
- package/dist/angular/model/getAccountManagerModel.ts +19 -0
- package/dist/angular/model/getAccountManagersResponse.ts +18 -0
- package/dist/angular/model/getLawfirmModel.ts +2 -0
- package/dist/angular/model/models.ts +2 -0
- package/dist/otrBackendService.js +26 -0
- package/dist/otrBackendService.min.js +4 -4
- package/dist/typescript/api/LawfirmControllerApi.d.ts +5 -0
- package/dist/typescript/api/LawfirmControllerApi.js +19 -0
- package/dist/typescript/model/AccountManagerModel.d.ts +16 -0
- package/dist/typescript/model/AccountManagerModel.js +12 -0
- package/dist/typescript/model/GetAccountManagerModel.d.ts +16 -0
- package/dist/typescript/model/GetAccountManagerModel.js +12 -0
- package/dist/typescript/model/GetAccountManagersResponse.d.ts +15 -0
- package/dist/typescript/model/GetAccountManagersResponse.js +12 -0
- package/dist/typescript/model/GetLawfirmModel.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +2 -0
- package/dist/typescript/model/models.js +2 -0
- package/dist/typescript-fetch/apis/LawfirmControllerApi.d.ts +9 -1
- package/dist/typescript-fetch/apis/LawfirmControllerApi.js +26 -1
- package/dist/typescript-fetch/models/AccountManagerModel.d.ts +39 -0
- package/dist/typescript-fetch/models/AccountManagerModel.js +40 -0
- package/dist/typescript-fetch/models/GetAccountManagersResponse.d.ts +28 -0
- package/dist/typescript-fetch/models/GetAccountManagersResponse.js +37 -0
- package/dist/typescript-fetch/models/GetLawfirmModel.d.ts +7 -1
- package/dist/typescript-fetch/models/GetLawfirmModel.js +3 -1
- package/dist/typescript-fetch/models/index.d.ts +2 -0
- package/dist/typescript-fetch/models/index.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +70 -0
- package/package.json +1 -1
|
@@ -128,6 +128,7 @@ model/accountLevelFee.ts
|
|
|
128
128
|
model/accountLevelFeeRequest.ts
|
|
129
129
|
model/accountLevelFeeResponse.ts
|
|
130
130
|
model/accountLevelFeeToSave.ts
|
|
131
|
+
model/accountManagerModel.ts
|
|
131
132
|
model/action.ts
|
|
132
133
|
model/actionByEntityModel.ts
|
|
133
134
|
model/activityFeedModel.ts
|
|
@@ -391,6 +392,7 @@ model/generateCounterOfferCasePaymentsResponse.ts
|
|
|
391
392
|
model/generateTemplateRequest.ts
|
|
392
393
|
model/genericAdminListRequest.ts
|
|
393
394
|
model/geoRatesRequest.ts
|
|
395
|
+
model/getAccountManagersResponse.ts
|
|
394
396
|
model/getActivityFeedResponse.ts
|
|
395
397
|
model/getAddressInnerResponse.ts
|
|
396
398
|
model/getAnonymousTicketUploads.ts
|
|
@@ -21,6 +21,8 @@ import { Observable } from 'rxjs';
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { CreateNewLawfirmRequest } from '../model/createNewLawfirmRequest';
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { GetAccountManagersResponse } from '../model/getAccountManagersResponse';
|
|
25
|
+
// @ts-ignore
|
|
24
26
|
import { GetLawfirmAddressesResponse } from '../model/getLawfirmAddressesResponse';
|
|
25
27
|
// @ts-ignore
|
|
26
28
|
import { GetLawfirmCaseStatsResponse } from '../model/getLawfirmCaseStatsResponse';
|
|
@@ -389,6 +391,60 @@ export class LawfirmControllerService {
|
|
|
389
391
|
);
|
|
390
392
|
}
|
|
391
393
|
|
|
394
|
+
/**
|
|
395
|
+
* getAccountManagers
|
|
396
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
397
|
+
* @param reportProgress flag to report request and response progress.
|
|
398
|
+
*/
|
|
399
|
+
public getAccountManagersUsingGET(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetAccountManagersResponse>;
|
|
400
|
+
public getAccountManagersUsingGET(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetAccountManagersResponse>>;
|
|
401
|
+
public getAccountManagersUsingGET(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetAccountManagersResponse>>;
|
|
402
|
+
public getAccountManagersUsingGET(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
|
|
403
|
+
|
|
404
|
+
let localVarHeaders = this.defaultHeaders;
|
|
405
|
+
|
|
406
|
+
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
407
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
408
|
+
// to determine the Accept header
|
|
409
|
+
const httpHeaderAccepts: string[] = [
|
|
410
|
+
'*/*'
|
|
411
|
+
];
|
|
412
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
413
|
+
}
|
|
414
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
415
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
let localVarHttpContext: HttpContext | undefined = options && options.context;
|
|
419
|
+
if (localVarHttpContext === undefined) {
|
|
420
|
+
localVarHttpContext = new HttpContext();
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
425
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
426
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
427
|
+
responseType_ = 'text';
|
|
428
|
+
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
429
|
+
responseType_ = 'json';
|
|
430
|
+
} else {
|
|
431
|
+
responseType_ = 'blob';
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
let localVarPath = `/api/v1/lawfirms/account-managers`;
|
|
436
|
+
return this.httpClient.request<GetAccountManagersResponse>('get', `${this.configuration.basePath}${localVarPath}`,
|
|
437
|
+
{
|
|
438
|
+
context: localVarHttpContext,
|
|
439
|
+
responseType: <any>responseType_,
|
|
440
|
+
withCredentials: this.configuration.withCredentials,
|
|
441
|
+
headers: localVarHeaders,
|
|
442
|
+
observe: observe,
|
|
443
|
+
reportProgress: reportProgress
|
|
444
|
+
}
|
|
445
|
+
);
|
|
446
|
+
}
|
|
447
|
+
|
|
392
448
|
/**
|
|
393
449
|
* getInboxMessages
|
|
394
450
|
* @param lawfirmId lawfirmId
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export interface AccountManagerModel {
|
|
15
|
+
firstName?: string;
|
|
16
|
+
lastName?: string;
|
|
17
|
+
userId?: number;
|
|
18
|
+
}
|
|
19
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export interface GetAccountManagerModel {
|
|
15
|
+
firstName?: string;
|
|
16
|
+
lastName?: string;
|
|
17
|
+
userId?: number;
|
|
18
|
+
}
|
|
19
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AccountManagerModel } from './accountManagerModel';
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export interface GetAccountManagersResponse {
|
|
16
|
+
accountManagers?: Array<AccountManagerModel>;
|
|
17
|
+
}
|
|
18
|
+
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { AccountManagerModel } from './accountManagerModel';
|
|
12
13
|
import { LawfirmStatusModel } from './lawfirmStatusModel';
|
|
13
14
|
import { AddressDomain } from './addressDomain';
|
|
14
15
|
import { SupportedStateModel } from './supportedStateModel';
|
|
@@ -18,6 +19,7 @@ import { LawfirmRedirectModel } from './lawfirmRedirectModel';
|
|
|
18
19
|
|
|
19
20
|
export interface GetLawfirmModel {
|
|
20
21
|
aboutUsBlurb?: string;
|
|
22
|
+
accountManager?: AccountManagerModel;
|
|
21
23
|
address?: AddressDomain;
|
|
22
24
|
caseAssignmentPriority?: number;
|
|
23
25
|
coverPhotoUrl?: string;
|
|
@@ -3,6 +3,7 @@ export * from './accountLevelFee';
|
|
|
3
3
|
export * from './accountLevelFeeRequest';
|
|
4
4
|
export * from './accountLevelFeeResponse';
|
|
5
5
|
export * from './accountLevelFeeToSave';
|
|
6
|
+
export * from './accountManagerModel';
|
|
6
7
|
export * from './action';
|
|
7
8
|
export * from './actionByEntityModel';
|
|
8
9
|
export * from './activityFeedModel';
|
|
@@ -266,6 +267,7 @@ export * from './generateCounterOfferCasePaymentsResponse';
|
|
|
266
267
|
export * from './generateTemplateRequest';
|
|
267
268
|
export * from './genericAdminListRequest';
|
|
268
269
|
export * from './geoRatesRequest';
|
|
270
|
+
export * from './getAccountManagersResponse';
|
|
269
271
|
export * from './getActivityFeedResponse';
|
|
270
272
|
export * from './getAddressInnerResponse';
|
|
271
273
|
export * from './getAnonymousTicketUploads';
|
|
@@ -9556,6 +9556,32 @@ angular.module('otrBackendService', [])
|
|
|
9556
9556
|
|
|
9557
9557
|
return deferred.promise;
|
|
9558
9558
|
};
|
|
9559
|
+
/**
|
|
9560
|
+
* getAccountManagers
|
|
9561
|
+
* @method
|
|
9562
|
+
* @name OtrService#getAccountManagersUsingGET
|
|
9563
|
+
* @param {object} parameters - method options and parameters
|
|
9564
|
+
*/
|
|
9565
|
+
OtrService.prototype.getAccountManagersUsingGET = function(parameters) {
|
|
9566
|
+
if (parameters === undefined) {
|
|
9567
|
+
parameters = {};
|
|
9568
|
+
}
|
|
9569
|
+
var deferred = $q.defer();
|
|
9570
|
+
var domain = this.domain,
|
|
9571
|
+
path = '/api/v1/lawfirms/account-managers';
|
|
9572
|
+
var body = {},
|
|
9573
|
+
queryParameters = {},
|
|
9574
|
+
headers = {},
|
|
9575
|
+
form = {};
|
|
9576
|
+
|
|
9577
|
+
headers['Accept'] = ['*/*'];
|
|
9578
|
+
|
|
9579
|
+
queryParameters = mergeQueryParams(parameters, queryParameters);
|
|
9580
|
+
|
|
9581
|
+
this.request('GET', domain + path, parameters, body, headers, queryParameters, form, deferred);
|
|
9582
|
+
|
|
9583
|
+
return deferred.promise;
|
|
9584
|
+
};
|
|
9559
9585
|
/**
|
|
9560
9586
|
* uploadLawfirms
|
|
9561
9587
|
* @method
|