@otr-app/shared-backend-generated-client 2.5.166 → 2.5.168
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 +3 -0
- package/dist/angular/api/api.ts +3 -1
- package/dist/angular/api/conversationController.service.ts +64 -0
- package/dist/angular/api/lawfirmDashboardController.service.ts +60 -0
- package/dist/angular/api/webSocketController.service.ts +272 -0
- package/dist/angular/api.module.ts +1 -0
- package/dist/angular/model/ageBracketModel.ts +19 -0
- package/dist/angular/model/getActiveCasesByAgeResponse.ts +21 -0
- package/dist/angular/model/models.ts +2 -0
- package/dist/angular/model/validateDirectMailResponse.ts +3 -2
- package/dist/otrBackendService.js +190 -0
- package/dist/otrBackendService.min.js +8 -8
- package/dist/typescript/api/ConversationControllerApi.d.ts +7 -0
- package/dist/typescript/api/ConversationControllerApi.js +31 -0
- package/dist/typescript/api/LawfirmDashboardControllerApi.d.ts +6 -0
- package/dist/typescript/api/LawfirmDashboardControllerApi.js +25 -0
- package/dist/typescript/api/WebSocketControllerApi.d.ts +37 -0
- package/dist/typescript/api/WebSocketControllerApi.js +99 -0
- package/dist/typescript/api/api.d.ts +3 -1
- package/dist/typescript/api/api.js +3 -1
- package/dist/typescript/api.module.js +1 -0
- package/dist/typescript/model/AgeBracketModel.d.ts +16 -0
- package/dist/typescript/model/AgeBracketModel.js +12 -0
- package/dist/typescript/model/GetActiveCasesByAgeResponse.d.ts +18 -0
- package/dist/typescript/model/GetActiveCasesByAgeResponse.js +12 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +2 -1
- package/dist/typescript/model/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript/model/models.d.ts +2 -0
- package/dist/typescript/model/models.js +2 -0
- package/dist/typescript-fetch/apis/ConversationControllerApi.d.ts +12 -0
- package/dist/typescript-fetch/apis/ConversationControllerApi.js +33 -0
- package/dist/typescript-fetch/apis/LawfirmDashboardControllerApi.d.ts +12 -1
- package/dist/typescript-fetch/apis/LawfirmDashboardControllerApi.js +29 -1
- package/dist/typescript-fetch/apis/WebSocketControllerApi.d.ts +50 -0
- package/dist/typescript-fetch/apis/WebSocketControllerApi.js +118 -0
- package/dist/typescript-fetch/apis/index.d.ts +1 -0
- package/dist/typescript-fetch/apis/index.js +1 -0
- package/dist/typescript-fetch/models/AgeBracketModel.d.ts +39 -0
- package/dist/typescript-fetch/models/AgeBracketModel.js +40 -0
- package/dist/typescript-fetch/models/GetActiveCasesByAgeResponse.d.ts +46 -0
- package/dist/typescript-fetch/models/GetActiveCasesByAgeResponse.js +43 -0
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.d.ts +2 -1
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.js +1 -0
- 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 +348 -1
- package/dist/typescript-open-api/otr-backend.js +1 -0
- package/package.json +1 -1
|
@@ -66,4 +66,11 @@ export declare class ConversationControllerApi {
|
|
|
66
66
|
* @param request request
|
|
67
67
|
*/
|
|
68
68
|
setStarOnMessagesUsingPUT(request: models.SetStarOnMessagesRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @summary setTyping
|
|
72
|
+
* @param caseId caseId
|
|
73
|
+
* @param connectionId connectionId
|
|
74
|
+
*/
|
|
75
|
+
setTypingUsingPUT(caseId: string, connectionId: string, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
69
76
|
}
|
|
@@ -237,5 +237,36 @@ export class ConversationControllerApi {
|
|
|
237
237
|
}
|
|
238
238
|
return this.$http(httpRequestParams);
|
|
239
239
|
}
|
|
240
|
+
/**
|
|
241
|
+
*
|
|
242
|
+
* @summary setTyping
|
|
243
|
+
* @param caseId caseId
|
|
244
|
+
* @param connectionId connectionId
|
|
245
|
+
*/
|
|
246
|
+
setTypingUsingPUT(caseId, connectionId, extraHttpRequestParams) {
|
|
247
|
+
const localVarPath = this.basePath + '/api/v1/cases/conversation/typing/{caseId}'
|
|
248
|
+
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
|
|
249
|
+
let queryParameters = {};
|
|
250
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
251
|
+
// verify required parameter 'caseId' is not null or undefined
|
|
252
|
+
if (caseId === null || caseId === undefined) {
|
|
253
|
+
throw new Error('Required parameter caseId was null or undefined when calling setTypingUsingPUT.');
|
|
254
|
+
}
|
|
255
|
+
// verify required parameter 'connectionId' is not null or undefined
|
|
256
|
+
if (connectionId === null || connectionId === undefined) {
|
|
257
|
+
throw new Error('Required parameter connectionId was null or undefined when calling setTypingUsingPUT.');
|
|
258
|
+
}
|
|
259
|
+
headerParams['connectionId'] = connectionId;
|
|
260
|
+
let httpRequestParams = {
|
|
261
|
+
method: 'PUT',
|
|
262
|
+
url: localVarPath,
|
|
263
|
+
params: queryParameters,
|
|
264
|
+
headers: headerParams
|
|
265
|
+
};
|
|
266
|
+
if (extraHttpRequestParams) {
|
|
267
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
268
|
+
}
|
|
269
|
+
return this.$http(httpRequestParams);
|
|
270
|
+
}
|
|
240
271
|
}
|
|
241
272
|
ConversationControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
@@ -17,6 +17,12 @@ export declare class LawfirmDashboardControllerApi {
|
|
|
17
17
|
defaultHeaders: any;
|
|
18
18
|
static $inject: string[];
|
|
19
19
|
constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @summary getActiveCasesByAge
|
|
23
|
+
* @param lawfirmId lawfirmId
|
|
24
|
+
*/
|
|
25
|
+
getActiveCasesByAgeUsingGET(lawfirmId: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetActiveCasesByAgeResponse>;
|
|
20
26
|
/**
|
|
21
27
|
*
|
|
22
28
|
* @summary getLawfirmGrossEarnings
|
|
@@ -20,6 +20,31 @@ export class LawfirmDashboardControllerApi {
|
|
|
20
20
|
this.basePath = basePath;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @summary getActiveCasesByAge
|
|
26
|
+
* @param lawfirmId lawfirmId
|
|
27
|
+
*/
|
|
28
|
+
getActiveCasesByAgeUsingGET(lawfirmId, extraHttpRequestParams) {
|
|
29
|
+
const localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/dashboard/active-cases-by-age'
|
|
30
|
+
.replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
|
|
31
|
+
let queryParameters = {};
|
|
32
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
33
|
+
// verify required parameter 'lawfirmId' is not null or undefined
|
|
34
|
+
if (lawfirmId === null || lawfirmId === undefined) {
|
|
35
|
+
throw new Error('Required parameter lawfirmId was null or undefined when calling getActiveCasesByAgeUsingGET.');
|
|
36
|
+
}
|
|
37
|
+
let httpRequestParams = {
|
|
38
|
+
method: 'GET',
|
|
39
|
+
url: localVarPath,
|
|
40
|
+
params: queryParameters,
|
|
41
|
+
headers: headerParams
|
|
42
|
+
};
|
|
43
|
+
if (extraHttpRequestParams) {
|
|
44
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
45
|
+
}
|
|
46
|
+
return this.$http(httpRequestParams);
|
|
47
|
+
}
|
|
23
48
|
/**
|
|
24
49
|
*
|
|
25
50
|
* @summary getLawfirmGrossEarnings
|
|
@@ -0,0 +1,37 @@
|
|
|
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 declare class WebSocketControllerApi {
|
|
13
|
+
protected $http: ng.IHttpService;
|
|
14
|
+
protected $httpParamSerializer?: (d: any) => any;
|
|
15
|
+
protected basePath: string;
|
|
16
|
+
defaultHeaders: any;
|
|
17
|
+
static $inject: string[];
|
|
18
|
+
constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @summary connect
|
|
22
|
+
* @param connectionId connectionId
|
|
23
|
+
*/
|
|
24
|
+
connectUsingPOST(connectionId: string, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @summary defaultHandler
|
|
28
|
+
* @param connectionId connectionId
|
|
29
|
+
*/
|
|
30
|
+
defaultHandlerUsingPOST(connectionId: string, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @summary disconnect
|
|
34
|
+
* @param connectionId connectionId
|
|
35
|
+
*/
|
|
36
|
+
disconnectUsingPOST(connectionId: string, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
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
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
13
|
+
export class WebSocketControllerApi {
|
|
14
|
+
constructor($http, $httpParamSerializer, basePath) {
|
|
15
|
+
this.$http = $http;
|
|
16
|
+
this.$httpParamSerializer = $httpParamSerializer;
|
|
17
|
+
this.basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
|
|
18
|
+
this.defaultHeaders = {};
|
|
19
|
+
if (basePath !== undefined) {
|
|
20
|
+
this.basePath = basePath;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @summary connect
|
|
26
|
+
* @param connectionId connectionId
|
|
27
|
+
*/
|
|
28
|
+
connectUsingPOST(connectionId, extraHttpRequestParams) {
|
|
29
|
+
const localVarPath = this.basePath + '/api/v1/websocket/connect';
|
|
30
|
+
let queryParameters = {};
|
|
31
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
32
|
+
// verify required parameter 'connectionId' is not null or undefined
|
|
33
|
+
if (connectionId === null || connectionId === undefined) {
|
|
34
|
+
throw new Error('Required parameter connectionId was null or undefined when calling connectUsingPOST.');
|
|
35
|
+
}
|
|
36
|
+
headerParams['connectionId'] = connectionId;
|
|
37
|
+
let httpRequestParams = {
|
|
38
|
+
method: 'POST',
|
|
39
|
+
url: localVarPath,
|
|
40
|
+
params: queryParameters,
|
|
41
|
+
headers: headerParams
|
|
42
|
+
};
|
|
43
|
+
if (extraHttpRequestParams) {
|
|
44
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
45
|
+
}
|
|
46
|
+
return this.$http(httpRequestParams);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @summary defaultHandler
|
|
51
|
+
* @param connectionId connectionId
|
|
52
|
+
*/
|
|
53
|
+
defaultHandlerUsingPOST(connectionId, extraHttpRequestParams) {
|
|
54
|
+
const localVarPath = this.basePath + '/api/v1/websocket/default';
|
|
55
|
+
let queryParameters = {};
|
|
56
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
57
|
+
// verify required parameter 'connectionId' is not null or undefined
|
|
58
|
+
if (connectionId === null || connectionId === undefined) {
|
|
59
|
+
throw new Error('Required parameter connectionId was null or undefined when calling defaultHandlerUsingPOST.');
|
|
60
|
+
}
|
|
61
|
+
headerParams['connectionId'] = connectionId;
|
|
62
|
+
let httpRequestParams = {
|
|
63
|
+
method: 'POST',
|
|
64
|
+
url: localVarPath,
|
|
65
|
+
params: queryParameters,
|
|
66
|
+
headers: headerParams
|
|
67
|
+
};
|
|
68
|
+
if (extraHttpRequestParams) {
|
|
69
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
70
|
+
}
|
|
71
|
+
return this.$http(httpRequestParams);
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @summary disconnect
|
|
76
|
+
* @param connectionId connectionId
|
|
77
|
+
*/
|
|
78
|
+
disconnectUsingPOST(connectionId, extraHttpRequestParams) {
|
|
79
|
+
const localVarPath = this.basePath + '/api/v1/websocket/disconnect';
|
|
80
|
+
let queryParameters = {};
|
|
81
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
82
|
+
// verify required parameter 'connectionId' is not null or undefined
|
|
83
|
+
if (connectionId === null || connectionId === undefined) {
|
|
84
|
+
throw new Error('Required parameter connectionId was null or undefined when calling disconnectUsingPOST.');
|
|
85
|
+
}
|
|
86
|
+
headerParams['connectionId'] = connectionId;
|
|
87
|
+
let httpRequestParams = {
|
|
88
|
+
method: 'POST',
|
|
89
|
+
url: localVarPath,
|
|
90
|
+
params: queryParameters,
|
|
91
|
+
headers: headerParams
|
|
92
|
+
};
|
|
93
|
+
if (extraHttpRequestParams) {
|
|
94
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
95
|
+
}
|
|
96
|
+
return this.$http(httpRequestParams);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
WebSocketControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
@@ -226,8 +226,10 @@ export * from './ViolationPenaltyControllerApi';
|
|
|
226
226
|
import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
|
|
227
227
|
export * from './WatchlistsControllerApi';
|
|
228
228
|
import { WatchlistsControllerApi } from './WatchlistsControllerApi';
|
|
229
|
+
export * from './WebSocketControllerApi';
|
|
230
|
+
import { WebSocketControllerApi } from './WebSocketControllerApi';
|
|
229
231
|
export * from './WebsocketMessageControllerApi';
|
|
230
232
|
import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
|
|
231
233
|
export * from './WorkflowStateControllerApi';
|
|
232
234
|
import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
|
|
233
|
-
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BranchLinkControllerApi | typeof CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | typeof CaseCreationControllerApi | typeof CaseDeclineControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactLoopWebhookControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof CustomerServiceAgentBookingsControllerApi | typeof CustomerServiceAgentControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof DriverLicenseControllerApi | typeof EmployeeControllerApi | typeof EventBridgeEmailNotificationControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof IntercomTicketControllerApi | typeof IntercomWebhookControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDashboardControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPipelineControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UserSocialProfileControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
|
|
235
|
+
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BranchLinkControllerApi | typeof CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | typeof CaseCreationControllerApi | typeof CaseDeclineControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactLoopWebhookControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof CustomerServiceAgentBookingsControllerApi | typeof CustomerServiceAgentControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof DriverLicenseControllerApi | typeof EmployeeControllerApi | typeof EventBridgeEmailNotificationControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof IntercomTicketControllerApi | typeof IntercomWebhookControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDashboardControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPipelineControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UserSocialProfileControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebSocketControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
|
|
@@ -226,8 +226,10 @@ export * from './ViolationPenaltyControllerApi';
|
|
|
226
226
|
import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
|
|
227
227
|
export * from './WatchlistsControllerApi';
|
|
228
228
|
import { WatchlistsControllerApi } from './WatchlistsControllerApi';
|
|
229
|
+
export * from './WebSocketControllerApi';
|
|
230
|
+
import { WebSocketControllerApi } from './WebSocketControllerApi';
|
|
229
231
|
export * from './WebsocketMessageControllerApi';
|
|
230
232
|
import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
|
|
231
233
|
export * from './WorkflowStateControllerApi';
|
|
232
234
|
import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
|
|
233
|
-
export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuditLogControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BranchLinkControllerApi, CaptchaControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCounterOfferControllerApi, CaseCreationControllerApi, CaseDeclineControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseResolutionControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CaseUserControllerApi, CitationAuditControllerApi, CitationControllerApi, CoachingCardsControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactLoopWebhookControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, DriverLicenseControllerApi, EmployeeControllerApi, EventBridgeEmailNotificationControllerApi, ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, HubspotWebhookControllerApi, InsuranceCalculatorControllerApi, IntercomTicketControllerApi, IntercomWebhookControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDashboardControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LegalServicesControllerApi, LineItemControllerApi, ListCasesControllerApi, MediaCreationControllerApi, MessagesControllerApi, NotesControllerApi, OcrPipelineControllerApi, OcrPredictionControllerApi, OnDemandRequestControllerApi, OneTimePasswordControllerApi, PhoneLeadsControllerApi, PushNotificationControllerApi, RecurringBillingControllerApi, RefLinkControllerApi, ReferralCodeControllerApi, ReferralControllerApi, ReferralSourceControllerApi, RefundEligibilityControllerApi, RegistrationControllerApi, ReportingControllerApi, ScheduledTaskControllerApi, SingleSignOnControllerApi, SnsListenerControllerApi, SocialLoginControllerApi, StripeCardControllerApi, StripeControllerApi, StripeSyncControllerApi, StripeWebhookControllerApi, TicketReviewControllerApi, UrlRedirectControllerApi, UserAccountControllerApi, UserAuditControllerApi, UserControllerApi, UserPasswordControllerApi, UserProfileControllerApi, UserSearchControllerApi, UserSettingsControllerApi, UserSocialProfileControllerApi, UtilityControllerApi, ValidationControllerApi, VerificationControllerApi, ViolationControllerApi, ViolationPenaltyControllerApi, WatchlistsControllerApi, WebsocketMessageControllerApi, WorkflowStateControllerApi];
|
|
235
|
+
export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuditLogControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BranchLinkControllerApi, CaptchaControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCounterOfferControllerApi, CaseCreationControllerApi, CaseDeclineControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseResolutionControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CaseUserControllerApi, CitationAuditControllerApi, CitationControllerApi, CoachingCardsControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactLoopWebhookControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, DriverLicenseControllerApi, EmployeeControllerApi, EventBridgeEmailNotificationControllerApi, ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, HubspotWebhookControllerApi, InsuranceCalculatorControllerApi, IntercomTicketControllerApi, IntercomWebhookControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDashboardControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LegalServicesControllerApi, LineItemControllerApi, ListCasesControllerApi, MediaCreationControllerApi, MessagesControllerApi, NotesControllerApi, OcrPipelineControllerApi, OcrPredictionControllerApi, OnDemandRequestControllerApi, OneTimePasswordControllerApi, PhoneLeadsControllerApi, PushNotificationControllerApi, RecurringBillingControllerApi, RefLinkControllerApi, ReferralCodeControllerApi, ReferralControllerApi, ReferralSourceControllerApi, RefundEligibilityControllerApi, RegistrationControllerApi, ReportingControllerApi, ScheduledTaskControllerApi, SingleSignOnControllerApi, SnsListenerControllerApi, SocialLoginControllerApi, StripeCardControllerApi, StripeControllerApi, StripeSyncControllerApi, StripeWebhookControllerApi, TicketReviewControllerApi, UrlRedirectControllerApi, UserAccountControllerApi, UserAuditControllerApi, UserControllerApi, UserPasswordControllerApi, UserProfileControllerApi, UserSearchControllerApi, UserSettingsControllerApi, UserSocialProfileControllerApi, UtilityControllerApi, ValidationControllerApi, VerificationControllerApi, ViolationControllerApi, ViolationPenaltyControllerApi, WatchlistsControllerApi, WebSocketControllerApi, WebsocketMessageControllerApi, WorkflowStateControllerApi];
|
|
@@ -115,6 +115,7 @@ const apiModule = angular.module('api', [])
|
|
|
115
115
|
.service('ViolationControllerApi', api.ViolationControllerApi)
|
|
116
116
|
.service('ViolationPenaltyControllerApi', api.ViolationPenaltyControllerApi)
|
|
117
117
|
.service('WatchlistsControllerApi', api.WatchlistsControllerApi)
|
|
118
|
+
.service('WebSocketControllerApi', api.WebSocketControllerApi)
|
|
118
119
|
.service('WebsocketMessageControllerApi', api.WebsocketMessageControllerApi)
|
|
119
120
|
.service('WorkflowStateControllerApi', api.WorkflowStateControllerApi);
|
|
120
121
|
export default apiModule;
|
|
@@ -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 AgeBracketModel {
|
|
13
|
+
"bracket"?: string;
|
|
14
|
+
"count"?: number;
|
|
15
|
+
"percentageOfTotal"?: 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,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 * as models from './models';
|
|
13
|
+
export interface GetActiveCasesByAgeResponse {
|
|
14
|
+
"ageBreakdown"?: Array<models.AgeBracketModel>;
|
|
15
|
+
"medianAgeInDays"?: number;
|
|
16
|
+
"networkMedianAgeInDays"?: number;
|
|
17
|
+
"totalActiveCases"?: number;
|
|
18
|
+
}
|
|
@@ -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 {};
|
|
@@ -323,5 +323,6 @@ export var ValidateDirectMailResponse;
|
|
|
323
323
|
OtrErrorEnum[OtrErrorEnum["VERIFICATIONCODENOTNUMERIC"] = 'VERIFICATION_CODE_NOT_NUMERIC'] = "VERIFICATIONCODENOTNUMERIC";
|
|
324
324
|
OtrErrorEnum[OtrErrorEnum["VERIFICATIONCODENOTVALID"] = 'VERIFICATION_CODE_NOT_VALID'] = "VERIFICATIONCODENOTVALID";
|
|
325
325
|
OtrErrorEnum[OtrErrorEnum["VERIFICATIONLINKNOTVALID"] = 'VERIFICATION_LINK_NOT_VALID'] = "VERIFICATIONLINKNOTVALID";
|
|
326
|
+
OtrErrorEnum[OtrErrorEnum["WEBSOCKETCONNECTIONNOTFOUND"] = 'WEBSOCKET_CONNECTION_NOT_FOUND'] = "WEBSOCKETCONNECTIONNOTFOUND";
|
|
326
327
|
})(OtrErrorEnum = ValidateDirectMailResponse.OtrErrorEnum || (ValidateDirectMailResponse.OtrErrorEnum = {}));
|
|
327
328
|
})(ValidateDirectMailResponse || (ValidateDirectMailResponse = {}));
|
|
@@ -34,6 +34,7 @@ export * from './AddressDomainReq';
|
|
|
34
34
|
export * from './AddressDomainRes';
|
|
35
35
|
export * from './AddressEntity';
|
|
36
36
|
export * from './Admin';
|
|
37
|
+
export * from './AgeBracketModel';
|
|
37
38
|
export * from './AgentBookingStats';
|
|
38
39
|
export * from './AgentBookingsSummary';
|
|
39
40
|
export * from './AggregateBySource';
|
|
@@ -275,6 +276,7 @@ export * from './GenericAdminListRequest';
|
|
|
275
276
|
export * from './GeoRatesRequest';
|
|
276
277
|
export * from './GetAcceptedCaseBreakdownResponse';
|
|
277
278
|
export * from './GetAccountManagersResponse';
|
|
279
|
+
export * from './GetActiveCasesByAgeResponse';
|
|
278
280
|
export * from './GetActivityFeedResponse';
|
|
279
281
|
export * from './GetAddressInnerResponse';
|
|
280
282
|
export * from './GetAnonymousTicketUploads';
|
|
@@ -34,6 +34,7 @@ export * from './AddressDomainReq';
|
|
|
34
34
|
export * from './AddressDomainRes';
|
|
35
35
|
export * from './AddressEntity';
|
|
36
36
|
export * from './Admin';
|
|
37
|
+
export * from './AgeBracketModel';
|
|
37
38
|
export * from './AgentBookingStats';
|
|
38
39
|
export * from './AgentBookingsSummary';
|
|
39
40
|
export * from './AggregateBySource';
|
|
@@ -275,6 +276,7 @@ export * from './GenericAdminListRequest';
|
|
|
275
276
|
export * from './GeoRatesRequest';
|
|
276
277
|
export * from './GetAcceptedCaseBreakdownResponse';
|
|
277
278
|
export * from './GetAccountManagersResponse';
|
|
279
|
+
export * from './GetActiveCasesByAgeResponse';
|
|
278
280
|
export * from './GetActivityFeedResponse';
|
|
279
281
|
export * from './GetAddressInnerResponse';
|
|
280
282
|
export * from './GetAnonymousTicketUploads';
|
|
@@ -39,6 +39,10 @@ export interface SetFlagOnMessagesUsingPUTRequest {
|
|
|
39
39
|
export interface SetStarOnMessagesUsingPUTRequest {
|
|
40
40
|
request: SetStarOnMessagesRequest;
|
|
41
41
|
}
|
|
42
|
+
export interface SetTypingUsingPUTRequest {
|
|
43
|
+
caseId: string;
|
|
44
|
+
connectionId: string;
|
|
45
|
+
}
|
|
42
46
|
/**
|
|
43
47
|
*
|
|
44
48
|
*/
|
|
@@ -99,4 +103,12 @@ export declare class ConversationControllerApi extends runtime.BaseAPI {
|
|
|
99
103
|
* setStarOnMessages
|
|
100
104
|
*/
|
|
101
105
|
setStarOnMessagesUsingPUT(requestParameters: SetStarOnMessagesUsingPUTRequest): Promise<void>;
|
|
106
|
+
/**
|
|
107
|
+
* setTyping
|
|
108
|
+
*/
|
|
109
|
+
setTypingUsingPUTRaw(requestParameters: SetTypingUsingPUTRequest): Promise<runtime.ApiResponse<void>>;
|
|
110
|
+
/**
|
|
111
|
+
* setTyping
|
|
112
|
+
*/
|
|
113
|
+
setTypingUsingPUT(requestParameters: SetTypingUsingPUTRequest): Promise<void>;
|
|
102
114
|
}
|
|
@@ -252,4 +252,37 @@ export class ConversationControllerApi extends runtime.BaseAPI {
|
|
|
252
252
|
yield this.setStarOnMessagesUsingPUTRaw(requestParameters);
|
|
253
253
|
});
|
|
254
254
|
}
|
|
255
|
+
/**
|
|
256
|
+
* setTyping
|
|
257
|
+
*/
|
|
258
|
+
setTypingUsingPUTRaw(requestParameters) {
|
|
259
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
260
|
+
if (requestParameters.caseId === null || requestParameters.caseId === undefined) {
|
|
261
|
+
throw new runtime.RequiredError('caseId', 'Required parameter requestParameters.caseId was null or undefined when calling setTypingUsingPUT.');
|
|
262
|
+
}
|
|
263
|
+
if (requestParameters.connectionId === null || requestParameters.connectionId === undefined) {
|
|
264
|
+
throw new runtime.RequiredError('connectionId', 'Required parameter requestParameters.connectionId was null or undefined when calling setTypingUsingPUT.');
|
|
265
|
+
}
|
|
266
|
+
const queryParameters = {};
|
|
267
|
+
const headerParameters = {};
|
|
268
|
+
if (requestParameters.connectionId !== undefined && requestParameters.connectionId !== null) {
|
|
269
|
+
headerParameters['connectionId'] = String(requestParameters.connectionId);
|
|
270
|
+
}
|
|
271
|
+
const response = yield this.request({
|
|
272
|
+
path: `/api/v1/cases/conversation/typing/{caseId}`.replace(`{${"caseId"}}`, encodeURIComponent(String(requestParameters.caseId))),
|
|
273
|
+
method: 'PUT',
|
|
274
|
+
headers: headerParameters,
|
|
275
|
+
query: queryParameters,
|
|
276
|
+
});
|
|
277
|
+
return new runtime.VoidApiResponse(response);
|
|
278
|
+
});
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* setTyping
|
|
282
|
+
*/
|
|
283
|
+
setTypingUsingPUT(requestParameters) {
|
|
284
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
285
|
+
yield this.setTypingUsingPUTRaw(requestParameters);
|
|
286
|
+
});
|
|
287
|
+
}
|
|
255
288
|
}
|
|
@@ -10,7 +10,10 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import { GetLawfirmGrossEarningsResponse, GetTopCourtEarningsResponse } from '../models';
|
|
13
|
+
import { GetActiveCasesByAgeResponse, GetLawfirmGrossEarningsResponse, GetTopCourtEarningsResponse } from '../models';
|
|
14
|
+
export interface GetActiveCasesByAgeUsingGETRequest {
|
|
15
|
+
lawfirmId: number;
|
|
16
|
+
}
|
|
14
17
|
export interface GetLawfirmGrossEarningsUsingGETRequest {
|
|
15
18
|
lawfirmId: number;
|
|
16
19
|
period: GetLawfirmGrossEarningsUsingGETPeriodEnum;
|
|
@@ -27,6 +30,14 @@ export interface GetTopCourtEarningsUsingGETRequest {
|
|
|
27
30
|
*
|
|
28
31
|
*/
|
|
29
32
|
export declare class LawfirmDashboardControllerApi extends runtime.BaseAPI {
|
|
33
|
+
/**
|
|
34
|
+
* getActiveCasesByAge
|
|
35
|
+
*/
|
|
36
|
+
getActiveCasesByAgeUsingGETRaw(requestParameters: GetActiveCasesByAgeUsingGETRequest): Promise<runtime.ApiResponse<GetActiveCasesByAgeResponse>>;
|
|
37
|
+
/**
|
|
38
|
+
* getActiveCasesByAge
|
|
39
|
+
*/
|
|
40
|
+
getActiveCasesByAgeUsingGET(requestParameters: GetActiveCasesByAgeUsingGETRequest): Promise<GetActiveCasesByAgeResponse>;
|
|
30
41
|
/**
|
|
31
42
|
* getLawfirmGrossEarnings
|
|
32
43
|
*/
|
|
@@ -21,11 +21,39 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
21
21
|
});
|
|
22
22
|
};
|
|
23
23
|
import * as runtime from '../runtime';
|
|
24
|
-
import { GetLawfirmGrossEarningsResponseFromJSON, GetTopCourtEarningsResponseFromJSON, } from '../models';
|
|
24
|
+
import { GetActiveCasesByAgeResponseFromJSON, GetLawfirmGrossEarningsResponseFromJSON, GetTopCourtEarningsResponseFromJSON, } from '../models';
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export class LawfirmDashboardControllerApi extends runtime.BaseAPI {
|
|
29
|
+
/**
|
|
30
|
+
* getActiveCasesByAge
|
|
31
|
+
*/
|
|
32
|
+
getActiveCasesByAgeUsingGETRaw(requestParameters) {
|
|
33
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
34
|
+
if (requestParameters.lawfirmId === null || requestParameters.lawfirmId === undefined) {
|
|
35
|
+
throw new runtime.RequiredError('lawfirmId', 'Required parameter requestParameters.lawfirmId was null or undefined when calling getActiveCasesByAgeUsingGET.');
|
|
36
|
+
}
|
|
37
|
+
const queryParameters = {};
|
|
38
|
+
const headerParameters = {};
|
|
39
|
+
const response = yield this.request({
|
|
40
|
+
path: `/api/v1/lawfirms/{lawfirmId}/dashboard/active-cases-by-age`.replace(`{${"lawfirmId"}}`, encodeURIComponent(String(requestParameters.lawfirmId))),
|
|
41
|
+
method: 'GET',
|
|
42
|
+
headers: headerParameters,
|
|
43
|
+
query: queryParameters,
|
|
44
|
+
});
|
|
45
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => GetActiveCasesByAgeResponseFromJSON(jsonValue));
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* getActiveCasesByAge
|
|
50
|
+
*/
|
|
51
|
+
getActiveCasesByAgeUsingGET(requestParameters) {
|
|
52
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
53
|
+
const response = yield this.getActiveCasesByAgeUsingGETRaw(requestParameters);
|
|
54
|
+
return yield response.value();
|
|
55
|
+
});
|
|
56
|
+
}
|
|
29
57
|
/**
|
|
30
58
|
* getLawfirmGrossEarnings
|
|
31
59
|
*/
|
|
@@ -0,0 +1,50 @@
|
|
|
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 runtime from '../runtime';
|
|
13
|
+
export interface ConnectUsingPOSTRequest {
|
|
14
|
+
connectionId: string;
|
|
15
|
+
}
|
|
16
|
+
export interface DefaultHandlerUsingPOSTRequest {
|
|
17
|
+
connectionId: string;
|
|
18
|
+
}
|
|
19
|
+
export interface DisconnectUsingPOSTRequest {
|
|
20
|
+
connectionId: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
export declare class WebSocketControllerApi extends runtime.BaseAPI {
|
|
26
|
+
/**
|
|
27
|
+
* connect
|
|
28
|
+
*/
|
|
29
|
+
connectUsingPOSTRaw(requestParameters: ConnectUsingPOSTRequest): Promise<runtime.ApiResponse<void>>;
|
|
30
|
+
/**
|
|
31
|
+
* connect
|
|
32
|
+
*/
|
|
33
|
+
connectUsingPOST(requestParameters: ConnectUsingPOSTRequest): Promise<void>;
|
|
34
|
+
/**
|
|
35
|
+
* defaultHandler
|
|
36
|
+
*/
|
|
37
|
+
defaultHandlerUsingPOSTRaw(requestParameters: DefaultHandlerUsingPOSTRequest): Promise<runtime.ApiResponse<void>>;
|
|
38
|
+
/**
|
|
39
|
+
* defaultHandler
|
|
40
|
+
*/
|
|
41
|
+
defaultHandlerUsingPOST(requestParameters: DefaultHandlerUsingPOSTRequest): Promise<void>;
|
|
42
|
+
/**
|
|
43
|
+
* disconnect
|
|
44
|
+
*/
|
|
45
|
+
disconnectUsingPOSTRaw(requestParameters: DisconnectUsingPOSTRequest): Promise<runtime.ApiResponse<void>>;
|
|
46
|
+
/**
|
|
47
|
+
* disconnect
|
|
48
|
+
*/
|
|
49
|
+
disconnectUsingPOST(requestParameters: DisconnectUsingPOSTRequest): Promise<void>;
|
|
50
|
+
}
|