@otr-app/shared-backend-generated-client 2.4.7 → 2.4.9

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.
@@ -0,0 +1,28 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /// <reference types="angular" />
13
+ import * as models from '../model/models';
14
+ export declare class IntercomTicketControllerApi {
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 getTicketsByEmail
24
+ * @param userId userId
25
+ * @param length length
26
+ */
27
+ getTicketsByEmailUsingGET(userId: string, length?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.IntercomSearchTicketsResponse>;
28
+ }
@@ -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.IntercomTicketControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var IntercomTicketControllerApi = /** @class */ (function () {
17
+ function IntercomTicketControllerApi($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 getTicketsByEmail
29
+ * @param userId userId
30
+ * @param length length
31
+ */
32
+ IntercomTicketControllerApi.prototype.getTicketsByEmailUsingGET = function (userId, length, extraHttpRequestParams) {
33
+ var localVarPath = this.basePath + '/api/v1/intercom/tickets/search';
34
+ var queryParameters = {};
35
+ var headerParams = Object.assign({}, this.defaultHeaders);
36
+ // verify required parameter 'userId' is not null or undefined
37
+ if (userId === null || userId === undefined) {
38
+ throw new Error('Required parameter userId was null or undefined when calling getTicketsByEmailUsingGET.');
39
+ }
40
+ if (length !== undefined) {
41
+ queryParameters['length'] = length;
42
+ }
43
+ if (userId !== undefined) {
44
+ queryParameters['userId'] = userId;
45
+ }
46
+ var httpRequestParams = {
47
+ method: 'GET',
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
+ IntercomTicketControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
58
+ return IntercomTicketControllerApi;
59
+ }());
60
+ exports.IntercomTicketControllerApi = IntercomTicketControllerApi;
@@ -26,8 +26,8 @@ export declare class UserSearchControllerApi {
26
26
  findMatchingUsersUsingPOST(request: models.FindMatchingUsersRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.FindMatchingUsersResponse>;
27
27
  /**
28
28
  *
29
- * @summary getCountOfMatchingUsers
29
+ * @summary getUserByEmail
30
30
  * @param request request
31
31
  */
32
- getCountOfMatchingUsersUsingPOST(request: models.GetCountOfMatchingUsersRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCountOfMatchingUsersResponse>;
32
+ getUserByEmailUsingPOST(request: models.GetUserByEmailRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetUserByEmailResponse>;
33
33
  }
@@ -50,16 +50,16 @@ var UserSearchControllerApi = /** @class */ (function () {
50
50
  };
51
51
  /**
52
52
  *
53
- * @summary getCountOfMatchingUsers
53
+ * @summary getUserByEmail
54
54
  * @param request request
55
55
  */
56
- UserSearchControllerApi.prototype.getCountOfMatchingUsersUsingPOST = function (request, extraHttpRequestParams) {
56
+ UserSearchControllerApi.prototype.getUserByEmailUsingPOST = function (request, extraHttpRequestParams) {
57
57
  var localVarPath = this.basePath + '/api/v1/users/matches';
58
58
  var queryParameters = {};
59
59
  var headerParams = Object.assign({}, this.defaultHeaders);
60
60
  // verify required parameter 'request' is not null or undefined
61
61
  if (request === null || request === undefined) {
62
- throw new Error('Required parameter request was null or undefined when calling getCountOfMatchingUsersUsingPOST.');
62
+ throw new Error('Required parameter request was null or undefined when calling getUserByEmailUsingPOST.');
63
63
  }
64
64
  var httpRequestParams = {
65
65
  method: 'POST',
@@ -112,6 +112,8 @@ export * from './HubspotWebhookControllerApi';
112
112
  import { HubspotWebhookControllerApi } from './HubspotWebhookControllerApi';
113
113
  export * from './InsuranceCalculatorControllerApi';
114
114
  import { InsuranceCalculatorControllerApi } from './InsuranceCalculatorControllerApi';
115
+ export * from './IntercomTicketControllerApi';
116
+ import { IntercomTicketControllerApi } from './IntercomTicketControllerApi';
115
117
  export * from './LawfirmCaseDecisionControllerApi';
116
118
  import { LawfirmCaseDecisionControllerApi } from './LawfirmCaseDecisionControllerApi';
117
119
  export * from './LawfirmCasesControllerApi';
@@ -226,4 +228,4 @@ export * from './WebsocketMessageControllerApi';
226
228
  import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
227
229
  export * from './WorkflowStateControllerApi';
228
230
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
229
- 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 CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | 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 CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactLoopWebhookControllerApi | 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 DriverLicenseControllerApi | typeof EmailSubscriptionControllerApi | typeof EmployeeControllerApi | 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 UserSocialProfileControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
231
+ 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 CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | 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 CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactLoopWebhookControllerApi | 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 DriverLicenseControllerApi | typeof EmailSubscriptionControllerApi | typeof EmployeeControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof IntercomTicketControllerApi | 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 UserSocialProfileControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
@@ -125,6 +125,8 @@ __exportStar(require("./HubspotWebhookControllerApi"), exports);
125
125
  var HubspotWebhookControllerApi_1 = require("./HubspotWebhookControllerApi");
126
126
  __exportStar(require("./InsuranceCalculatorControllerApi"), exports);
127
127
  var InsuranceCalculatorControllerApi_1 = require("./InsuranceCalculatorControllerApi");
128
+ __exportStar(require("./IntercomTicketControllerApi"), exports);
129
+ var IntercomTicketControllerApi_1 = require("./IntercomTicketControllerApi");
128
130
  __exportStar(require("./LawfirmCaseDecisionControllerApi"), exports);
129
131
  var LawfirmCaseDecisionControllerApi_1 = require("./LawfirmCaseDecisionControllerApi");
130
132
  __exportStar(require("./LawfirmCasesControllerApi"), exports);
@@ -239,4 +241,4 @@ __exportStar(require("./WebsocketMessageControllerApi"), exports);
239
241
  var WebsocketMessageControllerApi_1 = require("./WebsocketMessageControllerApi");
240
242
  __exportStar(require("./WorkflowStateControllerApi"), exports);
241
243
  var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
242
- 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, CaptchaControllerApi_1.CaptchaControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCounterOfferControllerApi_1.CaseCounterOfferControllerApi, 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, CoachingCardsControllerApi_1.CoachingCardsControllerApi, ConfigurationControllerApi_1.ConfigurationControllerApi, ConsoleListControllerApi_1.ConsoleListControllerApi, ContactLoopWebhookControllerApi_1.ContactLoopWebhookControllerApi, 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, DriverLicenseControllerApi_1.DriverLicenseControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, EmployeeControllerApi_1.EmployeeControllerApi, 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, UserSocialProfileControllerApi_1.UserSocialProfileControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
244
+ 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, CaptchaControllerApi_1.CaptchaControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCounterOfferControllerApi_1.CaseCounterOfferControllerApi, 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, CoachingCardsControllerApi_1.CoachingCardsControllerApi, ConfigurationControllerApi_1.ConfigurationControllerApi, ConsoleListControllerApi_1.ConsoleListControllerApi, ContactLoopWebhookControllerApi_1.ContactLoopWebhookControllerApi, 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, DriverLicenseControllerApi_1.DriverLicenseControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, EmployeeControllerApi_1.EmployeeControllerApi, 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, IntercomTicketControllerApi_1.IntercomTicketControllerApi, 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, UserSocialProfileControllerApi_1.UserSocialProfileControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
@@ -60,6 +60,7 @@ var apiModule = angular.module('api', [])
60
60
  .service('HouseholdMateControllerApi', api.HouseholdMateControllerApi)
61
61
  .service('HubspotWebhookControllerApi', api.HubspotWebhookControllerApi)
62
62
  .service('InsuranceCalculatorControllerApi', api.InsuranceCalculatorControllerApi)
63
+ .service('IntercomTicketControllerApi', api.IntercomTicketControllerApi)
63
64
  .service('LawfirmCaseDecisionControllerApi', api.LawfirmCaseDecisionControllerApi)
64
65
  .service('LawfirmCasesControllerApi', api.LawfirmCasesControllerApi)
65
66
  .service('LawfirmControllerApi', api.LawfirmControllerApi)
@@ -0,0 +1,14 @@
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 GetUserByEmailRequest {
13
+ "emailAddress"?: string;
14
+ }
@@ -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
+ export interface GetUserByEmailResponse {
13
+ "firstName"?: string;
14
+ "numMatchingUsers"?: number;
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 });
@@ -285,8 +285,6 @@ export * from './GetClientCasesResponse';
285
285
  export * from './GetClientConfirmedUnpaidCasesResponse';
286
286
  export * from './GetCoachingCardCategoriesResponse';
287
287
  export * from './GetCompetitionResponseModel';
288
- export * from './GetCountOfMatchingUsersRequest';
289
- export * from './GetCountOfMatchingUsersResponse';
290
288
  export * from './GetCounterOfferResponse';
291
289
  export * from './GetCountiesResponse';
292
290
  export * from './GetCountryListResponse';
@@ -369,6 +367,8 @@ export * from './GetTicketReviewResponse';
369
367
  export * from './GetTrafficViolationModel';
370
368
  export * from './GetTrafficViolationTypesResponse';
371
369
  export * from './GetUserAddressesResponse';
370
+ export * from './GetUserByEmailRequest';
371
+ export * from './GetUserByEmailResponse';
372
372
  export * from './GetUserCasesResponse';
373
373
  export * from './GetUserDetailsResponse';
374
374
  export * from './GetUserRefLinksResponse';
@@ -297,8 +297,6 @@ __exportStar(require("./GetClientCasesResponse"), exports);
297
297
  __exportStar(require("./GetClientConfirmedUnpaidCasesResponse"), exports);
298
298
  __exportStar(require("./GetCoachingCardCategoriesResponse"), exports);
299
299
  __exportStar(require("./GetCompetitionResponseModel"), exports);
300
- __exportStar(require("./GetCountOfMatchingUsersRequest"), exports);
301
- __exportStar(require("./GetCountOfMatchingUsersResponse"), exports);
302
300
  __exportStar(require("./GetCounterOfferResponse"), exports);
303
301
  __exportStar(require("./GetCountiesResponse"), exports);
304
302
  __exportStar(require("./GetCountryListResponse"), exports);
@@ -381,6 +379,8 @@ __exportStar(require("./GetTicketReviewResponse"), exports);
381
379
  __exportStar(require("./GetTrafficViolationModel"), exports);
382
380
  __exportStar(require("./GetTrafficViolationTypesResponse"), exports);
383
381
  __exportStar(require("./GetUserAddressesResponse"), exports);
382
+ __exportStar(require("./GetUserByEmailRequest"), exports);
383
+ __exportStar(require("./GetUserByEmailResponse"), exports);
384
384
  __exportStar(require("./GetUserCasesResponse"), exports);
385
385
  __exportStar(require("./GetUserDetailsResponse"), exports);
386
386
  __exportStar(require("./GetUserRefLinksResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.4.7",
3
+ "version": "2.4.9",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"