@otr-app/shared-backend-generated-client 2.3.54 → 2.3.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/angular/.openapi-generator/FILES +4 -0
- package/dist/angular/api/api.ts +3 -1
- package/dist/angular/api/ocrPredictionController.service.ts +164 -0
- package/dist/angular/api.module.ts +1 -0
- package/dist/angular/model/models.ts +3 -0
- package/dist/angular/model/oCRPredictionCaseResponse.ts +63 -0
- package/dist/angular/model/predictCitationTextRequest.ts +26 -0
- package/dist/angular/model/violation.ts +19 -0
- package/dist/otrBackendService.js +37 -0
- package/dist/otrBackendService.min.js +3 -3
- package/dist/typescript/api/OcrPredictionControllerApi.d.ts +27 -0
- package/dist/typescript/api/OcrPredictionControllerApi.js +54 -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/api.module.ts +1 -0
- package/dist/typescript/model/OCRPredictionCaseResponse.d.ts +60 -0
- package/dist/typescript/model/OCRPredictionCaseResponse.js +13 -0
- package/dist/typescript/model/PredictCitationTextRequest.d.ts +21 -0
- package/dist/typescript/model/PredictCitationTextRequest.js +22 -0
- package/dist/typescript/model/Violation.d.ts +16 -0
- package/dist/typescript/model/Violation.js +13 -0
- package/dist/typescript/model/models.d.ts +3 -0
- package/dist/typescript/model/models.js +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
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 OcrPredictionControllerApi {
|
|
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 predictCitationText
|
|
24
|
+
* @param request request
|
|
25
|
+
*/
|
|
26
|
+
predictCitationTextUsingPOST(request: models.PredictCitationTextRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.OCRPredictionCaseResponse>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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.OcrPredictionControllerApi = void 0;
|
|
15
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
16
|
+
var OcrPredictionControllerApi = /** @class */ (function () {
|
|
17
|
+
function OcrPredictionControllerApi($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 predictCitationText
|
|
29
|
+
* @param request request
|
|
30
|
+
*/
|
|
31
|
+
OcrPredictionControllerApi.prototype.predictCitationTextUsingPOST = function (request, extraHttpRequestParams) {
|
|
32
|
+
var localVarPath = this.basePath + '/api/v1/predictions/predict-citation-text';
|
|
33
|
+
var queryParameters = {};
|
|
34
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
35
|
+
// verify required parameter 'request' is not null or undefined
|
|
36
|
+
if (request === null || request === undefined) {
|
|
37
|
+
throw new Error('Required parameter request was null or undefined when calling predictCitationTextUsingPOST.');
|
|
38
|
+
}
|
|
39
|
+
var httpRequestParams = {
|
|
40
|
+
method: 'POST',
|
|
41
|
+
url: localVarPath,
|
|
42
|
+
data: request,
|
|
43
|
+
params: queryParameters,
|
|
44
|
+
headers: headerParams
|
|
45
|
+
};
|
|
46
|
+
if (extraHttpRequestParams) {
|
|
47
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
48
|
+
}
|
|
49
|
+
return this.$http(httpRequestParams);
|
|
50
|
+
};
|
|
51
|
+
OcrPredictionControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
52
|
+
return OcrPredictionControllerApi;
|
|
53
|
+
}());
|
|
54
|
+
exports.OcrPredictionControllerApi = OcrPredictionControllerApi;
|
|
@@ -124,6 +124,8 @@ export * from './MessagesControllerApi';
|
|
|
124
124
|
import { MessagesControllerApi } from './MessagesControllerApi';
|
|
125
125
|
export * from './NotesControllerApi';
|
|
126
126
|
import { NotesControllerApi } from './NotesControllerApi';
|
|
127
|
+
export * from './OcrPredictionControllerApi';
|
|
128
|
+
import { OcrPredictionControllerApi } from './OcrPredictionControllerApi';
|
|
127
129
|
export * from './OnDemandRequestControllerApi';
|
|
128
130
|
import { OnDemandRequestControllerApi } from './OnDemandRequestControllerApi';
|
|
129
131
|
export * from './OneTimePasswordControllerApi';
|
|
@@ -192,4 +194,4 @@ export * from './VerificationControllerApi';
|
|
|
192
194
|
import { VerificationControllerApi } from './VerificationControllerApi';
|
|
193
195
|
export * from './ViolationPenaltyControllerApi';
|
|
194
196
|
import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
|
|
195
|
-
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 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 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 TrafficViolationControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationPenaltyControllerApi)[];
|
|
197
|
+
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 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 TrafficViolationControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationPenaltyControllerApi)[];
|
|
@@ -137,6 +137,8 @@ __exportStar(require("./MessagesControllerApi"), exports);
|
|
|
137
137
|
var MessagesControllerApi_1 = require("./MessagesControllerApi");
|
|
138
138
|
__exportStar(require("./NotesControllerApi"), exports);
|
|
139
139
|
var NotesControllerApi_1 = require("./NotesControllerApi");
|
|
140
|
+
__exportStar(require("./OcrPredictionControllerApi"), exports);
|
|
141
|
+
var OcrPredictionControllerApi_1 = require("./OcrPredictionControllerApi");
|
|
140
142
|
__exportStar(require("./OnDemandRequestControllerApi"), exports);
|
|
141
143
|
var OnDemandRequestControllerApi_1 = require("./OnDemandRequestControllerApi");
|
|
142
144
|
__exportStar(require("./OneTimePasswordControllerApi"), exports);
|
|
@@ -205,4 +207,4 @@ __exportStar(require("./VerificationControllerApi"), exports);
|
|
|
205
207
|
var VerificationControllerApi_1 = require("./VerificationControllerApi");
|
|
206
208
|
__exportStar(require("./ViolationPenaltyControllerApi"), exports);
|
|
207
209
|
var ViolationPenaltyControllerApi_1 = require("./ViolationPenaltyControllerApi");
|
|
208
|
-
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, 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, 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, TrafficViolationControllerApi_1.TrafficViolationControllerApi, 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, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi];
|
|
210
|
+
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, 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, TrafficViolationControllerApi_1.TrafficViolationControllerApi, 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, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi];
|
|
@@ -66,6 +66,7 @@ var apiModule = angular.module('api', [])
|
|
|
66
66
|
.service('MediaCreationControllerApi', api.MediaCreationControllerApi)
|
|
67
67
|
.service('MessagesControllerApi', api.MessagesControllerApi)
|
|
68
68
|
.service('NotesControllerApi', api.NotesControllerApi)
|
|
69
|
+
.service('OcrPredictionControllerApi', api.OcrPredictionControllerApi)
|
|
69
70
|
.service('OnDemandRequestControllerApi', api.OnDemandRequestControllerApi)
|
|
70
71
|
.service('OneTimePasswordControllerApi', api.OneTimePasswordControllerApi)
|
|
71
72
|
.service('PhoneLeadsControllerApi', api.PhoneLeadsControllerApi)
|
|
@@ -65,6 +65,7 @@ const apiModule = angular.module('api', [])
|
|
|
65
65
|
.service('MediaCreationControllerApi', api.MediaCreationControllerApi)
|
|
66
66
|
.service('MessagesControllerApi', api.MessagesControllerApi)
|
|
67
67
|
.service('NotesControllerApi', api.NotesControllerApi)
|
|
68
|
+
.service('OcrPredictionControllerApi', api.OcrPredictionControllerApi)
|
|
68
69
|
.service('OnDemandRequestControllerApi', api.OnDemandRequestControllerApi)
|
|
69
70
|
.service('OneTimePasswordControllerApi', api.OneTimePasswordControllerApi)
|
|
70
71
|
.service('PhoneLeadsControllerApi', api.PhoneLeadsControllerApi)
|
|
@@ -0,0 +1,60 @@
|
|
|
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 OCRPredictionCaseResponse {
|
|
14
|
+
"accident"?: string;
|
|
15
|
+
"cdlClp"?: string;
|
|
16
|
+
"classification"?: string;
|
|
17
|
+
"court"?: string;
|
|
18
|
+
"courtOri"?: string;
|
|
19
|
+
"driversCity"?: string;
|
|
20
|
+
"driversDOB"?: string;
|
|
21
|
+
"driversFirstName"?: string;
|
|
22
|
+
"driversLastName"?: string;
|
|
23
|
+
"driversLicenseExpDate"?: string;
|
|
24
|
+
"driversLicenseNumber"?: string;
|
|
25
|
+
"driversLicenseState"?: string;
|
|
26
|
+
"driversMiddleName"?: string;
|
|
27
|
+
"driversRace"?: string;
|
|
28
|
+
"driversSex"?: string;
|
|
29
|
+
"driversState"?: string;
|
|
30
|
+
"driversStreetAddress"?: string;
|
|
31
|
+
"driversZip"?: string;
|
|
32
|
+
"infractionNumber"?: string;
|
|
33
|
+
"infractionType"?: string;
|
|
34
|
+
"leaOri"?: string;
|
|
35
|
+
"officerBadgeNumber"?: string;
|
|
36
|
+
"officerName"?: string;
|
|
37
|
+
"ownerCity"?: string;
|
|
38
|
+
"ownerFirstName"?: string;
|
|
39
|
+
"ownerLastName"?: string;
|
|
40
|
+
"ownerState"?: string;
|
|
41
|
+
"ownerStreetAddress"?: string;
|
|
42
|
+
"ownerZip"?: string;
|
|
43
|
+
"smd"?: string;
|
|
44
|
+
"totalPenalty"?: string;
|
|
45
|
+
"vehicleActualSpeed"?: string;
|
|
46
|
+
"vehicleColor"?: string;
|
|
47
|
+
"vehicleMake"?: string;
|
|
48
|
+
"vehicleModel"?: string;
|
|
49
|
+
"vehiclePlateExp"?: string;
|
|
50
|
+
"vehiclePlateNumber"?: string;
|
|
51
|
+
"vehiclePlateState"?: string;
|
|
52
|
+
"vehicleStyle"?: string;
|
|
53
|
+
"vehicleYear"?: string;
|
|
54
|
+
"violationCity"?: string;
|
|
55
|
+
"violationDate"?: string;
|
|
56
|
+
"violationLocation"?: string;
|
|
57
|
+
"violationTime"?: string;
|
|
58
|
+
"violations"?: Array<models.Violation>;
|
|
59
|
+
"zoneSpeedLimit"?: string;
|
|
60
|
+
}
|
|
@@ -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,21 @@
|
|
|
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 PredictCitationTextRequest {
|
|
13
|
+
"documentPredictionType"?: PredictCitationTextRequest.DocumentPredictionTypeEnum;
|
|
14
|
+
"imageInBase64"?: string;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace PredictCitationTextRequest {
|
|
17
|
+
enum DocumentPredictionTypeEnum {
|
|
18
|
+
PARKINGTICKET,
|
|
19
|
+
TRAFFICTICKET
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -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.PredictCitationTextRequest = void 0;
|
|
15
|
+
var PredictCitationTextRequest;
|
|
16
|
+
(function (PredictCitationTextRequest) {
|
|
17
|
+
var DocumentPredictionTypeEnum;
|
|
18
|
+
(function (DocumentPredictionTypeEnum) {
|
|
19
|
+
DocumentPredictionTypeEnum[DocumentPredictionTypeEnum["PARKINGTICKET"] = 'PARKING_TICKET'] = "PARKINGTICKET";
|
|
20
|
+
DocumentPredictionTypeEnum[DocumentPredictionTypeEnum["TRAFFICTICKET"] = 'TRAFFIC_TICKET'] = "TRAFFICTICKET";
|
|
21
|
+
})(DocumentPredictionTypeEnum = PredictCitationTextRequest.DocumentPredictionTypeEnum || (PredictCitationTextRequest.DocumentPredictionTypeEnum = {}));
|
|
22
|
+
})(PredictCitationTextRequest = exports.PredictCitationTextRequest || (exports.PredictCitationTextRequest = {}));
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface Violation {
|
|
13
|
+
"code"?: string;
|
|
14
|
+
"description"?: string;
|
|
15
|
+
"penalty"?: string;
|
|
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 });
|
|
@@ -438,6 +438,7 @@ export * from './NoteEntity';
|
|
|
438
438
|
export * from './NoteModel';
|
|
439
439
|
export * from './NotificationEvent';
|
|
440
440
|
export * from './NotificationEvents';
|
|
441
|
+
export * from './OCRPredictionCaseResponse';
|
|
441
442
|
export * from './OutgoingContactDomain';
|
|
442
443
|
export * from './PaymentPlanTypeModel';
|
|
443
444
|
export * from './PaymentPlanTypeModelReq';
|
|
@@ -452,6 +453,7 @@ export * from './PhoneNumberDomainRes';
|
|
|
452
453
|
export * from './PostCourtCoverageRequest';
|
|
453
454
|
export * from './PostFeedbackRequest';
|
|
454
455
|
export * from './PotentialCustomerDomain';
|
|
456
|
+
export * from './PredictCitationTextRequest';
|
|
455
457
|
export * from './PreviewDocumentRequest';
|
|
456
458
|
export * from './PriceMatchRequest';
|
|
457
459
|
export * from './PriceMatchResponse';
|
|
@@ -640,6 +642,7 @@ export * from './VerifyMailingAddressRequest';
|
|
|
640
642
|
export * from './VerifyMailingAddressResponse';
|
|
641
643
|
export * from './VerifyPasswordResetTokenResponse';
|
|
642
644
|
export * from './VerifyUserAccountResponse';
|
|
645
|
+
export * from './Violation';
|
|
643
646
|
export * from './ViolationClassificationModel';
|
|
644
647
|
export * from './ViolationInput';
|
|
645
648
|
export * from './ViolationInputRequest';
|
|
@@ -450,6 +450,7 @@ __exportStar(require("./NoteEntity"), exports);
|
|
|
450
450
|
__exportStar(require("./NoteModel"), exports);
|
|
451
451
|
__exportStar(require("./NotificationEvent"), exports);
|
|
452
452
|
__exportStar(require("./NotificationEvents"), exports);
|
|
453
|
+
__exportStar(require("./OCRPredictionCaseResponse"), exports);
|
|
453
454
|
__exportStar(require("./OutgoingContactDomain"), exports);
|
|
454
455
|
__exportStar(require("./PaymentPlanTypeModel"), exports);
|
|
455
456
|
__exportStar(require("./PaymentPlanTypeModelReq"), exports);
|
|
@@ -464,6 +465,7 @@ __exportStar(require("./PhoneNumberDomainRes"), exports);
|
|
|
464
465
|
__exportStar(require("./PostCourtCoverageRequest"), exports);
|
|
465
466
|
__exportStar(require("./PostFeedbackRequest"), exports);
|
|
466
467
|
__exportStar(require("./PotentialCustomerDomain"), exports);
|
|
468
|
+
__exportStar(require("./PredictCitationTextRequest"), exports);
|
|
467
469
|
__exportStar(require("./PreviewDocumentRequest"), exports);
|
|
468
470
|
__exportStar(require("./PriceMatchRequest"), exports);
|
|
469
471
|
__exportStar(require("./PriceMatchResponse"), exports);
|
|
@@ -652,6 +654,7 @@ __exportStar(require("./VerifyMailingAddressRequest"), exports);
|
|
|
652
654
|
__exportStar(require("./VerifyMailingAddressResponse"), exports);
|
|
653
655
|
__exportStar(require("./VerifyPasswordResetTokenResponse"), exports);
|
|
654
656
|
__exportStar(require("./VerifyUserAccountResponse"), exports);
|
|
657
|
+
__exportStar(require("./Violation"), exports);
|
|
655
658
|
__exportStar(require("./ViolationClassificationModel"), exports);
|
|
656
659
|
__exportStar(require("./ViolationInput"), exports);
|
|
657
660
|
__exportStar(require("./ViolationInputRequest"), exports);
|