@otr-app/shared-backend-generated-client 2.3.125 → 2.3.126

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.
Files changed (31) hide show
  1. package/dist/angular/.openapi-generator/FILES +4 -0
  2. package/dist/angular/api/api.ts +3 -1
  3. package/dist/angular/api/auditLogController.service.ts +170 -0
  4. package/dist/angular/api.module.ts +1 -0
  5. package/dist/angular/model/auditLog.ts +29 -0
  6. package/dist/angular/model/citationAuditLog.ts +35 -0
  7. package/dist/angular/model/getCitationAuditLogsResponse.ts +19 -0
  8. package/dist/angular/model/models.ts +3 -0
  9. package/dist/otrBackendService.js +49 -0
  10. package/dist/otrBackendService.min.js +5 -5
  11. package/dist/typescript/api/AuditLogControllerApi.d.ts +30 -0
  12. package/dist/typescript/api/AuditLogControllerApi.js +66 -0
  13. package/dist/typescript/api/AuditLogControllerApi.ts +73 -0
  14. package/dist/typescript/api/api.d.ts +3 -1
  15. package/dist/typescript/api/api.js +3 -1
  16. package/dist/typescript/api/api.ts +3 -1
  17. package/dist/typescript/api.module.js +1 -0
  18. package/dist/typescript/api.module.ts +1 -0
  19. package/dist/typescript/model/AuditLog.d.ts +24 -0
  20. package/dist/typescript/model/AuditLog.js +22 -0
  21. package/dist/typescript/model/AuditLog.ts +28 -0
  22. package/dist/typescript/model/CitationAuditLog.d.ts +29 -0
  23. package/dist/typescript/model/CitationAuditLog.js +26 -0
  24. package/dist/typescript/model/CitationAuditLog.ts +32 -0
  25. package/dist/typescript/model/GetCitationAuditLogsResponse.d.ts +16 -0
  26. package/dist/typescript/model/GetCitationAuditLogsResponse.js +13 -0
  27. package/dist/typescript/model/GetCitationAuditLogsResponse.ts +19 -0
  28. package/dist/typescript/model/models.d.ts +3 -0
  29. package/dist/typescript/model/models.js +3 -0
  30. package/dist/typescript/model/models.ts +3 -0
  31. package/package.json +1 -1
@@ -0,0 +1,30 @@
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 AuditLogControllerApi {
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 getAuditLogs
24
+ * @param citationId citationId
25
+ * @param logLevel logLevel
26
+ * @param logType logType
27
+ * @param showActiveOnly showActiveOnly
28
+ */
29
+ getAuditLogsUsingGET(citationId: number, logLevel?: 'NON_TECHNICAL' | 'TECHNICAL', logType?: 'APPLY_REFERRAL_CODE' | 'CREATE_LEGAL_SERVICES' | 'INITIATE_CASE' | 'MATCH_CASE' | 'OTHER' | 'TRANSFER_CASE', showActiveOnly?: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCitationAuditLogsResponse>;
30
+ }
@@ -0,0 +1,66 @@
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.AuditLogControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var AuditLogControllerApi = /** @class */ (function () {
17
+ function AuditLogControllerApi($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 getAuditLogs
29
+ * @param citationId citationId
30
+ * @param logLevel logLevel
31
+ * @param logType logType
32
+ * @param showActiveOnly showActiveOnly
33
+ */
34
+ AuditLogControllerApi.prototype.getAuditLogsUsingGET = function (citationId, logLevel, logType, showActiveOnly, extraHttpRequestParams) {
35
+ var localVarPath = this.basePath + '/api/v1/citations/{citationId}/audit-logs'
36
+ .replace('{' + 'citationId' + '}', encodeURIComponent(String(citationId)));
37
+ var queryParameters = {};
38
+ var headerParams = Object.assign({}, this.defaultHeaders);
39
+ // verify required parameter 'citationId' is not null or undefined
40
+ if (citationId === null || citationId === undefined) {
41
+ throw new Error('Required parameter citationId was null or undefined when calling getAuditLogsUsingGET.');
42
+ }
43
+ if (logLevel !== undefined) {
44
+ queryParameters['logLevel'] = logLevel;
45
+ }
46
+ if (logType !== undefined) {
47
+ queryParameters['logType'] = logType;
48
+ }
49
+ if (showActiveOnly !== undefined) {
50
+ queryParameters['showActiveOnly'] = showActiveOnly;
51
+ }
52
+ var httpRequestParams = {
53
+ method: 'GET',
54
+ url: localVarPath,
55
+ params: queryParameters,
56
+ headers: headerParams
57
+ };
58
+ if (extraHttpRequestParams) {
59
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
60
+ }
61
+ return this.$http(httpRequestParams);
62
+ };
63
+ AuditLogControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
64
+ return AuditLogControllerApi;
65
+ }());
66
+ exports.AuditLogControllerApi = AuditLogControllerApi;
@@ -0,0 +1,73 @@
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
+ import * as models from '../model/models';
14
+
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+
17
+ export class AuditLogControllerApi {
18
+ protected basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
19
+ public defaultHeaders : any = {};
20
+
21
+ static $inject: string[] = ['$http', '$httpParamSerializer', 'basePath'];
22
+
23
+ constructor(protected $http: ng.IHttpService, protected $httpParamSerializer?: (d: any) => any, basePath?: string) {
24
+ if (basePath !== undefined) {
25
+ this.basePath = basePath;
26
+ }
27
+ }
28
+
29
+ /**
30
+ *
31
+ * @summary getAuditLogs
32
+ * @param citationId citationId
33
+ * @param logLevel logLevel
34
+ * @param logType logType
35
+ * @param showActiveOnly showActiveOnly
36
+ */
37
+ public getAuditLogsUsingGET (citationId: number, logLevel?: 'NON_TECHNICAL' | 'TECHNICAL', logType?: 'APPLY_REFERRAL_CODE' | 'CREATE_LEGAL_SERVICES' | 'INITIATE_CASE' | 'MATCH_CASE' | 'OTHER' | 'TRANSFER_CASE', showActiveOnly?: boolean, extraHttpRequestParams?: any ) : ng.IHttpPromise<models.GetCitationAuditLogsResponse> {
38
+ const localVarPath = this.basePath + '/api/v1/citations/{citationId}/audit-logs'
39
+ .replace('{' + 'citationId' + '}', encodeURIComponent(String(citationId)));
40
+
41
+ let queryParameters: any = {};
42
+ let headerParams: any = (<any>Object).assign({}, this.defaultHeaders);
43
+ // verify required parameter 'citationId' is not null or undefined
44
+ if (citationId === null || citationId === undefined) {
45
+ throw new Error('Required parameter citationId was null or undefined when calling getAuditLogsUsingGET.');
46
+ }
47
+
48
+ if (logLevel !== undefined) {
49
+ queryParameters['logLevel'] = logLevel;
50
+ }
51
+
52
+ if (logType !== undefined) {
53
+ queryParameters['logType'] = logType;
54
+ }
55
+
56
+ if (showActiveOnly !== undefined) {
57
+ queryParameters['showActiveOnly'] = showActiveOnly;
58
+ }
59
+
60
+ let httpRequestParams: ng.IRequestConfig = {
61
+ method: 'GET',
62
+ url: localVarPath,
63
+ params: queryParameters,
64
+ headers: headerParams
65
+ };
66
+
67
+ if (extraHttpRequestParams) {
68
+ httpRequestParams = (<any>Object).assign(httpRequestParams, extraHttpRequestParams);
69
+ }
70
+
71
+ return this.$http(httpRequestParams);
72
+ }
73
+ }
@@ -10,6 +10,8 @@ export * from './AppEventsControllerApi';
10
10
  import { AppEventsControllerApi } from './AppEventsControllerApi';
11
11
  export * from './AuditLawfirmEventsControllerApi';
12
12
  import { AuditLawfirmEventsControllerApi } from './AuditLawfirmEventsControllerApi';
13
+ export * from './AuditLogControllerApi';
14
+ import { AuditLogControllerApi } from './AuditLogControllerApi';
13
15
  export * from './AuthenticationControllerApi';
14
16
  import { AuthenticationControllerApi } from './AuthenticationControllerApi';
15
17
  export * from './AwsCredentialsControllerApi';
@@ -204,4 +206,4 @@ export * from './WebsocketMessageControllerApi';
204
206
  import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
205
207
  export * from './WorkflowStateControllerApi';
206
208
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
207
- 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 CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | 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 EmailSubscriptionControllerApi | typeof ExternalTicketLookupControllerApi | 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 LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | 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 UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
209
+ export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCreationControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | 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 EmailSubscriptionControllerApi | typeof ExternalTicketLookupControllerApi | 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 LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | 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 UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
@@ -23,6 +23,8 @@ __exportStar(require("./AppEventsControllerApi"), exports);
23
23
  var AppEventsControllerApi_1 = require("./AppEventsControllerApi");
24
24
  __exportStar(require("./AuditLawfirmEventsControllerApi"), exports);
25
25
  var AuditLawfirmEventsControllerApi_1 = require("./AuditLawfirmEventsControllerApi");
26
+ __exportStar(require("./AuditLogControllerApi"), exports);
27
+ var AuditLogControllerApi_1 = require("./AuditLogControllerApi");
26
28
  __exportStar(require("./AuthenticationControllerApi"), exports);
27
29
  var AuthenticationControllerApi_1 = require("./AuthenticationControllerApi");
28
30
  __exportStar(require("./AwsCredentialsControllerApi"), exports);
@@ -217,4 +219,4 @@ __exportStar(require("./WebsocketMessageControllerApi"), exports);
217
219
  var WebsocketMessageControllerApi_1 = require("./WebsocketMessageControllerApi");
218
220
  __exportStar(require("./WorkflowStateControllerApi"), exports);
219
221
  var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
220
- 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, CaseResolutionControllerApi_1.CaseResolutionControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CaseUserControllerApi_1.CaseUserControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationAuditControllerApi_1.CitationAuditControllerApi, 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, CustomerServiceAgentBookingsControllerApi_1.CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi_1.CustomerServiceAgentControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, 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, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, 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, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
222
+ exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuditLogControllerApi_1.AuditLogControllerApi, 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, CaseResolutionControllerApi_1.CaseResolutionControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CaseUserControllerApi_1.CaseUserControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationAuditControllerApi_1.CitationAuditControllerApi, 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, CustomerServiceAgentBookingsControllerApi_1.CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi_1.CustomerServiceAgentControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, 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, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, 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, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
@@ -10,6 +10,8 @@ export * from './AppEventsControllerApi';
10
10
  import { AppEventsControllerApi } from './AppEventsControllerApi';
11
11
  export * from './AuditLawfirmEventsControllerApi';
12
12
  import { AuditLawfirmEventsControllerApi } from './AuditLawfirmEventsControllerApi';
13
+ export * from './AuditLogControllerApi';
14
+ import { AuditLogControllerApi } from './AuditLogControllerApi';
13
15
  export * from './AuthenticationControllerApi';
14
16
  import { AuthenticationControllerApi } from './AuthenticationControllerApi';
15
17
  export * from './AwsCredentialsControllerApi';
@@ -204,4 +206,4 @@ export * from './WebsocketMessageControllerApi';
204
206
  import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
205
207
  export * from './WorkflowStateControllerApi';
206
208
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
207
- export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BlogWebhookControllerApi, BranchLinkControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCreationControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseResolutionControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CaseUserControllerApi, CertificateControllerApi, CitationAuditControllerApi, CitationControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, EmailSubscriptionControllerApi, ExternalTicketLookupControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LegalServicesControllerApi, LineItemControllerApi, ListCasesControllerApi, MediaCreationControllerApi, MessagesControllerApi, NotesControllerApi, 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, UtilityControllerApi, ValidationControllerApi, VerificationControllerApi, ViolationControllerApi, ViolationPenaltyControllerApi, WatchlistsControllerApi, WebsocketMessageControllerApi, WorkflowStateControllerApi];
209
+ export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuditLogControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BlogWebhookControllerApi, BranchLinkControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCreationControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseResolutionControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CaseUserControllerApi, CertificateControllerApi, CitationAuditControllerApi, CitationControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, EmailSubscriptionControllerApi, ExternalTicketLookupControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LegalServicesControllerApi, LineItemControllerApi, ListCasesControllerApi, MediaCreationControllerApi, MessagesControllerApi, NotesControllerApi, 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, UtilityControllerApi, ValidationControllerApi, VerificationControllerApi, ViolationControllerApi, ViolationPenaltyControllerApi, WatchlistsControllerApi, WebsocketMessageControllerApi, WorkflowStateControllerApi];
@@ -9,6 +9,7 @@ var apiModule = angular.module('api', [])
9
9
  .service('AlertNotificationControllerApi', api.AlertNotificationControllerApi)
10
10
  .service('AppEventsControllerApi', api.AppEventsControllerApi)
11
11
  .service('AuditLawfirmEventsControllerApi', api.AuditLawfirmEventsControllerApi)
12
+ .service('AuditLogControllerApi', api.AuditLogControllerApi)
12
13
  .service('AuthenticationControllerApi', api.AuthenticationControllerApi)
13
14
  .service('AwsCredentialsControllerApi', api.AwsCredentialsControllerApi)
14
15
  .service('BlogWebhookControllerApi', api.BlogWebhookControllerApi)
@@ -8,6 +8,7 @@ const apiModule = angular.module('api', [])
8
8
  .service('AlertNotificationControllerApi', api.AlertNotificationControllerApi)
9
9
  .service('AppEventsControllerApi', api.AppEventsControllerApi)
10
10
  .service('AuditLawfirmEventsControllerApi', api.AuditLawfirmEventsControllerApi)
11
+ .service('AuditLogControllerApi', api.AuditLogControllerApi)
11
12
  .service('AuthenticationControllerApi', api.AuthenticationControllerApi)
12
13
  .service('AwsCredentialsControllerApi', api.AwsCredentialsControllerApi)
13
14
  .service('BlogWebhookControllerApi', api.BlogWebhookControllerApi)
@@ -0,0 +1,24 @@
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 AuditLog {
13
+ "date"?: string;
14
+ "key"?: string;
15
+ "level"?: AuditLog.LevelEnum;
16
+ "message"?: string;
17
+ "source"?: string;
18
+ }
19
+ export declare namespace AuditLog {
20
+ enum LevelEnum {
21
+ NONTECHNICAL,
22
+ TECHNICAL
23
+ }
24
+ }
@@ -0,0 +1,22 @@
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.AuditLog = void 0;
15
+ var AuditLog;
16
+ (function (AuditLog) {
17
+ var LevelEnum;
18
+ (function (LevelEnum) {
19
+ LevelEnum[LevelEnum["NONTECHNICAL"] = 'NON_TECHNICAL'] = "NONTECHNICAL";
20
+ LevelEnum[LevelEnum["TECHNICAL"] = 'TECHNICAL'] = "TECHNICAL";
21
+ })(LevelEnum = AuditLog.LevelEnum || (AuditLog.LevelEnum = {}));
22
+ })(AuditLog = exports.AuditLog || (exports.AuditLog = {}));
@@ -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
+
13
+ import * as models from './models';
14
+
15
+ export interface AuditLog {
16
+ "date"?: string;
17
+ "key"?: string;
18
+ "level"?: AuditLog.LevelEnum;
19
+ "message"?: string;
20
+ "source"?: string;
21
+ }
22
+
23
+ export namespace AuditLog {
24
+ export enum LevelEnum {
25
+ NONTECHNICAL = <any> 'NON_TECHNICAL',
26
+ TECHNICAL = <any> 'TECHNICAL'
27
+ }
28
+ }
@@ -0,0 +1,29 @@
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 CitationAuditLog {
14
+ "auditLogType"?: CitationAuditLog.AuditLogTypeEnum;
15
+ "citationId"?: number;
16
+ "creationDateUTC"?: models.Timestamp;
17
+ "isActive"?: boolean;
18
+ "logTrails"?: Array<models.AuditLog>;
19
+ }
20
+ export declare namespace CitationAuditLog {
21
+ enum AuditLogTypeEnum {
22
+ APPLYREFERRALCODE,
23
+ CREATELEGALSERVICES,
24
+ INITIATECASE,
25
+ MATCHCASE,
26
+ OTHER,
27
+ TRANSFERCASE
28
+ }
29
+ }
@@ -0,0 +1,26 @@
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.CitationAuditLog = void 0;
15
+ var CitationAuditLog;
16
+ (function (CitationAuditLog) {
17
+ var AuditLogTypeEnum;
18
+ (function (AuditLogTypeEnum) {
19
+ AuditLogTypeEnum[AuditLogTypeEnum["APPLYREFERRALCODE"] = 'APPLY_REFERRAL_CODE'] = "APPLYREFERRALCODE";
20
+ AuditLogTypeEnum[AuditLogTypeEnum["CREATELEGALSERVICES"] = 'CREATE_LEGAL_SERVICES'] = "CREATELEGALSERVICES";
21
+ AuditLogTypeEnum[AuditLogTypeEnum["INITIATECASE"] = 'INITIATE_CASE'] = "INITIATECASE";
22
+ AuditLogTypeEnum[AuditLogTypeEnum["MATCHCASE"] = 'MATCH_CASE'] = "MATCHCASE";
23
+ AuditLogTypeEnum[AuditLogTypeEnum["OTHER"] = 'OTHER'] = "OTHER";
24
+ AuditLogTypeEnum[AuditLogTypeEnum["TRANSFERCASE"] = 'TRANSFER_CASE'] = "TRANSFERCASE";
25
+ })(AuditLogTypeEnum = CitationAuditLog.AuditLogTypeEnum || (CitationAuditLog.AuditLogTypeEnum = {}));
26
+ })(CitationAuditLog = exports.CitationAuditLog || (exports.CitationAuditLog = {}));
@@ -0,0 +1,32 @@
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
+ import * as models from './models';
14
+
15
+ export interface CitationAuditLog {
16
+ "auditLogType"?: CitationAuditLog.AuditLogTypeEnum;
17
+ "citationId"?: number;
18
+ "creationDateUTC"?: models.Timestamp;
19
+ "isActive"?: boolean;
20
+ "logTrails"?: Array<models.AuditLog>;
21
+ }
22
+
23
+ export namespace CitationAuditLog {
24
+ export enum AuditLogTypeEnum {
25
+ APPLYREFERRALCODE = <any> 'APPLY_REFERRAL_CODE',
26
+ CREATELEGALSERVICES = <any> 'CREATE_LEGAL_SERVICES',
27
+ INITIATECASE = <any> 'INITIATE_CASE',
28
+ MATCHCASE = <any> 'MATCH_CASE',
29
+ OTHER = <any> 'OTHER',
30
+ TRANSFERCASE = <any> 'TRANSFER_CASE'
31
+ }
32
+ }
@@ -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
+ import * as models from './models';
13
+ export interface GetCitationAuditLogsResponse {
14
+ "auditLogs"?: Array<models.CitationAuditLog>;
15
+ "citationId"?: number;
16
+ }
@@ -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,19 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import * as models from './models';
14
+
15
+ export interface GetCitationAuditLogsResponse {
16
+ "auditLogs"?: Array<models.CitationAuditLog>;
17
+ "citationId"?: number;
18
+ }
19
+
@@ -40,6 +40,7 @@ export * from './AppEventCreateRequest';
40
40
  export * from './AppearanceAttorneyDomain';
41
41
  export * from './AppleLoginRequest';
42
42
  export * from './AssignCitationOwnerRequest';
43
+ export * from './AuditLog';
43
44
  export * from './AuthorModel';
44
45
  export * from './AuthorizeChargeForCasePaymentRequest';
45
46
  export * from './AuthorizeChargeForCasePaymentResponse';
@@ -101,6 +102,7 @@ export * from './ChangeUserPasswordRequest';
101
102
  export * from './ChargeFeeToLawfirmRequest';
102
103
  export * from './ChargeFeeToLawfirmResponse';
103
104
  export * from './CitationAuditEventModel';
105
+ export * from './CitationAuditLog';
104
106
  export * from './CitationInputRequest';
105
107
  export * from './CitationModel';
106
108
  export * from './CitationModelReq';
@@ -239,6 +241,7 @@ export * from './GetCasesWithCoverageObtainedResponse';
239
241
  export * from './GetCasesWithMissingLawfirmPayoutsResponse';
240
242
  export * from './GetCasesWithOverduePaymentsResponse';
241
243
  export * from './GetCasesWithUncapturedChargesRequest';
244
+ export * from './GetCitationAuditLogsResponse';
242
245
  export * from './GetCitationPhoneLeadsRequest';
243
246
  export * from './GetCitationPhoneLeadsResponse';
244
247
  export * from './GetCitationResponse';
@@ -52,6 +52,7 @@ __exportStar(require("./AppEventCreateRequest"), exports);
52
52
  __exportStar(require("./AppearanceAttorneyDomain"), exports);
53
53
  __exportStar(require("./AppleLoginRequest"), exports);
54
54
  __exportStar(require("./AssignCitationOwnerRequest"), exports);
55
+ __exportStar(require("./AuditLog"), exports);
55
56
  __exportStar(require("./AuthorModel"), exports);
56
57
  __exportStar(require("./AuthorizeChargeForCasePaymentRequest"), exports);
57
58
  __exportStar(require("./AuthorizeChargeForCasePaymentResponse"), exports);
@@ -113,6 +114,7 @@ __exportStar(require("./ChangeUserPasswordRequest"), exports);
113
114
  __exportStar(require("./ChargeFeeToLawfirmRequest"), exports);
114
115
  __exportStar(require("./ChargeFeeToLawfirmResponse"), exports);
115
116
  __exportStar(require("./CitationAuditEventModel"), exports);
117
+ __exportStar(require("./CitationAuditLog"), exports);
116
118
  __exportStar(require("./CitationInputRequest"), exports);
117
119
  __exportStar(require("./CitationModel"), exports);
118
120
  __exportStar(require("./CitationModelReq"), exports);
@@ -251,6 +253,7 @@ __exportStar(require("./GetCasesWithCoverageObtainedResponse"), exports);
251
253
  __exportStar(require("./GetCasesWithMissingLawfirmPayoutsResponse"), exports);
252
254
  __exportStar(require("./GetCasesWithOverduePaymentsResponse"), exports);
253
255
  __exportStar(require("./GetCasesWithUncapturedChargesRequest"), exports);
256
+ __exportStar(require("./GetCitationAuditLogsResponse"), exports);
254
257
  __exportStar(require("./GetCitationPhoneLeadsRequest"), exports);
255
258
  __exportStar(require("./GetCitationPhoneLeadsResponse"), exports);
256
259
  __exportStar(require("./GetCitationResponse"), exports);
@@ -40,6 +40,7 @@ export * from './AppEventCreateRequest';
40
40
  export * from './AppearanceAttorneyDomain';
41
41
  export * from './AppleLoginRequest';
42
42
  export * from './AssignCitationOwnerRequest';
43
+ export * from './AuditLog';
43
44
  export * from './AuthorModel';
44
45
  export * from './AuthorizeChargeForCasePaymentRequest';
45
46
  export * from './AuthorizeChargeForCasePaymentResponse';
@@ -101,6 +102,7 @@ export * from './ChangeUserPasswordRequest';
101
102
  export * from './ChargeFeeToLawfirmRequest';
102
103
  export * from './ChargeFeeToLawfirmResponse';
103
104
  export * from './CitationAuditEventModel';
105
+ export * from './CitationAuditLog';
104
106
  export * from './CitationInputRequest';
105
107
  export * from './CitationModel';
106
108
  export * from './CitationModelReq';
@@ -239,6 +241,7 @@ export * from './GetCasesWithCoverageObtainedResponse';
239
241
  export * from './GetCasesWithMissingLawfirmPayoutsResponse';
240
242
  export * from './GetCasesWithOverduePaymentsResponse';
241
243
  export * from './GetCasesWithUncapturedChargesRequest';
244
+ export * from './GetCitationAuditLogsResponse';
242
245
  export * from './GetCitationPhoneLeadsRequest';
243
246
  export * from './GetCitationPhoneLeadsResponse';
244
247
  export * from './GetCitationResponse';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.125",
3
+ "version": "2.3.126",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"