@otr-app/shared-backend-generated-client 2.2.31 → 2.2.34
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/otrBackendService.js +168 -0
- package/dist/otrBackendService.min.js +6 -5
- package/dist/typescript/api/AuditLawfirmEventsControllerApi.d.ts +1 -1
- package/dist/typescript/api/CaseControllerApi.d.ts +6 -0
- package/dist/typescript/api/CaseControllerApi.js +25 -0
- package/dist/typescript/api/ConversationControllerApi.d.ts +12 -0
- package/dist/typescript/api/ConversationControllerApi.js +50 -0
- package/dist/typescript/api/UserAuditControllerApi.d.ts +31 -0
- package/dist/typescript/api/UserAuditControllerApi.js +70 -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/CursorModel.d.ts +0 -1
- package/dist/typescript/model/LawfirmAuditEventModel.d.ts +1 -0
- package/dist/typescript/model/LawfirmAuditEventModel.js +1 -0
- package/dist/typescript/model/LawfirmInboxMessageDomain.d.ts +4 -3
- package/dist/typescript/model/ListUserAuditEventsByCursorResponse.d.ts +17 -0
- package/dist/typescript/model/ListUserAuditEventsByCursorResponse.js +13 -0
- package/dist/typescript/model/SetArchiveCaseModel.d.ts +14 -0
- package/dist/typescript/model/SetArchiveCaseModel.js +13 -0
- package/dist/typescript/model/SetArchiveOnCasesRequest.d.ts +17 -0
- package/dist/typescript/model/SetArchiveOnCasesRequest.js +13 -0
- package/dist/typescript/model/SetFlagOnMessageModel.d.ts +14 -0
- package/dist/typescript/model/SetFlagOnMessageModel.js +13 -0
- package/dist/typescript/model/SetFlagOnMessagesRequest.d.ts +17 -0
- package/dist/typescript/model/SetFlagOnMessagesRequest.js +13 -0
- package/dist/typescript/model/SetStarOnMessageModel.d.ts +14 -0
- package/dist/typescript/model/SetStarOnMessageModel.js +13 -0
- package/dist/typescript/model/SetStarOnMessagesRequest.d.ts +17 -0
- package/dist/typescript/model/SetStarOnMessagesRequest.js +13 -0
- package/dist/typescript/model/UserAuditEventModel.d.ts +58 -0
- package/dist/typescript/model/UserAuditEventModel.js +53 -0
- package/dist/typescript/model/models.d.ts +8 -0
- package/dist/typescript/model/models.js +8 -0
- package/package.json +1 -1
|
@@ -27,5 +27,5 @@ export declare class AuditLawfirmEventsControllerApi {
|
|
|
27
27
|
* @param limit limit
|
|
28
28
|
* @param nextPageToken nextPageToken
|
|
29
29
|
*/
|
|
30
|
-
listLawfirmAuditEventsByCursorUsingGET(lawfirmId: number, excludeTypes?: 'CASE_BOOKING' | 'CASE_MATCH' | 'CITATION_UPLOAD' | 'LAWFIRM_ACCOUNT_PRIORITY' | 'LAWFIRM_ACCOUNT_STATUS' | 'LAWFIRM_DAILY_CAPACITY' | 'LAWFIRM_TOTAL_CAPACITY' | 'SAVE_VACATION_MODE_END_DATE' | 'SAVE_VACATION_MODE_REASON' | 'VACATION_MODE_TOGGLE', includeTypes?: 'CASE_BOOKING' | 'CASE_MATCH' | 'CITATION_UPLOAD' | 'LAWFIRM_ACCOUNT_PRIORITY' | 'LAWFIRM_ACCOUNT_STATUS' | 'LAWFIRM_DAILY_CAPACITY' | 'LAWFIRM_TOTAL_CAPACITY' | 'SAVE_VACATION_MODE_END_DATE' | 'SAVE_VACATION_MODE_REASON' | 'VACATION_MODE_TOGGLE', limit?: number, nextPageToken?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListLawfirmAuditEventsByCursorResponse>;
|
|
30
|
+
listLawfirmAuditEventsByCursorUsingGET(lawfirmId: number, excludeTypes?: 'CASE_BOOKING' | 'CASE_MATCH' | 'CITATION_UPLOAD' | 'LAWFIRM_ACCOUNT_PRIORITY' | 'LAWFIRM_ACCOUNT_STATUS' | 'LAWFIRM_DAILY_CAPACITY' | 'LAWFIRM_TOTAL_CAPACITY' | 'SAVE_VACATION_MODE_END_DATE' | 'SAVE_VACATION_MODE_REASON' | 'USER_LOGIN_EVENT' | 'VACATION_MODE_TOGGLE', includeTypes?: 'CASE_BOOKING' | 'CASE_MATCH' | 'CITATION_UPLOAD' | 'LAWFIRM_ACCOUNT_PRIORITY' | 'LAWFIRM_ACCOUNT_STATUS' | 'LAWFIRM_DAILY_CAPACITY' | 'LAWFIRM_TOTAL_CAPACITY' | 'SAVE_VACATION_MODE_END_DATE' | 'SAVE_VACATION_MODE_REASON' | 'USER_LOGIN_EVENT' | 'VACATION_MODE_TOGGLE', limit?: number, nextPageToken?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListLawfirmAuditEventsByCursorResponse>;
|
|
31
31
|
}
|
|
@@ -90,6 +90,12 @@ export declare class CaseControllerApi {
|
|
|
90
90
|
* @param caseId caseId
|
|
91
91
|
*/
|
|
92
92
|
reopenCaseUsingPUT(caseId: string, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @summary setArchiveOnCases
|
|
96
|
+
* @param request request
|
|
97
|
+
*/
|
|
98
|
+
setArchiveOnCasesUsingPUT(request: models.SetArchiveOnCasesRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
93
99
|
/**
|
|
94
100
|
*
|
|
95
101
|
* @summary setCourtDateForCase
|
|
@@ -330,6 +330,31 @@ var CaseControllerApi = /** @class */ (function () {
|
|
|
330
330
|
}
|
|
331
331
|
return this.$http(httpRequestParams);
|
|
332
332
|
};
|
|
333
|
+
/**
|
|
334
|
+
*
|
|
335
|
+
* @summary setArchiveOnCases
|
|
336
|
+
* @param request request
|
|
337
|
+
*/
|
|
338
|
+
CaseControllerApi.prototype.setArchiveOnCasesUsingPUT = function (request, extraHttpRequestParams) {
|
|
339
|
+
var localVarPath = this.basePath + '/api/v1/cases/archive';
|
|
340
|
+
var queryParameters = {};
|
|
341
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
342
|
+
// verify required parameter 'request' is not null or undefined
|
|
343
|
+
if (request === null || request === undefined) {
|
|
344
|
+
throw new Error('Required parameter request was null or undefined when calling setArchiveOnCasesUsingPUT.');
|
|
345
|
+
}
|
|
346
|
+
var httpRequestParams = {
|
|
347
|
+
method: 'PUT',
|
|
348
|
+
url: localVarPath,
|
|
349
|
+
data: request,
|
|
350
|
+
params: queryParameters,
|
|
351
|
+
headers: headerParams
|
|
352
|
+
};
|
|
353
|
+
if (extraHttpRequestParams) {
|
|
354
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
355
|
+
}
|
|
356
|
+
return this.$http(httpRequestParams);
|
|
357
|
+
};
|
|
333
358
|
/**
|
|
334
359
|
*
|
|
335
360
|
* @summary setCourtDateForCase
|
|
@@ -56,4 +56,16 @@ export declare class ConversationControllerApi {
|
|
|
56
56
|
* @param messageId messageId
|
|
57
57
|
*/
|
|
58
58
|
markMessageAsDeletedUsingPUT(caseId: string, isDeleted: boolean, messageId: number, extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @summary setFlagOnMessages
|
|
62
|
+
* @param request request
|
|
63
|
+
*/
|
|
64
|
+
setFlagOnMessagesUsingPUT(request: models.SetFlagOnMessagesRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @summary setStarOnMessages
|
|
68
|
+
* @param request request
|
|
69
|
+
*/
|
|
70
|
+
setStarOnMessagesUsingPUT(request: models.SetStarOnMessagesRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
59
71
|
}
|
|
@@ -194,6 +194,56 @@ var ConversationControllerApi = /** @class */ (function () {
|
|
|
194
194
|
}
|
|
195
195
|
return this.$http(httpRequestParams);
|
|
196
196
|
};
|
|
197
|
+
/**
|
|
198
|
+
*
|
|
199
|
+
* @summary setFlagOnMessages
|
|
200
|
+
* @param request request
|
|
201
|
+
*/
|
|
202
|
+
ConversationControllerApi.prototype.setFlagOnMessagesUsingPUT = function (request, extraHttpRequestParams) {
|
|
203
|
+
var localVarPath = this.basePath + '/api/v1/cases/conversation/flag';
|
|
204
|
+
var queryParameters = {};
|
|
205
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
206
|
+
// verify required parameter 'request' is not null or undefined
|
|
207
|
+
if (request === null || request === undefined) {
|
|
208
|
+
throw new Error('Required parameter request was null or undefined when calling setFlagOnMessagesUsingPUT.');
|
|
209
|
+
}
|
|
210
|
+
var httpRequestParams = {
|
|
211
|
+
method: 'PUT',
|
|
212
|
+
url: localVarPath,
|
|
213
|
+
data: request,
|
|
214
|
+
params: queryParameters,
|
|
215
|
+
headers: headerParams
|
|
216
|
+
};
|
|
217
|
+
if (extraHttpRequestParams) {
|
|
218
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
219
|
+
}
|
|
220
|
+
return this.$http(httpRequestParams);
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @summary setStarOnMessages
|
|
225
|
+
* @param request request
|
|
226
|
+
*/
|
|
227
|
+
ConversationControllerApi.prototype.setStarOnMessagesUsingPUT = function (request, extraHttpRequestParams) {
|
|
228
|
+
var localVarPath = this.basePath + '/api/v1/cases/conversation/star';
|
|
229
|
+
var queryParameters = {};
|
|
230
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
231
|
+
// verify required parameter 'request' is not null or undefined
|
|
232
|
+
if (request === null || request === undefined) {
|
|
233
|
+
throw new Error('Required parameter request was null or undefined when calling setStarOnMessagesUsingPUT.');
|
|
234
|
+
}
|
|
235
|
+
var httpRequestParams = {
|
|
236
|
+
method: 'PUT',
|
|
237
|
+
url: localVarPath,
|
|
238
|
+
data: request,
|
|
239
|
+
params: queryParameters,
|
|
240
|
+
headers: headerParams
|
|
241
|
+
};
|
|
242
|
+
if (extraHttpRequestParams) {
|
|
243
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
244
|
+
}
|
|
245
|
+
return this.$http(httpRequestParams);
|
|
246
|
+
};
|
|
197
247
|
ConversationControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
198
248
|
return ConversationControllerApi;
|
|
199
249
|
}());
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
/// <reference types="angular" />
|
|
13
|
+
import * as models from '../model/models';
|
|
14
|
+
export declare class UserAuditControllerApi {
|
|
15
|
+
protected $http: ng.IHttpService;
|
|
16
|
+
protected $httpParamSerializer?: (d: any) => any;
|
|
17
|
+
protected basePath: string;
|
|
18
|
+
defaultHeaders: any;
|
|
19
|
+
static $inject: string[];
|
|
20
|
+
constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @summary listUserAuditEventsByCursor
|
|
24
|
+
* @param userId userId
|
|
25
|
+
* @param excludeTypes excludeTypes
|
|
26
|
+
* @param includeTypes includeTypes
|
|
27
|
+
* @param limit limit
|
|
28
|
+
* @param nextPageToken nextPageToken
|
|
29
|
+
*/
|
|
30
|
+
listUserAuditEventsByCursorUsingGET(userId: number, excludeTypes?: 'CASE_BOOKING' | 'CASE_MATCH' | 'CITATION_UPLOAD' | 'LAWFIRM_ACCOUNT_PRIORITY' | 'LAWFIRM_ACCOUNT_STATUS' | 'LAWFIRM_DAILY_CAPACITY' | 'LAWFIRM_TOTAL_CAPACITY' | 'SAVE_VACATION_MODE_END_DATE' | 'SAVE_VACATION_MODE_REASON' | 'USER_LOGIN_EVENT' | 'VACATION_MODE_TOGGLE', includeTypes?: 'CASE_BOOKING' | 'CASE_MATCH' | 'CITATION_UPLOAD' | 'LAWFIRM_ACCOUNT_PRIORITY' | 'LAWFIRM_ACCOUNT_STATUS' | 'LAWFIRM_DAILY_CAPACITY' | 'LAWFIRM_TOTAL_CAPACITY' | 'SAVE_VACATION_MODE_END_DATE' | 'SAVE_VACATION_MODE_REASON' | 'USER_LOGIN_EVENT' | 'VACATION_MODE_TOGGLE', limit?: number, nextPageToken?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListUserAuditEventsByCursorResponse>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.UserAuditControllerApi = void 0;
|
|
15
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
16
|
+
var UserAuditControllerApi = /** @class */ (function () {
|
|
17
|
+
function UserAuditControllerApi($http, $httpParamSerializer, basePath) {
|
|
18
|
+
this.$http = $http;
|
|
19
|
+
this.$httpParamSerializer = $httpParamSerializer;
|
|
20
|
+
this.basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
|
|
21
|
+
this.defaultHeaders = {};
|
|
22
|
+
if (basePath !== undefined) {
|
|
23
|
+
this.basePath = basePath;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @summary listUserAuditEventsByCursor
|
|
29
|
+
* @param userId userId
|
|
30
|
+
* @param excludeTypes excludeTypes
|
|
31
|
+
* @param includeTypes includeTypes
|
|
32
|
+
* @param limit limit
|
|
33
|
+
* @param nextPageToken nextPageToken
|
|
34
|
+
*/
|
|
35
|
+
UserAuditControllerApi.prototype.listUserAuditEventsByCursorUsingGET = function (userId, excludeTypes, includeTypes, limit, nextPageToken, extraHttpRequestParams) {
|
|
36
|
+
var localVarPath = this.basePath + '/api/v1/users/{userId}/audit-events'
|
|
37
|
+
.replace('{' + 'userId' + '}', encodeURIComponent(String(userId)));
|
|
38
|
+
var queryParameters = {};
|
|
39
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
40
|
+
// verify required parameter 'userId' is not null or undefined
|
|
41
|
+
if (userId === null || userId === undefined) {
|
|
42
|
+
throw new Error('Required parameter userId was null or undefined when calling listUserAuditEventsByCursorUsingGET.');
|
|
43
|
+
}
|
|
44
|
+
if (excludeTypes !== undefined) {
|
|
45
|
+
queryParameters['excludeTypes'] = excludeTypes;
|
|
46
|
+
}
|
|
47
|
+
if (includeTypes !== undefined) {
|
|
48
|
+
queryParameters['includeTypes'] = includeTypes;
|
|
49
|
+
}
|
|
50
|
+
if (limit !== undefined) {
|
|
51
|
+
queryParameters['limit'] = limit;
|
|
52
|
+
}
|
|
53
|
+
if (nextPageToken !== undefined) {
|
|
54
|
+
queryParameters['nextPageToken'] = nextPageToken;
|
|
55
|
+
}
|
|
56
|
+
var httpRequestParams = {
|
|
57
|
+
method: 'GET',
|
|
58
|
+
url: localVarPath,
|
|
59
|
+
params: queryParameters,
|
|
60
|
+
headers: headerParams
|
|
61
|
+
};
|
|
62
|
+
if (extraHttpRequestParams) {
|
|
63
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
64
|
+
}
|
|
65
|
+
return this.$http(httpRequestParams);
|
|
66
|
+
};
|
|
67
|
+
UserAuditControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
68
|
+
return UserAuditControllerApi;
|
|
69
|
+
}());
|
|
70
|
+
exports.UserAuditControllerApi = UserAuditControllerApi;
|
|
@@ -154,6 +154,8 @@ export * from './UrlRedirectControllerApi';
|
|
|
154
154
|
import { UrlRedirectControllerApi } from './UrlRedirectControllerApi';
|
|
155
155
|
export * from './UserAccountControllerApi';
|
|
156
156
|
import { UserAccountControllerApi } from './UserAccountControllerApi';
|
|
157
|
+
export * from './UserAuditControllerApi';
|
|
158
|
+
import { UserAuditControllerApi } from './UserAuditControllerApi';
|
|
157
159
|
export * from './UserControllerApi';
|
|
158
160
|
import { UserControllerApi } from './UserControllerApi';
|
|
159
161
|
export * from './UserPasswordControllerApi';
|
|
@@ -168,4 +170,4 @@ export * from './ValidationControllerApi';
|
|
|
168
170
|
import { ValidationControllerApi } from './ValidationControllerApi';
|
|
169
171
|
export * from './ViolationPenaltyControllerApi';
|
|
170
172
|
import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
|
|
171
|
-
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCreationControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CertificateControllerApi | typeof CitationControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof EmailSubscriptionControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof InsuranceCalculatorControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof NotesControllerApi | 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 SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof TrafficViolationControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof ViolationPenaltyControllerApi)[];
|
|
173
|
+
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCreationControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CertificateControllerApi | typeof CitationControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof EmailSubscriptionControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof InsuranceCalculatorControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof NotesControllerApi | 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 SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof TrafficViolationControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof ViolationPenaltyControllerApi)[];
|
|
@@ -167,6 +167,8 @@ __exportStar(require("./UrlRedirectControllerApi"), exports);
|
|
|
167
167
|
var UrlRedirectControllerApi_1 = require("./UrlRedirectControllerApi");
|
|
168
168
|
__exportStar(require("./UserAccountControllerApi"), exports);
|
|
169
169
|
var UserAccountControllerApi_1 = require("./UserAccountControllerApi");
|
|
170
|
+
__exportStar(require("./UserAuditControllerApi"), exports);
|
|
171
|
+
var UserAuditControllerApi_1 = require("./UserAuditControllerApi");
|
|
170
172
|
__exportStar(require("./UserControllerApi"), exports);
|
|
171
173
|
var UserControllerApi_1 = require("./UserControllerApi");
|
|
172
174
|
__exportStar(require("./UserPasswordControllerApi"), exports);
|
|
@@ -181,4 +183,4 @@ __exportStar(require("./ValidationControllerApi"), exports);
|
|
|
181
183
|
var ValidationControllerApi_1 = require("./ValidationControllerApi");
|
|
182
184
|
__exportStar(require("./ViolationPenaltyControllerApi"), exports);
|
|
183
185
|
var ViolationPenaltyControllerApi_1 = require("./ViolationPenaltyControllerApi");
|
|
184
|
-
exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationControllerApi_1.CitationControllerApi, ConfigurationControllerApi_1.ConfigurationControllerApi, ConsoleListControllerApi_1.ConsoleListControllerApi, ContactTimelineControllerApi_1.ContactTimelineControllerApi, ConversationControllerApi_1.ConversationControllerApi, CountyControllerApi_1.CountyControllerApi, CourtControllerApi_1.CourtControllerApi, CrmControllerApi_1.CrmControllerApi, CustomerLeadControllerApi_1.CustomerLeadControllerApi, CustomerReviewControllerApi_1.CustomerReviewControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, NotesControllerApi_1.NotesControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, TrafficViolationControllerApi_1.TrafficViolationControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi];
|
|
186
|
+
exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationControllerApi_1.CitationControllerApi, ConfigurationControllerApi_1.ConfigurationControllerApi, ConsoleListControllerApi_1.ConsoleListControllerApi, ContactTimelineControllerApi_1.ContactTimelineControllerApi, ConversationControllerApi_1.ConversationControllerApi, CountyControllerApi_1.CountyControllerApi, CourtControllerApi_1.CourtControllerApi, CrmControllerApi_1.CrmControllerApi, CustomerLeadControllerApi_1.CustomerLeadControllerApi, CustomerReviewControllerApi_1.CustomerReviewControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, NotesControllerApi_1.NotesControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, TrafficViolationControllerApi_1.TrafficViolationControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi];
|
|
@@ -81,6 +81,7 @@ var apiModule = angular.module('api', [])
|
|
|
81
81
|
.service('TrafficViolationControllerApi', api.TrafficViolationControllerApi)
|
|
82
82
|
.service('UrlRedirectControllerApi', api.UrlRedirectControllerApi)
|
|
83
83
|
.service('UserAccountControllerApi', api.UserAccountControllerApi)
|
|
84
|
+
.service('UserAuditControllerApi', api.UserAuditControllerApi)
|
|
84
85
|
.service('UserControllerApi', api.UserControllerApi)
|
|
85
86
|
.service('UserPasswordControllerApi', api.UserPasswordControllerApi)
|
|
86
87
|
.service('UserProfileControllerApi', api.UserProfileControllerApi)
|
|
@@ -47,6 +47,7 @@ var LawfirmAuditEventModel;
|
|
|
47
47
|
EventEnum[EventEnum["LAWFIRMTOTALCAPACITY"] = 'LAWFIRM_TOTAL_CAPACITY'] = "LAWFIRMTOTALCAPACITY";
|
|
48
48
|
EventEnum[EventEnum["SAVEVACATIONMODEENDDATE"] = 'SAVE_VACATION_MODE_END_DATE'] = "SAVEVACATIONMODEENDDATE";
|
|
49
49
|
EventEnum[EventEnum["SAVEVACATIONMODEREASON"] = 'SAVE_VACATION_MODE_REASON'] = "SAVEVACATIONMODEREASON";
|
|
50
|
+
EventEnum[EventEnum["USERLOGINEVENT"] = 'USER_LOGIN_EVENT'] = "USERLOGINEVENT";
|
|
50
51
|
EventEnum[EventEnum["VACATIONMODETOGGLE"] = 'VACATION_MODE_TOGGLE'] = "VACATIONMODETOGGLE";
|
|
51
52
|
})(EventEnum = LawfirmAuditEventModel.EventEnum || (LawfirmAuditEventModel.EventEnum = {}));
|
|
52
53
|
})(LawfirmAuditEventModel = exports.LawfirmAuditEventModel || (exports.LawfirmAuditEventModel = {}));
|
|
@@ -16,14 +16,12 @@ export interface LawfirmInboxMessageDomain {
|
|
|
16
16
|
"authorLastName"?: string;
|
|
17
17
|
"authorRoleType"?: LawfirmInboxMessageDomain.AuthorRoleTypeEnum;
|
|
18
18
|
"authorUserId"?: number;
|
|
19
|
-
"
|
|
19
|
+
"caseArchived"?: boolean;
|
|
20
20
|
"caseId"?: string;
|
|
21
21
|
"caseStatus"?: LawfirmInboxMessageDomain.CaseStatusEnum;
|
|
22
22
|
"caseStatusCategory"?: LawfirmInboxMessageDomain.CaseStatusCategoryEnum;
|
|
23
23
|
"citationIssueDate"?: models.PureDate;
|
|
24
24
|
"citationIssueDateUtc"?: string;
|
|
25
|
-
"clientFirstName"?: string;
|
|
26
|
-
"clientLastName"?: string;
|
|
27
25
|
"courtDateUtc"?: string;
|
|
28
26
|
"courtName"?: string;
|
|
29
27
|
"customerFirstName"?: string;
|
|
@@ -31,7 +29,10 @@ export interface LawfirmInboxMessageDomain {
|
|
|
31
29
|
"lawfirmCaseDecisionStatus"?: LawfirmInboxMessageDomain.LawfirmCaseDecisionStatusEnum;
|
|
32
30
|
"lawfirmReceiptDateUtc"?: string;
|
|
33
31
|
"messageBody"?: string;
|
|
32
|
+
"messageFlagged"?: boolean;
|
|
33
|
+
"messageId"?: number;
|
|
34
34
|
"messageSentDateUtc"?: string;
|
|
35
|
+
"messageStarred"?: boolean;
|
|
35
36
|
"profilePictureUrl"?: string;
|
|
36
37
|
}
|
|
37
38
|
export declare namespace LawfirmInboxMessageDomain {
|
|
@@ -0,0 +1,17 @@
|
|
|
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 ListUserAuditEventsByCursorResponse {
|
|
14
|
+
"cursorModel"?: models.CursorModel;
|
|
15
|
+
"events"?: Array<models.UserAuditEventModel>;
|
|
16
|
+
"totalRecords"?: number;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,14 @@
|
|
|
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 SetArchiveCaseModel {
|
|
13
|
+
"caseId"?: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,17 @@
|
|
|
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 SetArchiveOnCasesRequest {
|
|
14
|
+
"archived"?: boolean;
|
|
15
|
+
"cases"?: Array<models.SetArchiveCaseModel>;
|
|
16
|
+
"userId"?: number;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,14 @@
|
|
|
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 SetFlagOnMessageModel {
|
|
13
|
+
"messageId"?: number;
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,17 @@
|
|
|
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 SetFlagOnMessagesRequest {
|
|
14
|
+
"flagged"?: boolean;
|
|
15
|
+
"messages"?: Array<models.SetFlagOnMessageModel>;
|
|
16
|
+
"userId"?: number;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,14 @@
|
|
|
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 SetStarOnMessageModel {
|
|
13
|
+
"messageId"?: number;
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,17 @@
|
|
|
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 SetStarOnMessagesRequest {
|
|
14
|
+
"messages"?: Array<models.SetStarOnMessageModel>;
|
|
15
|
+
"starred"?: boolean;
|
|
16
|
+
"userId"?: number;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,58 @@
|
|
|
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 UserAuditEventModel {
|
|
13
|
+
"clientType"?: UserAuditEventModel.ClientTypeEnum;
|
|
14
|
+
"eventDate"?: string;
|
|
15
|
+
"eventId"?: number;
|
|
16
|
+
"eventType"?: UserAuditEventModel.EventTypeEnum;
|
|
17
|
+
"newValue"?: string;
|
|
18
|
+
"oldValue"?: string;
|
|
19
|
+
"requesterName"?: string;
|
|
20
|
+
"requesterUserId"?: number;
|
|
21
|
+
"userEventId"?: number;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace UserAuditEventModel {
|
|
24
|
+
enum ClientTypeEnum {
|
|
25
|
+
ANDROID,
|
|
26
|
+
DESKTOPWEBAPP,
|
|
27
|
+
DMVGO,
|
|
28
|
+
DMVORG,
|
|
29
|
+
FRESHDESK,
|
|
30
|
+
IOS,
|
|
31
|
+
MOBILEWEBAPP,
|
|
32
|
+
OTRADMINCONSOLE,
|
|
33
|
+
OTRADMINCONSOLEDEVO,
|
|
34
|
+
OTRADMINCONSOLELOCALHOST,
|
|
35
|
+
OTREXPLORER,
|
|
36
|
+
OTRLAWFIRMPORTAL,
|
|
37
|
+
OTRLAWFIRMPORTALDEVO,
|
|
38
|
+
OTRLAWFIRMPORTALLOCALHOST,
|
|
39
|
+
OTRWEBSITE,
|
|
40
|
+
OTRWEBSITEDEVO,
|
|
41
|
+
OTRWEBSITELOCALHOST,
|
|
42
|
+
OTRWIDGET,
|
|
43
|
+
UNKNOWN
|
|
44
|
+
}
|
|
45
|
+
enum EventTypeEnum {
|
|
46
|
+
CASEBOOKING,
|
|
47
|
+
CASEMATCH,
|
|
48
|
+
CITATIONUPLOAD,
|
|
49
|
+
LAWFIRMACCOUNTPRIORITY,
|
|
50
|
+
LAWFIRMACCOUNTSTATUS,
|
|
51
|
+
LAWFIRMDAILYCAPACITY,
|
|
52
|
+
LAWFIRMTOTALCAPACITY,
|
|
53
|
+
SAVEVACATIONMODEENDDATE,
|
|
54
|
+
SAVEVACATIONMODEREASON,
|
|
55
|
+
USERLOGINEVENT,
|
|
56
|
+
VACATIONMODETOGGLE
|
|
57
|
+
}
|
|
58
|
+
}
|