@otr-app/shared-backend-generated-client 2.3.44 → 2.3.46

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.
@@ -49,8 +49,9 @@ export declare class LawfirmFeeCoverageControllerApi {
49
49
  *
50
50
  * @summary getLawfirmFeeCoverage
51
51
  * @param lawfirmId lawfirmId
52
+ * @param legalServiceType legalServiceType
52
53
  */
53
- getLawfirmFeeCoverageUsingGET(lawfirmId: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmFeeCoverageResponse>;
54
+ getLawfirmFeeCoverageUsingGET(lawfirmId: string, legalServiceType?: 'DEFER' | 'FIGHT', extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmFeeCoverageResponse>;
54
55
  /**
55
56
  *
56
57
  * @summary removeAccountFees
@@ -143,8 +143,9 @@ var LawfirmFeeCoverageControllerApi = /** @class */ (function () {
143
143
  *
144
144
  * @summary getLawfirmFeeCoverage
145
145
  * @param lawfirmId lawfirmId
146
+ * @param legalServiceType legalServiceType
146
147
  */
147
- LawfirmFeeCoverageControllerApi.prototype.getLawfirmFeeCoverageUsingGET = function (lawfirmId, extraHttpRequestParams) {
148
+ LawfirmFeeCoverageControllerApi.prototype.getLawfirmFeeCoverageUsingGET = function (lawfirmId, legalServiceType, extraHttpRequestParams) {
148
149
  var localVarPath = this.basePath + '/api/v2/lawfirms/{lawfirmId}/coverage'
149
150
  .replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
150
151
  var queryParameters = {};
@@ -153,6 +154,9 @@ var LawfirmFeeCoverageControllerApi = /** @class */ (function () {
153
154
  if (lawfirmId === null || lawfirmId === undefined) {
154
155
  throw new Error('Required parameter lawfirmId was null or undefined when calling getLawfirmFeeCoverageUsingGET.');
155
156
  }
157
+ if (legalServiceType !== undefined) {
158
+ queryParameters['legalServiceType'] = legalServiceType;
159
+ }
156
160
  var httpRequestParams = {
157
161
  method: 'GET',
158
162
  url: localVarPath,
@@ -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
+ export declare class LegalServicesControllerApi {
14
+ protected $http: ng.IHttpService;
15
+ protected $httpParamSerializer?: (d: any) => any;
16
+ protected basePath: string;
17
+ defaultHeaders: any;
18
+ static $inject: string[];
19
+ constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
20
+ /**
21
+ *
22
+ * @summary selectLegalService
23
+ * @param citationId citationId
24
+ * @param serviceId serviceId
25
+ */
26
+ selectLegalServiceUsingPUT(citationId: number, serviceId: number, extraHttpRequestParams?: any): ng.IHttpPromise<object>;
27
+ }
@@ -0,0 +1,60 @@
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.LegalServicesControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var LegalServicesControllerApi = /** @class */ (function () {
17
+ function LegalServicesControllerApi($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 selectLegalService
29
+ * @param citationId citationId
30
+ * @param serviceId serviceId
31
+ */
32
+ LegalServicesControllerApi.prototype.selectLegalServiceUsingPUT = function (citationId, serviceId, extraHttpRequestParams) {
33
+ var localVarPath = this.basePath + '/api/v1/citations/{citationId}/legal-services/{serviceId}'
34
+ .replace('{' + 'citationId' + '}', encodeURIComponent(String(citationId)))
35
+ .replace('{' + 'serviceId' + '}', encodeURIComponent(String(serviceId)));
36
+ var queryParameters = {};
37
+ var headerParams = Object.assign({}, this.defaultHeaders);
38
+ // verify required parameter 'citationId' is not null or undefined
39
+ if (citationId === null || citationId === undefined) {
40
+ throw new Error('Required parameter citationId was null or undefined when calling selectLegalServiceUsingPUT.');
41
+ }
42
+ // verify required parameter 'serviceId' is not null or undefined
43
+ if (serviceId === null || serviceId === undefined) {
44
+ throw new Error('Required parameter serviceId was null or undefined when calling selectLegalServiceUsingPUT.');
45
+ }
46
+ var httpRequestParams = {
47
+ method: 'PUT',
48
+ url: localVarPath,
49
+ params: queryParameters,
50
+ headers: headerParams
51
+ };
52
+ if (extraHttpRequestParams) {
53
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
54
+ }
55
+ return this.$http(httpRequestParams);
56
+ };
57
+ LegalServicesControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
58
+ return LegalServicesControllerApi;
59
+ }());
60
+ exports.LegalServicesControllerApi = LegalServicesControllerApi;
@@ -112,6 +112,8 @@ export * from './LawfirmTransactionsControllerApi';
112
112
  import { LawfirmTransactionsControllerApi } from './LawfirmTransactionsControllerApi';
113
113
  export * from './LawyerControllerApi';
114
114
  import { LawyerControllerApi } from './LawyerControllerApi';
115
+ export * from './LegalServicesControllerApi';
116
+ import { LegalServicesControllerApi } from './LegalServicesControllerApi';
115
117
  export * from './LineItemControllerApi';
116
118
  import { LineItemControllerApi } from './LineItemControllerApi';
117
119
  export * from './ListCasesControllerApi';
@@ -190,4 +192,4 @@ export * from './VerificationControllerApi';
190
192
  import { VerificationControllerApi } from './VerificationControllerApi';
191
193
  export * from './ViolationPenaltyControllerApi';
192
194
  import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
193
- 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 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)[];
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)[];
@@ -125,6 +125,8 @@ __exportStar(require("./LawfirmTransactionsControllerApi"), exports);
125
125
  var LawfirmTransactionsControllerApi_1 = require("./LawfirmTransactionsControllerApi");
126
126
  __exportStar(require("./LawyerControllerApi"), exports);
127
127
  var LawyerControllerApi_1 = require("./LawyerControllerApi");
128
+ __exportStar(require("./LegalServicesControllerApi"), exports);
129
+ var LegalServicesControllerApi_1 = require("./LegalServicesControllerApi");
128
130
  __exportStar(require("./LineItemControllerApi"), exports);
129
131
  var LineItemControllerApi_1 = require("./LineItemControllerApi");
130
132
  __exportStar(require("./ListCasesControllerApi"), exports);
@@ -203,4 +205,4 @@ __exportStar(require("./VerificationControllerApi"), exports);
203
205
  var VerificationControllerApi_1 = require("./VerificationControllerApi");
204
206
  __exportStar(require("./ViolationPenaltyControllerApi"), exports);
205
207
  var ViolationPenaltyControllerApi_1 = require("./ViolationPenaltyControllerApi");
206
- 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, 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];
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];
@@ -60,6 +60,7 @@ var apiModule = angular.module('api', [])
60
60
  .service('LawfirmSurchargeControllerApi', api.LawfirmSurchargeControllerApi)
61
61
  .service('LawfirmTransactionsControllerApi', api.LawfirmTransactionsControllerApi)
62
62
  .service('LawyerControllerApi', api.LawyerControllerApi)
63
+ .service('LegalServicesControllerApi', api.LegalServicesControllerApi)
63
64
  .service('LineItemControllerApi', api.LineItemControllerApi)
64
65
  .service('ListCasesControllerApi', api.ListCasesControllerApi)
65
66
  .service('MediaCreationControllerApi', api.MediaCreationControllerApi)
@@ -59,6 +59,7 @@ const apiModule = angular.module('api', [])
59
59
  .service('LawfirmSurchargeControllerApi', api.LawfirmSurchargeControllerApi)
60
60
  .service('LawfirmTransactionsControllerApi', api.LawfirmTransactionsControllerApi)
61
61
  .service('LawyerControllerApi', api.LawyerControllerApi)
62
+ .service('LegalServicesControllerApi', api.LegalServicesControllerApi)
62
63
  .service('LineItemControllerApi', api.LineItemControllerApi)
63
64
  .service('ListCasesControllerApi', api.ListCasesControllerApi)
64
65
  .service('MediaCreationControllerApi', api.MediaCreationControllerApi)
@@ -12,6 +12,13 @@
12
12
  export interface CaseCreationRequest {
13
13
  "courtDate"?: string;
14
14
  "forcePredeterminedLawfirmId"?: boolean;
15
+ "legalServiceType"?: CaseCreationRequest.LegalServiceTypeEnum;
15
16
  "predeterminedLawfirmId"?: number;
16
17
  "setQuoteExpirationOn"?: boolean;
17
18
  }
19
+ export declare namespace CaseCreationRequest {
20
+ enum LegalServiceTypeEnum {
21
+ DEFER,
22
+ FIGHT
23
+ }
24
+ }
@@ -11,3 +11,12 @@
11
11
  * Do not edit the class manually.
12
12
  */
13
13
  Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.CaseCreationRequest = void 0;
15
+ var CaseCreationRequest;
16
+ (function (CaseCreationRequest) {
17
+ var LegalServiceTypeEnum;
18
+ (function (LegalServiceTypeEnum) {
19
+ LegalServiceTypeEnum[LegalServiceTypeEnum["DEFER"] = 'DEFER'] = "DEFER";
20
+ LegalServiceTypeEnum[LegalServiceTypeEnum["FIGHT"] = 'FIGHT'] = "FIGHT";
21
+ })(LegalServiceTypeEnum = CaseCreationRequest.LegalServiceTypeEnum || (CaseCreationRequest.LegalServiceTypeEnum = {}));
22
+ })(CaseCreationRequest = exports.CaseCreationRequest || (exports.CaseCreationRequest = {}));
@@ -14,6 +14,13 @@ export interface GeoRatesRequest {
14
14
  "courtDate"?: string;
15
15
  "courtId"?: string;
16
16
  "isCDL"?: boolean;
17
+ "legalServiceType"?: GeoRatesRequest.LegalServiceTypeEnum;
17
18
  "violationCount"?: number;
18
19
  "violations"?: Array<models.ViolationInputRequest>;
19
20
  }
21
+ export declare namespace GeoRatesRequest {
22
+ enum LegalServiceTypeEnum {
23
+ DEFER,
24
+ FIGHT
25
+ }
26
+ }
@@ -11,3 +11,12 @@
11
11
  * Do not edit the class manually.
12
12
  */
13
13
  Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.GeoRatesRequest = void 0;
15
+ var GeoRatesRequest;
16
+ (function (GeoRatesRequest) {
17
+ var LegalServiceTypeEnum;
18
+ (function (LegalServiceTypeEnum) {
19
+ LegalServiceTypeEnum[LegalServiceTypeEnum["DEFER"] = 'DEFER'] = "DEFER";
20
+ LegalServiceTypeEnum[LegalServiceTypeEnum["FIGHT"] = 'FIGHT'] = "FIGHT";
21
+ })(LegalServiceTypeEnum = GeoRatesRequest.LegalServiceTypeEnum || (GeoRatesRequest.LegalServiceTypeEnum = {}));
22
+ })(GeoRatesRequest = exports.GeoRatesRequest || (exports.GeoRatesRequest = {}));
@@ -17,5 +17,13 @@ export interface GetLawfirmFeeCoverageModel {
17
17
  "courtName"?: string;
18
18
  "fees"?: Array<models.GetLawfirmFeeModel>;
19
19
  "isDeleted"?: boolean;
20
+ "legalServiceId"?: number;
21
+ "legalServiceType"?: GetLawfirmFeeCoverageModel.LegalServiceTypeEnum;
20
22
  "regionCode"?: string;
21
23
  }
24
+ export declare namespace GetLawfirmFeeCoverageModel {
25
+ enum LegalServiceTypeEnum {
26
+ DEFER,
27
+ FIGHT
28
+ }
29
+ }
@@ -11,3 +11,12 @@
11
11
  * Do not edit the class manually.
12
12
  */
13
13
  Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.GetLawfirmFeeCoverageModel = void 0;
15
+ var GetLawfirmFeeCoverageModel;
16
+ (function (GetLawfirmFeeCoverageModel) {
17
+ var LegalServiceTypeEnum;
18
+ (function (LegalServiceTypeEnum) {
19
+ LegalServiceTypeEnum[LegalServiceTypeEnum["DEFER"] = 'DEFER'] = "DEFER";
20
+ LegalServiceTypeEnum[LegalServiceTypeEnum["FIGHT"] = 'FIGHT'] = "FIGHT";
21
+ })(LegalServiceTypeEnum = GetLawfirmFeeCoverageModel.LegalServiceTypeEnum || (GetLawfirmFeeCoverageModel.LegalServiceTypeEnum = {}));
22
+ })(GetLawfirmFeeCoverageModel = exports.GetLawfirmFeeCoverageModel || (exports.GetLawfirmFeeCoverageModel = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.44",
3
+ "version": "2.3.46",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"