@otr-app/shared-backend-generated-client 2.2.5 → 2.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/otrBackendService.js +47 -192
- package/dist/otrBackendService.min.js +5 -6
- package/dist/typescript/api/LawfirmControllerApi.d.ts +9 -2
- package/dist/typescript/api/LawfirmControllerApi.js +34 -5
- package/dist/typescript/api/api.d.ts +1 -3
- package/dist/typescript/api/api.js +1 -3
- package/dist/typescript/api.module.js +0 -1
- package/package.json +1 -1
|
@@ -44,6 +44,14 @@ export declare class LawfirmControllerApi {
|
|
|
44
44
|
* @param lawfirmId lawfirmId
|
|
45
45
|
*/
|
|
46
46
|
deleteLawfirmCoverPhotoUsingDELETE(lawfirmId: string, extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @summary getInboxMessages
|
|
50
|
+
* @param lawfirmId lawfirmId
|
|
51
|
+
* @param length length
|
|
52
|
+
* @param page page
|
|
53
|
+
*/
|
|
54
|
+
getInboxMessagesUsingGET(lawfirmId: number, length?: number, page?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmInboxMessagesResponse>;
|
|
47
55
|
/**
|
|
48
56
|
*
|
|
49
57
|
* @summary getLawfirmAddresses
|
|
@@ -66,11 +74,10 @@ export declare class LawfirmControllerApi {
|
|
|
66
74
|
*
|
|
67
75
|
* @summary getLawfirmInboxMessages
|
|
68
76
|
* @param lawfirmId lawfirmId
|
|
69
|
-
* @param caseId caseId
|
|
70
77
|
* @param length length
|
|
71
78
|
* @param page page
|
|
72
79
|
*/
|
|
73
|
-
getLawfirmInboxMessagesUsingGET(lawfirmId: number,
|
|
80
|
+
getLawfirmInboxMessagesUsingGET(lawfirmId: number, length?: number, page?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmInboxMessagesResponse>;
|
|
74
81
|
/**
|
|
75
82
|
*
|
|
76
83
|
* @summary getLawfirmJobTitles
|
|
@@ -135,6 +135,39 @@ var LawfirmControllerApi = /** @class */ (function () {
|
|
|
135
135
|
}
|
|
136
136
|
return this.$http(httpRequestParams);
|
|
137
137
|
};
|
|
138
|
+
/**
|
|
139
|
+
*
|
|
140
|
+
* @summary getInboxMessages
|
|
141
|
+
* @param lawfirmId lawfirmId
|
|
142
|
+
* @param length length
|
|
143
|
+
* @param page page
|
|
144
|
+
*/
|
|
145
|
+
LawfirmControllerApi.prototype.getInboxMessagesUsingGET = function (lawfirmId, length, page, extraHttpRequestParams) {
|
|
146
|
+
var localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/inbox-messages'
|
|
147
|
+
.replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
|
|
148
|
+
var queryParameters = {};
|
|
149
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
150
|
+
// verify required parameter 'lawfirmId' is not null or undefined
|
|
151
|
+
if (lawfirmId === null || lawfirmId === undefined) {
|
|
152
|
+
throw new Error('Required parameter lawfirmId was null or undefined when calling getInboxMessagesUsingGET.');
|
|
153
|
+
}
|
|
154
|
+
if (length !== undefined) {
|
|
155
|
+
queryParameters['length'] = length;
|
|
156
|
+
}
|
|
157
|
+
if (page !== undefined) {
|
|
158
|
+
queryParameters['page'] = page;
|
|
159
|
+
}
|
|
160
|
+
var httpRequestParams = {
|
|
161
|
+
method: 'GET',
|
|
162
|
+
url: localVarPath,
|
|
163
|
+
params: queryParameters,
|
|
164
|
+
headers: headerParams
|
|
165
|
+
};
|
|
166
|
+
if (extraHttpRequestParams) {
|
|
167
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
168
|
+
}
|
|
169
|
+
return this.$http(httpRequestParams);
|
|
170
|
+
};
|
|
138
171
|
/**
|
|
139
172
|
*
|
|
140
173
|
* @summary getLawfirmAddresses
|
|
@@ -216,11 +249,10 @@ var LawfirmControllerApi = /** @class */ (function () {
|
|
|
216
249
|
*
|
|
217
250
|
* @summary getLawfirmInboxMessages
|
|
218
251
|
* @param lawfirmId lawfirmId
|
|
219
|
-
* @param caseId caseId
|
|
220
252
|
* @param length length
|
|
221
253
|
* @param page page
|
|
222
254
|
*/
|
|
223
|
-
LawfirmControllerApi.prototype.getLawfirmInboxMessagesUsingGET = function (lawfirmId,
|
|
255
|
+
LawfirmControllerApi.prototype.getLawfirmInboxMessagesUsingGET = function (lawfirmId, length, page, extraHttpRequestParams) {
|
|
224
256
|
var localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/messages'
|
|
225
257
|
.replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
|
|
226
258
|
var queryParameters = {};
|
|
@@ -229,9 +261,6 @@ var LawfirmControllerApi = /** @class */ (function () {
|
|
|
229
261
|
if (lawfirmId === null || lawfirmId === undefined) {
|
|
230
262
|
throw new Error('Required parameter lawfirmId was null or undefined when calling getLawfirmInboxMessagesUsingGET.');
|
|
231
263
|
}
|
|
232
|
-
if (caseId !== undefined) {
|
|
233
|
-
queryParameters['caseId'] = caseId;
|
|
234
|
-
}
|
|
235
264
|
if (length !== undefined) {
|
|
236
265
|
queryParameters['length'] = length;
|
|
237
266
|
}
|
|
@@ -36,8 +36,6 @@ export * from './CaseStatusControllerApi';
|
|
|
36
36
|
import { CaseStatusControllerApi } from './CaseStatusControllerApi';
|
|
37
37
|
export * from './CaseTransferControllerApi';
|
|
38
38
|
import { CaseTransferControllerApi } from './CaseTransferControllerApi';
|
|
39
|
-
export * from './CatchAllControllerApi';
|
|
40
|
-
import { CatchAllControllerApi } from './CatchAllControllerApi';
|
|
41
39
|
export * from './CertificateControllerApi';
|
|
42
40
|
import { CertificateControllerApi } from './CertificateControllerApi';
|
|
43
41
|
export * from './CitationControllerApi';
|
|
@@ -170,4 +168,4 @@ export * from './ValidationControllerApi';
|
|
|
170
168
|
import { ValidationControllerApi } from './ValidationControllerApi';
|
|
171
169
|
export * from './ViolationPenaltyControllerApi';
|
|
172
170
|
import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
|
|
173
|
-
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCreationControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof
|
|
171
|
+
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCreationControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CertificateControllerApi | typeof CitationControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof EmailSubscriptionControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof InsuranceCalculatorControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof NotesControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof TrafficViolationControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof ViolationPenaltyControllerApi)[];
|
|
@@ -49,8 +49,6 @@ __exportStar(require("./CaseStatusControllerApi"), exports);
|
|
|
49
49
|
var CaseStatusControllerApi_1 = require("./CaseStatusControllerApi");
|
|
50
50
|
__exportStar(require("./CaseTransferControllerApi"), exports);
|
|
51
51
|
var CaseTransferControllerApi_1 = require("./CaseTransferControllerApi");
|
|
52
|
-
__exportStar(require("./CatchAllControllerApi"), exports);
|
|
53
|
-
var CatchAllControllerApi_1 = require("./CatchAllControllerApi");
|
|
54
52
|
__exportStar(require("./CertificateControllerApi"), exports);
|
|
55
53
|
var CertificateControllerApi_1 = require("./CertificateControllerApi");
|
|
56
54
|
__exportStar(require("./CitationControllerApi"), exports);
|
|
@@ -183,4 +181,4 @@ __exportStar(require("./ValidationControllerApi"), exports);
|
|
|
183
181
|
var ValidationControllerApi_1 = require("./ValidationControllerApi");
|
|
184
182
|
__exportStar(require("./ViolationPenaltyControllerApi"), exports);
|
|
185
183
|
var ViolationPenaltyControllerApi_1 = require("./ViolationPenaltyControllerApi");
|
|
186
|
-
exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi,
|
|
184
|
+
exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationControllerApi_1.CitationControllerApi, ConfigurationControllerApi_1.ConfigurationControllerApi, ConsoleListControllerApi_1.ConsoleListControllerApi, ContactTimelineControllerApi_1.ContactTimelineControllerApi, ConversationControllerApi_1.ConversationControllerApi, CountyControllerApi_1.CountyControllerApi, CourtControllerApi_1.CourtControllerApi, CrmControllerApi_1.CrmControllerApi, CustomerLeadControllerApi_1.CustomerLeadControllerApi, CustomerReviewControllerApi_1.CustomerReviewControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, NotesControllerApi_1.NotesControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, TrafficViolationControllerApi_1.TrafficViolationControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi];
|
|
@@ -22,7 +22,6 @@ var apiModule = angular.module('api', [])
|
|
|
22
22
|
.service('CaseRefundControllerApi', api.CaseRefundControllerApi)
|
|
23
23
|
.service('CaseStatusControllerApi', api.CaseStatusControllerApi)
|
|
24
24
|
.service('CaseTransferControllerApi', api.CaseTransferControllerApi)
|
|
25
|
-
.service('CatchAllControllerApi', api.CatchAllControllerApi)
|
|
26
25
|
.service('CertificateControllerApi', api.CertificateControllerApi)
|
|
27
26
|
.service('CitationControllerApi', api.CitationControllerApi)
|
|
28
27
|
.service('ConfigurationControllerApi', api.ConfigurationControllerApi)
|