@otr-app/shared-backend-generated-client 2.3.153 → 2.3.155
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 +7 -0
- package/dist/angular/api/api.ts +3 -1
- package/dist/angular/api/caseDeclineController.service.ts +148 -0
- package/dist/angular/api/snsListenerController.service.ts +70 -0
- package/dist/angular/api.module.ts +1 -0
- package/dist/angular/model/caseDeclineCategory.ts +21 -0
- package/dist/angular/model/caseDeclineCategoryReasonsModel.ts +18 -0
- package/dist/angular/model/caseDeclineReason.ts +19 -0
- package/dist/angular/model/declineCategory.ts +19 -0
- package/dist/angular/model/declineReason.ts +19 -0
- package/dist/angular/model/getCaseDeclineReasonTypesResponse.ts +18 -0
- package/dist/angular/model/models.ts +6 -0
- package/dist/angular/model/setLawfirmCaseDecisionRequest.ts +4 -0
- package/dist/angular/model/validateDirectMailResponse.ts +5 -1
- package/dist/otrBackendService.js +63 -0
- package/dist/otrBackendService.min.js +6 -6
- package/dist/typescript/api/CaseDeclineControllerApi.d.ts +26 -0
- package/dist/typescript/api/CaseDeclineControllerApi.js +48 -0
- package/dist/typescript/api/SnsListenerControllerApi.d.ts +6 -0
- package/dist/typescript/api/SnsListenerControllerApi.js +25 -0
- package/dist/typescript/api/api.d.ts +3 -1
- package/dist/typescript/api/api.js +3 -1
- package/dist/typescript/api.module.js +1 -0
- package/dist/typescript/model/CaseDeclineCategory.d.ts +18 -0
- package/dist/typescript/model/CaseDeclineCategory.js +13 -0
- package/dist/typescript/model/CaseDeclineCategoryReasonsModel.d.ts +17 -0
- package/dist/typescript/model/CaseDeclineCategoryReasonsModel.js +13 -0
- package/dist/typescript/model/CaseDeclineReason.d.ts +16 -0
- package/dist/typescript/model/CaseDeclineReason.js +13 -0
- package/dist/typescript/model/DeclineCategory.d.ts +16 -0
- package/dist/typescript/model/DeclineCategory.js +13 -0
- package/dist/typescript/model/DeclineReason.d.ts +16 -0
- package/dist/typescript/model/DeclineReason.js +13 -0
- package/dist/typescript/model/GetCaseDeclineReasonTypesResponse.d.ts +15 -0
- package/dist/typescript/model/GetCaseDeclineReasonTypesResponse.js +13 -0
- package/dist/typescript/model/SetLawfirmCaseDecisionRequest.d.ts +3 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +4 -0
- package/dist/typescript/model/ValidateDirectMailResponse.js +4 -0
- package/dist/typescript/model/models.d.ts +6 -0
- package/dist/typescript/model/models.js +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
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 CaseDeclineControllerApi {
|
|
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 getCaseDeclineReasonTypes
|
|
24
|
+
*/
|
|
25
|
+
getCaseDeclineReasonTypesUsingGET(extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCaseDeclineReasonTypesResponse>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
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.CaseDeclineControllerApi = void 0;
|
|
15
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
16
|
+
var CaseDeclineControllerApi = /** @class */ (function () {
|
|
17
|
+
function CaseDeclineControllerApi($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 getCaseDeclineReasonTypes
|
|
29
|
+
*/
|
|
30
|
+
CaseDeclineControllerApi.prototype.getCaseDeclineReasonTypesUsingGET = function (extraHttpRequestParams) {
|
|
31
|
+
var localVarPath = this.basePath + '/api/v1/cases/declines/reasons';
|
|
32
|
+
var queryParameters = {};
|
|
33
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
34
|
+
var httpRequestParams = {
|
|
35
|
+
method: 'GET',
|
|
36
|
+
url: localVarPath,
|
|
37
|
+
params: queryParameters,
|
|
38
|
+
headers: headerParams
|
|
39
|
+
};
|
|
40
|
+
if (extraHttpRequestParams) {
|
|
41
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
42
|
+
}
|
|
43
|
+
return this.$http(httpRequestParams);
|
|
44
|
+
};
|
|
45
|
+
CaseDeclineControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
46
|
+
return CaseDeclineControllerApi;
|
|
47
|
+
}());
|
|
48
|
+
exports.CaseDeclineControllerApi = CaseDeclineControllerApi;
|
|
@@ -30,4 +30,10 @@ export declare class SnsListenerControllerApi {
|
|
|
30
30
|
* @param request request
|
|
31
31
|
*/
|
|
32
32
|
handleIncomingEmailsUsingPOST(request: models.IncomingEmailRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @summary handleIncomingHelloEmails
|
|
36
|
+
* @param request request
|
|
37
|
+
*/
|
|
38
|
+
handleIncomingHelloEmailsUsingPOST(request: models.IncomingEmailModels, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
33
39
|
}
|
|
@@ -73,6 +73,31 @@ var SnsListenerControllerApi = /** @class */ (function () {
|
|
|
73
73
|
}
|
|
74
74
|
return this.$http(httpRequestParams);
|
|
75
75
|
};
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @summary handleIncomingHelloEmails
|
|
79
|
+
* @param request request
|
|
80
|
+
*/
|
|
81
|
+
SnsListenerControllerApi.prototype.handleIncomingHelloEmailsUsingPOST = function (request, extraHttpRequestParams) {
|
|
82
|
+
var localVarPath = this.basePath + '/api/v1/ses/inbound-hello-emails';
|
|
83
|
+
var queryParameters = {};
|
|
84
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
85
|
+
// verify required parameter 'request' is not null or undefined
|
|
86
|
+
if (request === null || request === undefined) {
|
|
87
|
+
throw new Error('Required parameter request was null or undefined when calling handleIncomingHelloEmailsUsingPOST.');
|
|
88
|
+
}
|
|
89
|
+
var httpRequestParams = {
|
|
90
|
+
method: 'POST',
|
|
91
|
+
url: localVarPath,
|
|
92
|
+
data: request,
|
|
93
|
+
params: queryParameters,
|
|
94
|
+
headers: headerParams
|
|
95
|
+
};
|
|
96
|
+
if (extraHttpRequestParams) {
|
|
97
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
98
|
+
}
|
|
99
|
+
return this.$http(httpRequestParams);
|
|
100
|
+
};
|
|
76
101
|
SnsListenerControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
77
102
|
return SnsListenerControllerApi;
|
|
78
103
|
}());
|
|
@@ -26,6 +26,8 @@ export * from './CaseControllerApi';
|
|
|
26
26
|
import { CaseControllerApi } from './CaseControllerApi';
|
|
27
27
|
export * from './CaseCreationControllerApi';
|
|
28
28
|
import { CaseCreationControllerApi } from './CaseCreationControllerApi';
|
|
29
|
+
export * from './CaseDeclineControllerApi';
|
|
30
|
+
import { CaseDeclineControllerApi } from './CaseDeclineControllerApi';
|
|
29
31
|
export * from './CaseNotesControllerApi';
|
|
30
32
|
import { CaseNotesControllerApi } from './CaseNotesControllerApi';
|
|
31
33
|
export * from './CasePaymentControllerApi';
|
|
@@ -210,4 +212,4 @@ export * from './WebsocketMessageControllerApi';
|
|
|
210
212
|
import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
|
|
211
213
|
export * from './WorkflowStateControllerApi';
|
|
212
214
|
import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
|
|
213
|
-
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 ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | 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)[];
|
|
215
|
+
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 CaseDeclineControllerApi | 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 ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | 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)[];
|
|
@@ -39,6 +39,8 @@ __exportStar(require("./CaseControllerApi"), exports);
|
|
|
39
39
|
var CaseControllerApi_1 = require("./CaseControllerApi");
|
|
40
40
|
__exportStar(require("./CaseCreationControllerApi"), exports);
|
|
41
41
|
var CaseCreationControllerApi_1 = require("./CaseCreationControllerApi");
|
|
42
|
+
__exportStar(require("./CaseDeclineControllerApi"), exports);
|
|
43
|
+
var CaseDeclineControllerApi_1 = require("./CaseDeclineControllerApi");
|
|
42
44
|
__exportStar(require("./CaseNotesControllerApi"), exports);
|
|
43
45
|
var CaseNotesControllerApi_1 = require("./CaseNotesControllerApi");
|
|
44
46
|
__exportStar(require("./CasePaymentControllerApi"), exports);
|
|
@@ -223,4 +225,4 @@ __exportStar(require("./WebsocketMessageControllerApi"), exports);
|
|
|
223
225
|
var WebsocketMessageControllerApi_1 = require("./WebsocketMessageControllerApi");
|
|
224
226
|
__exportStar(require("./WorkflowStateControllerApi"), exports);
|
|
225
227
|
var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
|
|
226
|
-
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, ExternalContentVoteControllerApi_1.ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, HubspotWebhookControllerApi_1.HubspotWebhookControllerApi, 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];
|
|
228
|
+
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, CaseDeclineControllerApi_1.CaseDeclineControllerApi, 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, ExternalContentVoteControllerApi_1.ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, HubspotWebhookControllerApi_1.HubspotWebhookControllerApi, 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];
|
|
@@ -17,6 +17,7 @@ var apiModule = angular.module('api', [])
|
|
|
17
17
|
.service('CaseActionsControllerApi', api.CaseActionsControllerApi)
|
|
18
18
|
.service('CaseControllerApi', api.CaseControllerApi)
|
|
19
19
|
.service('CaseCreationControllerApi', api.CaseCreationControllerApi)
|
|
20
|
+
.service('CaseDeclineControllerApi', api.CaseDeclineControllerApi)
|
|
20
21
|
.service('CaseNotesControllerApi', api.CaseNotesControllerApi)
|
|
21
22
|
.service('CasePaymentControllerApi', api.CasePaymentControllerApi)
|
|
22
23
|
.service('CaseReferralCodeControllerApi', api.CaseReferralCodeControllerApi)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as models from './models';
|
|
13
|
+
export interface CaseDeclineCategory {
|
|
14
|
+
"caseDeclineCategoryId"?: number;
|
|
15
|
+
"caseDeclineCategoryName"?: string;
|
|
16
|
+
"reasons"?: Array<models.CaseDeclineReason>;
|
|
17
|
+
"uiFriendlyName"?: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as models from './models';
|
|
13
|
+
export interface CaseDeclineCategoryReasonsModel {
|
|
14
|
+
"caseDeclineCategoryReasons"?: {
|
|
15
|
+
[key: string]: models.CaseDeclineCategory;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,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 CaseDeclineReason {
|
|
13
|
+
"caseDeclineReasonId"?: number;
|
|
14
|
+
"caseDeclineReasonName"?: string;
|
|
15
|
+
"uiFriendlyDescription"?: 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 });
|
|
@@ -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 DeclineCategory {
|
|
13
|
+
"declineCategoryId"?: number;
|
|
14
|
+
"declineCategoryName"?: string;
|
|
15
|
+
"uiFriendlyName"?: 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 });
|
|
@@ -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 DeclineReason {
|
|
13
|
+
"declineReasonId"?: number;
|
|
14
|
+
"declineReasonName"?: string;
|
|
15
|
+
"uiFriendlyDescription"?: 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 });
|
|
@@ -0,0 +1,15 @@
|
|
|
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 GetCaseDeclineReasonTypesResponse {
|
|
14
|
+
"caseDeclineReasonTypes"?: models.CaseDeclineCategoryReasonsModel;
|
|
15
|
+
}
|
|
@@ -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 });
|
|
@@ -9,8 +9,11 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import * as models from './models';
|
|
12
13
|
export interface SetLawfirmCaseDecisionRequest {
|
|
13
14
|
"caseDecisionStatus"?: SetLawfirmCaseDecisionRequest.CaseDecisionStatusEnum;
|
|
15
|
+
"declineCategoryType"?: models.DeclineCategory;
|
|
16
|
+
"declineReasonType"?: models.DeclineReason;
|
|
14
17
|
"reason"?: string;
|
|
15
18
|
}
|
|
16
19
|
export declare namespace SetLawfirmCaseDecisionRequest {
|
|
@@ -107,6 +107,8 @@ export declare namespace ValidateDirectMailResponse {
|
|
|
107
107
|
INVALIDCODE,
|
|
108
108
|
INVALIDCOURTID,
|
|
109
109
|
INVALIDDATE,
|
|
110
|
+
INVALIDDECLINECATEGORYID,
|
|
111
|
+
INVALIDDECLINEREASONTYPEID,
|
|
110
112
|
INVALIDDISPUTEID,
|
|
111
113
|
INVALIDDOCUMENTID,
|
|
112
114
|
INVALIDEMAILADDRESS,
|
|
@@ -182,6 +184,8 @@ export declare namespace ValidateDirectMailResponse {
|
|
|
182
184
|
MISSINGCITATIONID,
|
|
183
185
|
MISSINGCOURTFEE,
|
|
184
186
|
MISSINGCOURTID,
|
|
187
|
+
MISSINGDECLINECATEGORY,
|
|
188
|
+
MISSINGDECLINEREASONTYPE,
|
|
185
189
|
MISSINGEMAILADDRESS,
|
|
186
190
|
MISSINGFEEDBACKCONTENT,
|
|
187
191
|
MISSINGFIRSTNAME,
|
|
@@ -109,6 +109,8 @@ var ValidateDirectMailResponse;
|
|
|
109
109
|
OtrErrorEnum[OtrErrorEnum["INVALIDCODE"] = 'INVALID_CODE'] = "INVALIDCODE";
|
|
110
110
|
OtrErrorEnum[OtrErrorEnum["INVALIDCOURTID"] = 'INVALID_COURT_ID'] = "INVALIDCOURTID";
|
|
111
111
|
OtrErrorEnum[OtrErrorEnum["INVALIDDATE"] = 'INVALID_DATE'] = "INVALIDDATE";
|
|
112
|
+
OtrErrorEnum[OtrErrorEnum["INVALIDDECLINECATEGORYID"] = 'INVALID_DECLINE_CATEGORY_ID'] = "INVALIDDECLINECATEGORYID";
|
|
113
|
+
OtrErrorEnum[OtrErrorEnum["INVALIDDECLINEREASONTYPEID"] = 'INVALID_DECLINE_REASON_TYPE_ID'] = "INVALIDDECLINEREASONTYPEID";
|
|
112
114
|
OtrErrorEnum[OtrErrorEnum["INVALIDDISPUTEID"] = 'INVALID_DISPUTE_ID'] = "INVALIDDISPUTEID";
|
|
113
115
|
OtrErrorEnum[OtrErrorEnum["INVALIDDOCUMENTID"] = 'INVALID_DOCUMENT_ID'] = "INVALIDDOCUMENTID";
|
|
114
116
|
OtrErrorEnum[OtrErrorEnum["INVALIDEMAILADDRESS"] = 'INVALID_EMAIL_ADDRESS'] = "INVALIDEMAILADDRESS";
|
|
@@ -184,6 +186,8 @@ var ValidateDirectMailResponse;
|
|
|
184
186
|
OtrErrorEnum[OtrErrorEnum["MISSINGCITATIONID"] = 'MISSING_CITATION_ID'] = "MISSINGCITATIONID";
|
|
185
187
|
OtrErrorEnum[OtrErrorEnum["MISSINGCOURTFEE"] = 'MISSING_COURT_FEE'] = "MISSINGCOURTFEE";
|
|
186
188
|
OtrErrorEnum[OtrErrorEnum["MISSINGCOURTID"] = 'MISSING_COURT_ID'] = "MISSINGCOURTID";
|
|
189
|
+
OtrErrorEnum[OtrErrorEnum["MISSINGDECLINECATEGORY"] = 'MISSING_DECLINE_CATEGORY'] = "MISSINGDECLINECATEGORY";
|
|
190
|
+
OtrErrorEnum[OtrErrorEnum["MISSINGDECLINEREASONTYPE"] = 'MISSING_DECLINE_REASON_TYPE'] = "MISSINGDECLINEREASONTYPE";
|
|
187
191
|
OtrErrorEnum[OtrErrorEnum["MISSINGEMAILADDRESS"] = 'MISSING_EMAIL_ADDRESS'] = "MISSINGEMAILADDRESS";
|
|
188
192
|
OtrErrorEnum[OtrErrorEnum["MISSINGFEEDBACKCONTENT"] = 'MISSING_FEEDBACK_CONTENT'] = "MISSINGFEEDBACKCONTENT";
|
|
189
193
|
OtrErrorEnum[OtrErrorEnum["MISSINGFIRSTNAME"] = 'MISSING_FIRSTNAME'] = "MISSINGFIRSTNAME";
|
|
@@ -78,6 +78,9 @@ export * from './CaseAlert';
|
|
|
78
78
|
export * from './CaseBookingsStats';
|
|
79
79
|
export * from './CaseChargeResponsePojo';
|
|
80
80
|
export * from './CaseCreationRequest';
|
|
81
|
+
export * from './CaseDeclineCategory';
|
|
82
|
+
export * from './CaseDeclineCategoryReasonsModel';
|
|
83
|
+
export * from './CaseDeclineReason';
|
|
81
84
|
export * from './CaseItem';
|
|
82
85
|
export * from './CaseLineItemDomainReq';
|
|
83
86
|
export * from './CaseLineItemDomainRes';
|
|
@@ -167,6 +170,8 @@ export * from './DashboardCaseModel';
|
|
|
167
170
|
export * from './DashboardCitationModel';
|
|
168
171
|
export * from './DashboardCourtModel';
|
|
169
172
|
export * from './DashboardStatusModel';
|
|
173
|
+
export * from './DeclineCategory';
|
|
174
|
+
export * from './DeclineReason';
|
|
170
175
|
export * from './DefaultClassModel';
|
|
171
176
|
export * from './DeleteCitationResponse';
|
|
172
177
|
export * from './DeleteLawyerLicenseRequest';
|
|
@@ -234,6 +239,7 @@ export * from './GetCaseActionResponse';
|
|
|
234
239
|
export * from './GetCaseActionTimelineResponse';
|
|
235
240
|
export * from './GetCaseActionTypesResponse';
|
|
236
241
|
export * from './GetCaseCostsAttorneyResponse';
|
|
242
|
+
export * from './GetCaseDeclineReasonTypesResponse';
|
|
237
243
|
export * from './GetCaseDocumentResponse';
|
|
238
244
|
export * from './GetCaseFromCitationResponse';
|
|
239
245
|
export * from './GetCaseMessagesResponse';
|
|
@@ -90,6 +90,9 @@ __exportStar(require("./CaseAlert"), exports);
|
|
|
90
90
|
__exportStar(require("./CaseBookingsStats"), exports);
|
|
91
91
|
__exportStar(require("./CaseChargeResponsePojo"), exports);
|
|
92
92
|
__exportStar(require("./CaseCreationRequest"), exports);
|
|
93
|
+
__exportStar(require("./CaseDeclineCategory"), exports);
|
|
94
|
+
__exportStar(require("./CaseDeclineCategoryReasonsModel"), exports);
|
|
95
|
+
__exportStar(require("./CaseDeclineReason"), exports);
|
|
93
96
|
__exportStar(require("./CaseItem"), exports);
|
|
94
97
|
__exportStar(require("./CaseLineItemDomainReq"), exports);
|
|
95
98
|
__exportStar(require("./CaseLineItemDomainRes"), exports);
|
|
@@ -179,6 +182,8 @@ __exportStar(require("./DashboardCaseModel"), exports);
|
|
|
179
182
|
__exportStar(require("./DashboardCitationModel"), exports);
|
|
180
183
|
__exportStar(require("./DashboardCourtModel"), exports);
|
|
181
184
|
__exportStar(require("./DashboardStatusModel"), exports);
|
|
185
|
+
__exportStar(require("./DeclineCategory"), exports);
|
|
186
|
+
__exportStar(require("./DeclineReason"), exports);
|
|
182
187
|
__exportStar(require("./DefaultClassModel"), exports);
|
|
183
188
|
__exportStar(require("./DeleteCitationResponse"), exports);
|
|
184
189
|
__exportStar(require("./DeleteLawyerLicenseRequest"), exports);
|
|
@@ -246,6 +251,7 @@ __exportStar(require("./GetCaseActionResponse"), exports);
|
|
|
246
251
|
__exportStar(require("./GetCaseActionTimelineResponse"), exports);
|
|
247
252
|
__exportStar(require("./GetCaseActionTypesResponse"), exports);
|
|
248
253
|
__exportStar(require("./GetCaseCostsAttorneyResponse"), exports);
|
|
254
|
+
__exportStar(require("./GetCaseDeclineReasonTypesResponse"), exports);
|
|
249
255
|
__exportStar(require("./GetCaseDocumentResponse"), exports);
|
|
250
256
|
__exportStar(require("./GetCaseFromCitationResponse"), exports);
|
|
251
257
|
__exportStar(require("./GetCaseMessagesResponse"), exports);
|