@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
|
@@ -43,6 +43,11 @@ export declare class LawfirmControllerApi {
|
|
|
43
43
|
* @param lawfirmId lawfirmId
|
|
44
44
|
*/
|
|
45
45
|
deleteLawfirmCoverPhotoUsingDELETE(lawfirmId: string, extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @summary getAccountManagers
|
|
49
|
+
*/
|
|
50
|
+
getAccountManagersUsingGET(extraHttpRequestParams?: any): ng.IHttpPromise<models.GetAccountManagersResponse>;
|
|
46
51
|
/**
|
|
47
52
|
*
|
|
48
53
|
* @summary getInboxMessages
|
|
@@ -132,6 +132,25 @@ export class LawfirmControllerApi {
|
|
|
132
132
|
}
|
|
133
133
|
return this.$http(httpRequestParams);
|
|
134
134
|
}
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @summary getAccountManagers
|
|
138
|
+
*/
|
|
139
|
+
getAccountManagersUsingGET(extraHttpRequestParams) {
|
|
140
|
+
const localVarPath = this.basePath + '/api/v1/lawfirms/account-managers';
|
|
141
|
+
let queryParameters = {};
|
|
142
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
143
|
+
let httpRequestParams = {
|
|
144
|
+
method: 'GET',
|
|
145
|
+
url: localVarPath,
|
|
146
|
+
params: queryParameters,
|
|
147
|
+
headers: headerParams
|
|
148
|
+
};
|
|
149
|
+
if (extraHttpRequestParams) {
|
|
150
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
151
|
+
}
|
|
152
|
+
return this.$http(httpRequestParams);
|
|
153
|
+
}
|
|
135
154
|
/**
|
|
136
155
|
*
|
|
137
156
|
* @summary getInboxMessages
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
export interface AccountManagerModel {
|
|
13
|
+
"firstName"?: string;
|
|
14
|
+
"lastName"?: string;
|
|
15
|
+
"userId"?: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
export interface GetAccountManagerModel {
|
|
13
|
+
"firstName"?: string;
|
|
14
|
+
"lastName"?: string;
|
|
15
|
+
"userId"?: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
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 * as models from './models';
|
|
13
|
+
export interface GetAccountManagersResponse {
|
|
14
|
+
"accountManagers"?: Array<models.AccountManagerModel>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
export {};
|
|
@@ -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';
|
|
@@ -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';
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import { CreateNewLawfirmRequest, GetLawfirmAddressesResponse, GetLawfirmCaseStatsResponse, GetLawfirmInboxMessagesResponse, GetLawfirmJobTitleResponse, GetLawfirmLawyersResponse, GetLawfirmResponse, GetLawfirmSupportedStatesResponse, GetLawfirmsResponse, GetStripeConnectedAccountsResponse, IntercomSearchTicketsResponse, LawfirmPictureRequest, LawfirmSupportedStateRequest, LawfirmVacationRequest, SaveLawfirmAccountManagerRequest, UpdateLawfirmPaymentModelRequest, UpdateLawfirmRequest, UpdateLawyerRoleRequest, UploadLawfirmsRequest, UploadLawfirmsResponse, UpsertAddressRequest } from '../models';
|
|
13
|
+
import { CreateNewLawfirmRequest, GetAccountManagersResponse, GetLawfirmAddressesResponse, GetLawfirmCaseStatsResponse, GetLawfirmInboxMessagesResponse, GetLawfirmJobTitleResponse, GetLawfirmLawyersResponse, GetLawfirmResponse, GetLawfirmSupportedStatesResponse, GetLawfirmsResponse, GetStripeConnectedAccountsResponse, IntercomSearchTicketsResponse, LawfirmPictureRequest, LawfirmSupportedStateRequest, LawfirmVacationRequest, SaveLawfirmAccountManagerRequest, UpdateLawfirmPaymentModelRequest, UpdateLawfirmRequest, UpdateLawyerRoleRequest, UploadLawfirmsRequest, UploadLawfirmsResponse, UpsertAddressRequest } from '../models';
|
|
14
14
|
export interface AddLawfirmAddressUsingPOSTRequest {
|
|
15
15
|
lawfirmId: number;
|
|
16
16
|
request: UpsertAddressRequest;
|
|
@@ -151,6 +151,14 @@ export declare class LawfirmControllerApi extends runtime.BaseAPI {
|
|
|
151
151
|
* deleteLawfirmCoverPhoto
|
|
152
152
|
*/
|
|
153
153
|
deleteLawfirmCoverPhotoUsingDELETE(requestParameters: DeleteLawfirmCoverPhotoUsingDELETERequest): Promise<object>;
|
|
154
|
+
/**
|
|
155
|
+
* getAccountManagers
|
|
156
|
+
*/
|
|
157
|
+
getAccountManagersUsingGETRaw(): Promise<runtime.ApiResponse<GetAccountManagersResponse>>;
|
|
158
|
+
/**
|
|
159
|
+
* getAccountManagers
|
|
160
|
+
*/
|
|
161
|
+
getAccountManagersUsingGET(): Promise<GetAccountManagersResponse>;
|
|
154
162
|
/**
|
|
155
163
|
* getInboxMessages
|
|
156
164
|
*/
|
|
@@ -21,7 +21,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
21
21
|
});
|
|
22
22
|
};
|
|
23
23
|
import * as runtime from '../runtime';
|
|
24
|
-
import { CreateNewLawfirmRequestToJSON, GetLawfirmAddressesResponseFromJSON, GetLawfirmCaseStatsResponseFromJSON, GetLawfirmInboxMessagesResponseFromJSON, GetLawfirmJobTitleResponseFromJSON, GetLawfirmLawyersResponseFromJSON, GetLawfirmResponseFromJSON, GetLawfirmSupportedStatesResponseFromJSON, GetLawfirmsResponseFromJSON, GetStripeConnectedAccountsResponseFromJSON, IntercomSearchTicketsResponseFromJSON, LawfirmPictureRequestToJSON, LawfirmSupportedStateRequestToJSON, LawfirmVacationRequestToJSON, SaveLawfirmAccountManagerRequestToJSON, UpdateLawfirmPaymentModelRequestToJSON, UpdateLawfirmRequestToJSON, UpdateLawyerRoleRequestToJSON, UploadLawfirmsRequestToJSON, UploadLawfirmsResponseFromJSON, UpsertAddressRequestToJSON, } from '../models';
|
|
24
|
+
import { CreateNewLawfirmRequestToJSON, GetAccountManagersResponseFromJSON, GetLawfirmAddressesResponseFromJSON, GetLawfirmCaseStatsResponseFromJSON, GetLawfirmInboxMessagesResponseFromJSON, GetLawfirmJobTitleResponseFromJSON, GetLawfirmLawyersResponseFromJSON, GetLawfirmResponseFromJSON, GetLawfirmSupportedStatesResponseFromJSON, GetLawfirmsResponseFromJSON, GetStripeConnectedAccountsResponseFromJSON, IntercomSearchTicketsResponseFromJSON, LawfirmPictureRequestToJSON, LawfirmSupportedStateRequestToJSON, LawfirmVacationRequestToJSON, SaveLawfirmAccountManagerRequestToJSON, UpdateLawfirmPaymentModelRequestToJSON, UpdateLawfirmRequestToJSON, UpdateLawyerRoleRequestToJSON, UploadLawfirmsRequestToJSON, UploadLawfirmsResponseFromJSON, UpsertAddressRequestToJSON, } from '../models';
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
@@ -146,6 +146,31 @@ export class LawfirmControllerApi extends runtime.BaseAPI {
|
|
|
146
146
|
return yield response.value();
|
|
147
147
|
});
|
|
148
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* getAccountManagers
|
|
151
|
+
*/
|
|
152
|
+
getAccountManagersUsingGETRaw() {
|
|
153
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
154
|
+
const queryParameters = {};
|
|
155
|
+
const headerParameters = {};
|
|
156
|
+
const response = yield this.request({
|
|
157
|
+
path: `/api/v1/lawfirms/account-managers`,
|
|
158
|
+
method: 'GET',
|
|
159
|
+
headers: headerParameters,
|
|
160
|
+
query: queryParameters,
|
|
161
|
+
});
|
|
162
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => GetAccountManagersResponseFromJSON(jsonValue));
|
|
163
|
+
});
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* getAccountManagers
|
|
167
|
+
*/
|
|
168
|
+
getAccountManagersUsingGET() {
|
|
169
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
170
|
+
const response = yield this.getAccountManagersUsingGETRaw();
|
|
171
|
+
return yield response.value();
|
|
172
|
+
});
|
|
173
|
+
}
|
|
149
174
|
/**
|
|
150
175
|
* getInboxMessages
|
|
151
176
|
*/
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
|
15
|
+
* @interface AccountManagerModel
|
|
16
|
+
*/
|
|
17
|
+
export interface AccountManagerModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof AccountManagerModel
|
|
22
|
+
*/
|
|
23
|
+
firstName?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AccountManagerModel
|
|
28
|
+
*/
|
|
29
|
+
lastName?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof AccountManagerModel
|
|
34
|
+
*/
|
|
35
|
+
userId?: number;
|
|
36
|
+
}
|
|
37
|
+
export declare function AccountManagerModelFromJSON(json: any): AccountManagerModel;
|
|
38
|
+
export declare function AccountManagerModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountManagerModel;
|
|
39
|
+
export declare function AccountManagerModelToJSON(value?: AccountManagerModel | null): any;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
export function AccountManagerModelFromJSON(json) {
|
|
16
|
+
return AccountManagerModelFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function AccountManagerModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
|
|
24
|
+
'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
|
|
25
|
+
'userId': !exists(json, 'userId') ? undefined : json['userId'],
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
export function AccountManagerModelToJSON(value) {
|
|
29
|
+
if (value === undefined) {
|
|
30
|
+
return undefined;
|
|
31
|
+
}
|
|
32
|
+
if (value === null) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'firstName': value.firstName,
|
|
37
|
+
'lastName': value.lastName,
|
|
38
|
+
'userId': value.userId,
|
|
39
|
+
};
|
|
40
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 './';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetAccountManagersResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface GetAccountManagersResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<AccountManagerModel>}
|
|
22
|
+
* @memberof GetAccountManagersResponse
|
|
23
|
+
*/
|
|
24
|
+
accountManagers?: Array<AccountManagerModel>;
|
|
25
|
+
}
|
|
26
|
+
export declare function GetAccountManagersResponseFromJSON(json: any): GetAccountManagersResponse;
|
|
27
|
+
export declare function GetAccountManagersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccountManagersResponse;
|
|
28
|
+
export declare function GetAccountManagersResponseToJSON(value?: GetAccountManagersResponse | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
import { AccountManagerModelFromJSON, AccountManagerModelToJSON, } from './';
|
|
16
|
+
export function GetAccountManagersResponseFromJSON(json) {
|
|
17
|
+
return GetAccountManagersResponseFromJSONTyped(json, false);
|
|
18
|
+
}
|
|
19
|
+
export function GetAccountManagersResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
20
|
+
if ((json === undefined) || (json === null)) {
|
|
21
|
+
return json;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'accountManagers': !exists(json, 'accountManagers') ? undefined : (json['accountManagers'].map(AccountManagerModelFromJSON)),
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export function GetAccountManagersResponseToJSON(value) {
|
|
28
|
+
if (value === undefined) {
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
if (value === null) {
|
|
32
|
+
return null;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'accountManagers': value.accountManagers === undefined ? undefined : (value.accountManagers.map(AccountManagerModelToJSON)),
|
|
36
|
+
};
|
|
37
|
+
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { AddressDomain, LawfirmRedirectModel, LawfirmSettingsDomainRes, LawfirmStatusModel, SupportedStateModel } from './';
|
|
12
|
+
import { AccountManagerModel, AddressDomain, LawfirmRedirectModel, LawfirmSettingsDomainRes, LawfirmStatusModel, SupportedStateModel } from './';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -22,6 +22,12 @@ export interface GetLawfirmModel {
|
|
|
22
22
|
* @memberof GetLawfirmModel
|
|
23
23
|
*/
|
|
24
24
|
aboutUsBlurb?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {AccountManagerModel}
|
|
28
|
+
* @memberof GetLawfirmModel
|
|
29
|
+
*/
|
|
30
|
+
accountManager?: AccountManagerModel;
|
|
25
31
|
/**
|
|
26
32
|
*
|
|
27
33
|
* @type {AddressDomain}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { exists } from '../runtime';
|
|
15
|
-
import { AddressDomainFromJSON, AddressDomainToJSON, LawfirmRedirectModelFromJSON, LawfirmRedirectModelToJSON, LawfirmSettingsDomainResFromJSON, LawfirmSettingsDomainResToJSON, LawfirmStatusModelFromJSON, LawfirmStatusModelToJSON, SupportedStateModelFromJSON, SupportedStateModelToJSON, } from './';
|
|
15
|
+
import { AccountManagerModelFromJSON, AccountManagerModelToJSON, AddressDomainFromJSON, AddressDomainToJSON, LawfirmRedirectModelFromJSON, LawfirmRedirectModelToJSON, LawfirmSettingsDomainResFromJSON, LawfirmSettingsDomainResToJSON, LawfirmStatusModelFromJSON, LawfirmStatusModelToJSON, SupportedStateModelFromJSON, SupportedStateModelToJSON, } from './';
|
|
16
16
|
export function GetLawfirmModelFromJSON(json) {
|
|
17
17
|
return GetLawfirmModelFromJSONTyped(json, false);
|
|
18
18
|
}
|
|
@@ -22,6 +22,7 @@ export function GetLawfirmModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
24
|
'aboutUsBlurb': !exists(json, 'aboutUsBlurb') ? undefined : json['aboutUsBlurb'],
|
|
25
|
+
'accountManager': !exists(json, 'accountManager') ? undefined : AccountManagerModelFromJSON(json['accountManager']),
|
|
25
26
|
'address': !exists(json, 'address') ? undefined : AddressDomainFromJSON(json['address']),
|
|
26
27
|
'caseAssignmentPriority': !exists(json, 'caseAssignmentPriority') ? undefined : json['caseAssignmentPriority'],
|
|
27
28
|
'coverPhotoUrl': !exists(json, 'coverPhotoUrl') ? undefined : json['coverPhotoUrl'],
|
|
@@ -61,6 +62,7 @@ export function GetLawfirmModelToJSON(value) {
|
|
|
61
62
|
}
|
|
62
63
|
return {
|
|
63
64
|
'aboutUsBlurb': value.aboutUsBlurb,
|
|
65
|
+
'accountManager': AccountManagerModelToJSON(value.accountManager),
|
|
64
66
|
'address': AddressDomainToJSON(value.address),
|
|
65
67
|
'caseAssignmentPriority': value.caseAssignmentPriority,
|
|
66
68
|
'coverPhotoUrl': value.coverPhotoUrl,
|
|
@@ -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';
|
|
@@ -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';
|
|
@@ -3384,6 +3384,23 @@ export interface paths {
|
|
|
3384
3384
|
patch?: never;
|
|
3385
3385
|
trace?: never;
|
|
3386
3386
|
};
|
|
3387
|
+
"/api/v1/lawfirms/account-managers": {
|
|
3388
|
+
parameters: {
|
|
3389
|
+
query?: never;
|
|
3390
|
+
header?: never;
|
|
3391
|
+
path?: never;
|
|
3392
|
+
cookie?: never;
|
|
3393
|
+
};
|
|
3394
|
+
/** getAccountManagers */
|
|
3395
|
+
get: operations["getAccountManagersUsingGET"];
|
|
3396
|
+
put?: never;
|
|
3397
|
+
post?: never;
|
|
3398
|
+
delete?: never;
|
|
3399
|
+
options?: never;
|
|
3400
|
+
head?: never;
|
|
3401
|
+
patch?: never;
|
|
3402
|
+
trace?: never;
|
|
3403
|
+
};
|
|
3387
3404
|
"/api/v1/lawfirms/bulk-upload": {
|
|
3388
3405
|
parameters: {
|
|
3389
3406
|
query?: never;
|
|
@@ -7252,6 +7269,13 @@ export interface components {
|
|
|
7252
7269
|
/** Format: int64 */
|
|
7253
7270
|
violationId?: number;
|
|
7254
7271
|
};
|
|
7272
|
+
/** AccountManagerModel */
|
|
7273
|
+
AccountManagerModel: {
|
|
7274
|
+
firstName?: string;
|
|
7275
|
+
lastName?: string;
|
|
7276
|
+
/** Format: int64 */
|
|
7277
|
+
userId?: number;
|
|
7278
|
+
};
|
|
7255
7279
|
/** Action */
|
|
7256
7280
|
Action: {
|
|
7257
7281
|
actionDate?: string;
|
|
@@ -10599,6 +10623,10 @@ export interface components {
|
|
|
10599
10623
|
violationCount?: number;
|
|
10600
10624
|
violations?: components["schemas"]["ViolationInputRequest"][];
|
|
10601
10625
|
};
|
|
10626
|
+
/** GetAccountManagersResponse */
|
|
10627
|
+
GetAccountManagersResponse: {
|
|
10628
|
+
accountManagers?: components["schemas"]["AccountManagerModel"][];
|
|
10629
|
+
};
|
|
10602
10630
|
/** GetActivityFeedResponse */
|
|
10603
10631
|
GetActivityFeedResponse: {
|
|
10604
10632
|
activity?: components["schemas"]["ActivityFeedModel"][];
|
|
@@ -11148,6 +11176,7 @@ export interface components {
|
|
|
11148
11176
|
/** GetLawfirmModel */
|
|
11149
11177
|
GetLawfirmModel: {
|
|
11150
11178
|
aboutUsBlurb?: string;
|
|
11179
|
+
accountManager?: components["schemas"]["AccountManagerModel"];
|
|
11151
11180
|
address?: components["schemas"]["AddressDomain"];
|
|
11152
11181
|
/** Format: int32 */
|
|
11153
11182
|
caseAssignmentPriority?: number;
|
|
@@ -27621,6 +27650,47 @@ export interface operations {
|
|
|
27621
27650
|
};
|
|
27622
27651
|
};
|
|
27623
27652
|
};
|
|
27653
|
+
getAccountManagersUsingGET: {
|
|
27654
|
+
parameters: {
|
|
27655
|
+
query?: never;
|
|
27656
|
+
header?: never;
|
|
27657
|
+
path?: never;
|
|
27658
|
+
cookie?: never;
|
|
27659
|
+
};
|
|
27660
|
+
requestBody?: never;
|
|
27661
|
+
responses: {
|
|
27662
|
+
/** @description OK */
|
|
27663
|
+
200: {
|
|
27664
|
+
headers: {
|
|
27665
|
+
[name: string]: unknown;
|
|
27666
|
+
};
|
|
27667
|
+
content: {
|
|
27668
|
+
"*/*": components["schemas"]["GetAccountManagersResponse"];
|
|
27669
|
+
};
|
|
27670
|
+
};
|
|
27671
|
+
/** @description Unauthorized */
|
|
27672
|
+
401: {
|
|
27673
|
+
headers: {
|
|
27674
|
+
[name: string]: unknown;
|
|
27675
|
+
};
|
|
27676
|
+
content?: never;
|
|
27677
|
+
};
|
|
27678
|
+
/** @description Forbidden */
|
|
27679
|
+
403: {
|
|
27680
|
+
headers: {
|
|
27681
|
+
[name: string]: unknown;
|
|
27682
|
+
};
|
|
27683
|
+
content?: never;
|
|
27684
|
+
};
|
|
27685
|
+
/** @description Not Found */
|
|
27686
|
+
404: {
|
|
27687
|
+
headers: {
|
|
27688
|
+
[name: string]: unknown;
|
|
27689
|
+
};
|
|
27690
|
+
content?: never;
|
|
27691
|
+
};
|
|
27692
|
+
};
|
|
27693
|
+
};
|
|
27624
27694
|
uploadLawfirmsUsingPOST: {
|
|
27625
27695
|
parameters: {
|
|
27626
27696
|
query?: never;
|