@otr-app/shared-backend-generated-client 2.3.268 → 2.3.270

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.
Files changed (59) hide show
  1. package/dist/angular/.openapi-generator/FILES +2 -0
  2. package/dist/angular/api/api.ts +3 -1
  3. package/dist/angular/api/contactLoopWebhookController.service.ts +162 -0
  4. package/dist/angular/api/userAuditController.service.ts +4 -4
  5. package/dist/angular/api.module.ts +1 -0
  6. package/dist/angular/model/citationAuditEventModel.ts +2 -1
  7. package/dist/angular/model/citationModel.ts +2 -1
  8. package/dist/angular/model/citationModelReq.ts +2 -1
  9. package/dist/angular/model/citationModelRes.ts +2 -1
  10. package/dist/angular/model/contactLoopWebhookRequest.ts +27 -0
  11. package/dist/angular/model/createCitationRequest.ts +2 -1
  12. package/dist/angular/model/ghostUser.ts +2 -1
  13. package/dist/angular/model/lastLoginDateModel.ts +2 -1
  14. package/dist/angular/model/lawfirmAuditEventModel.ts +2 -1
  15. package/dist/angular/model/models.ts +1 -0
  16. package/dist/angular/model/registerNewUserRequest.ts +2 -1
  17. package/dist/angular/model/registeredUserDomain.ts +2 -1
  18. package/dist/angular/model/setReferralSourceRequest.ts +2 -1
  19. package/dist/angular/model/socialLoginRequest.ts +2 -1
  20. package/dist/angular/model/userAuditEventModel.ts +2 -1
  21. package/dist/otrBackendService.js +37 -0
  22. package/dist/otrBackendService.min.js +5 -5
  23. package/dist/typescript/api/ContactLoopWebhookControllerApi.d.ts +27 -0
  24. package/dist/typescript/api/ContactLoopWebhookControllerApi.js +54 -0
  25. package/dist/typescript/api/UserAuditControllerApi.d.ts +1 -1
  26. package/dist/typescript/api/api.d.ts +3 -1
  27. package/dist/typescript/api/api.js +3 -1
  28. package/dist/typescript/api.module.js +1 -0
  29. package/dist/typescript/model/CitationAuditEventModel.d.ts +1 -0
  30. package/dist/typescript/model/CitationAuditEventModel.js +1 -0
  31. package/dist/typescript/model/CitationModel.d.ts +1 -0
  32. package/dist/typescript/model/CitationModel.js +1 -0
  33. package/dist/typescript/model/CitationModelReq.d.ts +1 -0
  34. package/dist/typescript/model/CitationModelReq.js +1 -0
  35. package/dist/typescript/model/CitationModelRes.d.ts +1 -0
  36. package/dist/typescript/model/CitationModelRes.js +1 -0
  37. package/dist/typescript/model/ContactLoopWebhookRequest.d.ts +24 -0
  38. package/dist/typescript/model/ContactLoopWebhookRequest.js +13 -0
  39. package/dist/typescript/model/CreateCitationRequest.d.ts +1 -0
  40. package/dist/typescript/model/CreateCitationRequest.js +1 -0
  41. package/dist/typescript/model/GhostUser.d.ts +1 -0
  42. package/dist/typescript/model/GhostUser.js +1 -0
  43. package/dist/typescript/model/LastLoginDateModel.d.ts +1 -0
  44. package/dist/typescript/model/LastLoginDateModel.js +1 -0
  45. package/dist/typescript/model/LawfirmAuditEventModel.d.ts +1 -0
  46. package/dist/typescript/model/LawfirmAuditEventModel.js +1 -0
  47. package/dist/typescript/model/RegisterNewUserRequest.d.ts +1 -0
  48. package/dist/typescript/model/RegisterNewUserRequest.js +1 -0
  49. package/dist/typescript/model/RegisteredUserDomain.d.ts +1 -0
  50. package/dist/typescript/model/RegisteredUserDomain.js +1 -0
  51. package/dist/typescript/model/SetReferralSourceRequest.d.ts +1 -0
  52. package/dist/typescript/model/SetReferralSourceRequest.js +1 -0
  53. package/dist/typescript/model/SocialLoginRequest.d.ts +1 -0
  54. package/dist/typescript/model/SocialLoginRequest.js +1 -0
  55. package/dist/typescript/model/UserAuditEventModel.d.ts +1 -0
  56. package/dist/typescript/model/UserAuditEventModel.js +1 -0
  57. package/dist/typescript/model/models.d.ts +1 -0
  58. package/dist/typescript/model/models.js +1 -0
  59. package/package.json +1 -1
@@ -33,6 +33,7 @@ api/citationController.service.ts
33
33
  api/coachingCardsController.service.ts
34
34
  api/configurationController.service.ts
35
35
  api/consoleListController.service.ts
36
+ api/contactLoopWebhookController.service.ts
36
37
  api/contactTimelineController.service.ts
37
38
  api/conversationController.service.ts
38
39
  api/countyController.service.ts
@@ -256,6 +257,7 @@ model/coachingCardsModel.ts
256
257
  model/coachingLinks.ts
257
258
  model/commonHeader.ts
258
259
  model/confidenceField.ts
260
+ model/contactLoopWebhookRequest.ts
259
261
  model/contactTimelineResponse.ts
260
262
  model/convertPdfToImageModel.ts
261
263
  model/convertPdfToImageRequest.ts
@@ -60,6 +60,8 @@ export * from './configurationController.service';
60
60
  import { ConfigurationControllerService } from './configurationController.service';
61
61
  export * from './consoleListController.service';
62
62
  import { ConsoleListControllerService } from './consoleListController.service';
63
+ export * from './contactLoopWebhookController.service';
64
+ import { ContactLoopWebhookControllerService } from './contactLoopWebhookController.service';
63
65
  export * from './contactTimelineController.service';
64
66
  import { ContactTimelineControllerService } from './contactTimelineController.service';
65
67
  export * from './conversationController.service';
@@ -224,4 +226,4 @@ export * from './websocketMessageController.service';
224
226
  import { WebsocketMessageControllerService } from './websocketMessageController.service';
225
227
  export * from './workflowStateController.service';
226
228
  import { WorkflowStateControllerService } from './workflowStateController.service';
227
- export const APIS = [ActionRequiredControllerService, ActivityFeedControllerService, AddressControllerService, AlertNotificationControllerService, AppEventsControllerService, AuditLawfirmEventsControllerService, AuditLogControllerService, AuthenticationControllerService, AwsCredentialsControllerService, BlogWebhookControllerService, BranchLinkControllerService, CaptchaControllerService, CaseActionsControllerService, CaseControllerService, CaseCounterOfferControllerService, CaseCreationControllerService, CaseDeclineControllerService, CaseNotesControllerService, CasePaymentControllerService, CaseReferralCodeControllerService, CaseRefundControllerService, CaseResolutionControllerService, CaseStatusControllerService, CaseTransferControllerService, CaseUserControllerService, CertificateControllerService, CitationAuditControllerService, CitationControllerService, CoachingCardsControllerService, ConfigurationControllerService, ConsoleListControllerService, ContactTimelineControllerService, ConversationControllerService, CountyControllerService, CourtControllerService, CrmControllerService, CustomerLeadControllerService, CustomerReviewControllerService, CustomerServiceAgentBookingsControllerService, CustomerServiceAgentControllerService, DashboardControllerService, DirectMailControllerService, DripControllerService, DripWebhooksControllerService, DriverLicenseControllerService, EmailSubscriptionControllerService, EmployeeControllerService, ExternalContentVoteControllerService, ExternalTicketLookupControllerService, FeedbackControllerService, FreshcallerControllerService, FreshdeskTicketControllerService, GetCaseControllerService, HouseholdMateControllerService, HubspotWebhookControllerService, InsuranceCalculatorControllerService, LawfirmCaseDecisionControllerService, LawfirmCasesControllerService, LawfirmControllerService, LawfirmDocumentControllerService, LawfirmFeeCoverageControllerService, LawfirmPaymentModelControllerService, LawfirmRatesControllerService, LawfirmSettingsControllerService, LawfirmStorefrontControllerService, LawfirmSurchargeControllerService, LawfirmTransactionsControllerService, LawyerControllerService, LegalServicesControllerService, LineItemControllerService, ListCasesControllerService, MediaCreationControllerService, MessagesControllerService, NotesControllerService, OcrPredictionControllerService, OnDemandRequestControllerService, OneTimePasswordControllerService, PhoneLeadsControllerService, PushNotificationControllerService, RecurringBillingControllerService, RefLinkControllerService, ReferralCodeControllerService, ReferralControllerService, ReferralSourceControllerService, RefundEligibilityControllerService, RegistrationControllerService, ReportingControllerService, ScheduledTaskControllerService, SingleSignOnControllerService, SnsListenerControllerService, SocialLoginControllerService, StripeCardControllerService, StripeControllerService, StripeSyncControllerService, StripeWebhookControllerService, TicketReviewControllerService, UrlRedirectControllerService, UserAccountControllerService, UserAuditControllerService, UserControllerService, UserPasswordControllerService, UserProfileControllerService, UserSearchControllerService, UserSettingsControllerService, UserSocialProfileControllerService, UtilityControllerService, ValidationControllerService, VerificationControllerService, ViolationControllerService, ViolationPenaltyControllerService, WatchlistsControllerService, WebsocketMessageControllerService, WorkflowStateControllerService];
229
+ export const APIS = [ActionRequiredControllerService, ActivityFeedControllerService, AddressControllerService, AlertNotificationControllerService, AppEventsControllerService, AuditLawfirmEventsControllerService, AuditLogControllerService, AuthenticationControllerService, AwsCredentialsControllerService, BlogWebhookControllerService, BranchLinkControllerService, CaptchaControllerService, CaseActionsControllerService, CaseControllerService, CaseCounterOfferControllerService, CaseCreationControllerService, CaseDeclineControllerService, CaseNotesControllerService, CasePaymentControllerService, CaseReferralCodeControllerService, CaseRefundControllerService, CaseResolutionControllerService, CaseStatusControllerService, CaseTransferControllerService, CaseUserControllerService, CertificateControllerService, CitationAuditControllerService, CitationControllerService, CoachingCardsControllerService, ConfigurationControllerService, ConsoleListControllerService, ContactLoopWebhookControllerService, ContactTimelineControllerService, ConversationControllerService, CountyControllerService, CourtControllerService, CrmControllerService, CustomerLeadControllerService, CustomerReviewControllerService, CustomerServiceAgentBookingsControllerService, CustomerServiceAgentControllerService, DashboardControllerService, DirectMailControllerService, DripControllerService, DripWebhooksControllerService, DriverLicenseControllerService, EmailSubscriptionControllerService, EmployeeControllerService, ExternalContentVoteControllerService, ExternalTicketLookupControllerService, FeedbackControllerService, FreshcallerControllerService, FreshdeskTicketControllerService, GetCaseControllerService, HouseholdMateControllerService, HubspotWebhookControllerService, InsuranceCalculatorControllerService, LawfirmCaseDecisionControllerService, LawfirmCasesControllerService, LawfirmControllerService, LawfirmDocumentControllerService, LawfirmFeeCoverageControllerService, LawfirmPaymentModelControllerService, LawfirmRatesControllerService, LawfirmSettingsControllerService, LawfirmStorefrontControllerService, LawfirmSurchargeControllerService, LawfirmTransactionsControllerService, LawyerControllerService, LegalServicesControllerService, LineItemControllerService, ListCasesControllerService, MediaCreationControllerService, MessagesControllerService, NotesControllerService, OcrPredictionControllerService, OnDemandRequestControllerService, OneTimePasswordControllerService, PhoneLeadsControllerService, PushNotificationControllerService, RecurringBillingControllerService, RefLinkControllerService, ReferralCodeControllerService, ReferralControllerService, ReferralSourceControllerService, RefundEligibilityControllerService, RegistrationControllerService, ReportingControllerService, ScheduledTaskControllerService, SingleSignOnControllerService, SnsListenerControllerService, SocialLoginControllerService, StripeCardControllerService, StripeControllerService, StripeSyncControllerService, StripeWebhookControllerService, TicketReviewControllerService, UrlRedirectControllerService, UserAccountControllerService, UserAuditControllerService, UserControllerService, UserPasswordControllerService, UserProfileControllerService, UserSearchControllerService, UserSettingsControllerService, UserSocialProfileControllerService, UtilityControllerService, ValidationControllerService, VerificationControllerService, ViolationControllerService, ViolationPenaltyControllerService, WatchlistsControllerService, WebsocketMessageControllerService, WorkflowStateControllerService];
@@ -0,0 +1,162 @@
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
+ /* tslint:disable:no-unused-variable member-ordering */
13
+
14
+ import { Inject, Injectable, Optional } from '@angular/core';
15
+ import { HttpClient, HttpHeaders, HttpParams,
16
+ HttpResponse, HttpEvent, HttpParameterCodec, HttpContext
17
+ } from '@angular/common/http';
18
+ import { CustomHttpParameterCodec } from '../encoder';
19
+ import { Observable } from 'rxjs';
20
+
21
+ // @ts-ignore
22
+ import { ContactLoopWebhookRequest } from '../model/contactLoopWebhookRequest';
23
+
24
+ // @ts-ignore
25
+ import { BASE_PATH, COLLECTION_FORMATS } from '../variables';
26
+ import { Configuration } from '../configuration';
27
+
28
+
29
+
30
+ @Injectable({
31
+ providedIn: 'root'
32
+ })
33
+ export class ContactLoopWebhookControllerService {
34
+
35
+ protected basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
36
+ public defaultHeaders = new HttpHeaders();
37
+ public configuration = new Configuration();
38
+ public encoder: HttpParameterCodec;
39
+
40
+ constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string|string[], @Optional() configuration: Configuration) {
41
+ if (configuration) {
42
+ this.configuration = configuration;
43
+ }
44
+ if (typeof this.configuration.basePath !== 'string') {
45
+ if (Array.isArray(basePath) && basePath.length > 0) {
46
+ basePath = basePath[0];
47
+ }
48
+
49
+ if (typeof basePath !== 'string') {
50
+ basePath = this.basePath;
51
+ }
52
+ this.configuration.basePath = basePath;
53
+ }
54
+ this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
55
+ }
56
+
57
+
58
+ // @ts-ignore
59
+ private addToHttpParams(httpParams: HttpParams, value: any, key?: string): HttpParams {
60
+ if (typeof value === "object" && value instanceof Date === false) {
61
+ httpParams = this.addToHttpParamsRecursive(httpParams, value);
62
+ } else {
63
+ httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
64
+ }
65
+ return httpParams;
66
+ }
67
+
68
+ private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string): HttpParams {
69
+ if (value == null) {
70
+ return httpParams;
71
+ }
72
+
73
+ if (typeof value === "object") {
74
+ if (Array.isArray(value)) {
75
+ (value as any[]).forEach( elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key));
76
+ } else if (value instanceof Date) {
77
+ if (key != null) {
78
+ httpParams = httpParams.append(key, (value as Date).toISOString().substr(0, 10));
79
+ } else {
80
+ throw Error("key may not be null if value is Date");
81
+ }
82
+ } else {
83
+ Object.keys(value).forEach( k => httpParams = this.addToHttpParamsRecursive(
84
+ httpParams, value[k], key != null ? `${key}.${k}` : k));
85
+ }
86
+ } else if (key != null) {
87
+ httpParams = httpParams.append(key, value);
88
+ } else {
89
+ throw Error("key may not be null if value is not object or array");
90
+ }
91
+ return httpParams;
92
+ }
93
+
94
+ /**
95
+ * handleContactLoopEvent
96
+ * @param request request
97
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
98
+ * @param reportProgress flag to report request and response progress.
99
+ */
100
+ public handleContactLoopEventUsingPOST(request: ContactLoopWebhookRequest, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<string>;
101
+ public handleContactLoopEventUsingPOST(request: ContactLoopWebhookRequest, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<string>>;
102
+ public handleContactLoopEventUsingPOST(request: ContactLoopWebhookRequest, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<string>>;
103
+ public handleContactLoopEventUsingPOST(request: ContactLoopWebhookRequest, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
104
+ if (request === null || request === undefined) {
105
+ throw new Error('Required parameter request was null or undefined when calling handleContactLoopEventUsingPOST.');
106
+ }
107
+
108
+ let localVarHeaders = this.defaultHeaders;
109
+
110
+ let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
111
+ if (localVarHttpHeaderAcceptSelected === undefined) {
112
+ // to determine the Accept header
113
+ const httpHeaderAccepts: string[] = [
114
+ '*/*'
115
+ ];
116
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
117
+ }
118
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
119
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
120
+ }
121
+
122
+ let localVarHttpContext: HttpContext | undefined = options && options.context;
123
+ if (localVarHttpContext === undefined) {
124
+ localVarHttpContext = new HttpContext();
125
+ }
126
+
127
+
128
+ // to determine the Content-Type header
129
+ const consumes: string[] = [
130
+ 'application/json'
131
+ ];
132
+ const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);
133
+ if (httpContentTypeSelected !== undefined) {
134
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
135
+ }
136
+
137
+ let responseType_: 'text' | 'json' | 'blob' = 'json';
138
+ if (localVarHttpHeaderAcceptSelected) {
139
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
140
+ responseType_ = 'text';
141
+ } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
142
+ responseType_ = 'json';
143
+ } else {
144
+ responseType_ = 'blob';
145
+ }
146
+ }
147
+
148
+ let localVarPath = `/api/v1/contact-loop/webhook`;
149
+ return this.httpClient.request<string>('post', `${this.configuration.basePath}${localVarPath}`,
150
+ {
151
+ context: localVarHttpContext,
152
+ body: request,
153
+ responseType: <any>responseType_,
154
+ withCredentials: this.configuration.withCredentials,
155
+ headers: localVarHeaders,
156
+ observe: observe,
157
+ reportProgress: reportProgress
158
+ }
159
+ );
160
+ }
161
+
162
+ }
@@ -100,10 +100,10 @@ export class UserAuditControllerService {
100
100
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
101
101
  * @param reportProgress flag to report request and response progress.
102
102
  */
103
- public getLastLoginUsingGET(userId: number, clients?: 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN', observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetLastLoginResponse>;
104
- public getLastLoginUsingGET(userId: number, clients?: 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN', observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetLastLoginResponse>>;
105
- public getLastLoginUsingGET(userId: number, clients?: 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN', observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetLastLoginResponse>>;
106
- public getLastLoginUsingGET(userId: number, clients?: 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN', observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
103
+ public getLastLoginUsingGET(userId: number, clients?: 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN', observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetLastLoginResponse>;
104
+ public getLastLoginUsingGET(userId: number, clients?: 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN', observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetLastLoginResponse>>;
105
+ public getLastLoginUsingGET(userId: number, clients?: 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN', observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetLastLoginResponse>>;
106
+ public getLastLoginUsingGET(userId: number, clients?: 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN', observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
107
107
  if (userId === null || userId === undefined) {
108
108
  throw new Error('Required parameter userId was null or undefined when calling getLastLoginUsingGET.');
109
109
  }
@@ -33,6 +33,7 @@ import { CitationControllerService } from './api/citationController.service';
33
33
  import { CoachingCardsControllerService } from './api/coachingCardsController.service';
34
34
  import { ConfigurationControllerService } from './api/configurationController.service';
35
35
  import { ConsoleListControllerService } from './api/consoleListController.service';
36
+ import { ContactLoopWebhookControllerService } from './api/contactLoopWebhookController.service';
36
37
  import { ContactTimelineControllerService } from './api/contactTimelineController.service';
37
38
  import { ConversationControllerService } from './api/conversationController.service';
38
39
  import { CountyControllerService } from './api/countyController.service';
@@ -24,7 +24,7 @@ export interface CitationAuditEventModel {
24
24
  userId?: number;
25
25
  }
26
26
  export namespace CitationAuditEventModel {
27
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
27
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
28
28
  export const ClientTypeEnum = {
29
29
  Android: 'ANDROID' as ClientTypeEnum,
30
30
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -33,6 +33,7 @@ export namespace CitationAuditEventModel {
33
33
  Email: 'EMAIL' as ClientTypeEnum,
34
34
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
35
35
  Ios: 'IOS' as ClientTypeEnum,
36
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
36
37
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
37
38
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
38
39
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -54,7 +54,7 @@ export namespace CitationModel {
54
54
  CdlInPersonalVehicle: 'CDL_IN_PERSONAL_VEHICLE' as CdlStatusEnum,
55
55
  NoCdl: 'NO_CDL' as CdlStatusEnum
56
56
  };
57
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
57
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
58
58
  export const ClientTypeEnum = {
59
59
  Android: 'ANDROID' as ClientTypeEnum,
60
60
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -63,6 +63,7 @@ export namespace CitationModel {
63
63
  Email: 'EMAIL' as ClientTypeEnum,
64
64
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
65
65
  Ios: 'IOS' as ClientTypeEnum,
66
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
66
67
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
67
68
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
68
69
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -54,7 +54,7 @@ export namespace CitationModelReq {
54
54
  CdlInPersonalVehicle: 'CDL_IN_PERSONAL_VEHICLE' as CdlStatusEnum,
55
55
  NoCdl: 'NO_CDL' as CdlStatusEnum
56
56
  };
57
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
57
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
58
58
  export const ClientTypeEnum = {
59
59
  Android: 'ANDROID' as ClientTypeEnum,
60
60
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -63,6 +63,7 @@ export namespace CitationModelReq {
63
63
  Email: 'EMAIL' as ClientTypeEnum,
64
64
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
65
65
  Ios: 'IOS' as ClientTypeEnum,
66
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
66
67
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
67
68
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
68
69
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -54,7 +54,7 @@ export namespace CitationModelRes {
54
54
  CdlInPersonalVehicle: 'CDL_IN_PERSONAL_VEHICLE' as CdlStatusEnum,
55
55
  NoCdl: 'NO_CDL' as CdlStatusEnum
56
56
  };
57
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
57
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
58
58
  export const ClientTypeEnum = {
59
59
  Android: 'ANDROID' as ClientTypeEnum,
60
60
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -63,6 +63,7 @@ export namespace CitationModelRes {
63
63
  Email: 'EMAIL' as ClientTypeEnum,
64
64
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
65
65
  Ios: 'IOS' as ClientTypeEnum,
66
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
66
67
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
67
68
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
68
69
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -0,0 +1,27 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+
14
+ export interface ContactLoopWebhookRequest {
15
+ call_duration?: number;
16
+ call_result?: string;
17
+ call_type?: string;
18
+ event_type?: string;
19
+ intent_name?: string;
20
+ is_scheduled?: boolean;
21
+ ivr_keypress?: number;
22
+ lead_phone?: string;
23
+ message?: string;
24
+ timestamp?: string;
25
+ url?: string;
26
+ }
27
+
@@ -75,7 +75,7 @@ export namespace CreateCitationRequest {
75
75
  Wv: 'WV' as CitationStateEnum,
76
76
  Wy: 'WY' as CitationStateEnum
77
77
  };
78
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
78
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
79
79
  export const ClientTypeEnum = {
80
80
  Android: 'ANDROID' as ClientTypeEnum,
81
81
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -84,6 +84,7 @@ export namespace CreateCitationRequest {
84
84
  Email: 'EMAIL' as ClientTypeEnum,
85
85
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
86
86
  Ios: 'IOS' as ClientTypeEnum,
87
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
87
88
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
88
89
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
89
90
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -25,7 +25,7 @@ export interface GhostUser {
25
25
  race?: GhostUser.RaceEnum;
26
26
  }
27
27
  export namespace GhostUser {
28
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
28
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
29
29
  export const ClientTypeEnum = {
30
30
  Android: 'ANDROID' as ClientTypeEnum,
31
31
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -34,6 +34,7 @@ export namespace GhostUser {
34
34
  Email: 'EMAIL' as ClientTypeEnum,
35
35
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
36
36
  Ios: 'IOS' as ClientTypeEnum,
37
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
37
38
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
38
39
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
39
40
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -16,7 +16,7 @@ export interface LastLoginDateModel {
16
16
  loginDateUtc?: string;
17
17
  }
18
18
  export namespace LastLoginDateModel {
19
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
19
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
20
20
  export const ClientTypeEnum = {
21
21
  Android: 'ANDROID' as ClientTypeEnum,
22
22
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -25,6 +25,7 @@ export namespace LastLoginDateModel {
25
25
  Email: 'EMAIL' as ClientTypeEnum,
26
26
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
27
27
  Ios: 'IOS' as ClientTypeEnum,
28
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
28
29
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
29
30
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
30
31
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -24,7 +24,7 @@ export interface LawfirmAuditEventModel {
24
24
  userId?: number;
25
25
  }
26
26
  export namespace LawfirmAuditEventModel {
27
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
27
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
28
28
  export const ClientTypeEnum = {
29
29
  Android: 'ANDROID' as ClientTypeEnum,
30
30
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -33,6 +33,7 @@ export namespace LawfirmAuditEventModel {
33
33
  Email: 'EMAIL' as ClientTypeEnum,
34
34
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
35
35
  Ios: 'IOS' as ClientTypeEnum,
36
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
36
37
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
37
38
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
38
39
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -135,6 +135,7 @@ export * from './coachingCardsModel';
135
135
  export * from './coachingLinks';
136
136
  export * from './commonHeader';
137
137
  export * from './confidenceField';
138
+ export * from './contactLoopWebhookRequest';
138
139
  export * from './contactTimelineResponse';
139
140
  export * from './convertPdfToImageModel';
140
141
  export * from './convertPdfToImageRequest';
@@ -27,7 +27,7 @@ export interface RegisterNewUserRequest {
27
27
  userReferralSourceTypeId?: number;
28
28
  }
29
29
  export namespace RegisterNewUserRequest {
30
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
30
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
31
31
  export const ClientTypeEnum = {
32
32
  Android: 'ANDROID' as ClientTypeEnum,
33
33
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -36,6 +36,7 @@ export namespace RegisterNewUserRequest {
36
36
  Email: 'EMAIL' as ClientTypeEnum,
37
37
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
38
38
  Ios: 'IOS' as ClientTypeEnum,
39
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
39
40
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
40
41
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
41
42
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -30,7 +30,7 @@ export interface RegisteredUserDomain {
30
30
  userRegistrationDateUtc?: string;
31
31
  }
32
32
  export namespace RegisteredUserDomain {
33
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
33
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
34
34
  export const ClientTypeEnum = {
35
35
  Android: 'ANDROID' as ClientTypeEnum,
36
36
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -39,6 +39,7 @@ export namespace RegisteredUserDomain {
39
39
  Email: 'EMAIL' as ClientTypeEnum,
40
40
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
41
41
  Ios: 'IOS' as ClientTypeEnum,
42
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
42
43
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
43
44
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
44
45
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -23,7 +23,7 @@ export interface SetReferralSourceRequest {
23
23
  userReferralSourceTypeId?: number;
24
24
  }
25
25
  export namespace SetReferralSourceRequest {
26
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
26
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
27
27
  export const ClientTypeEnum = {
28
28
  Android: 'ANDROID' as ClientTypeEnum,
29
29
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -32,6 +32,7 @@ export namespace SetReferralSourceRequest {
32
32
  Email: 'EMAIL' as ClientTypeEnum,
33
33
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
34
34
  Ios: 'IOS' as ClientTypeEnum,
35
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
35
36
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
36
37
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
37
38
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -25,7 +25,7 @@ export interface SocialLoginRequest {
25
25
  userReferralSourceTypeId?: number;
26
26
  }
27
27
  export namespace SocialLoginRequest {
28
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
28
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
29
29
  export const ClientTypeEnum = {
30
30
  Android: 'ANDROID' as ClientTypeEnum,
31
31
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -34,6 +34,7 @@ export namespace SocialLoginRequest {
34
34
  Email: 'EMAIL' as ClientTypeEnum,
35
35
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
36
36
  Ios: 'IOS' as ClientTypeEnum,
37
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
37
38
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
38
39
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
39
40
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -27,7 +27,7 @@ export interface UserAuditEventModel {
27
27
  userId?: number;
28
28
  }
29
29
  export namespace UserAuditEventModel {
30
- export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
30
+ export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
31
31
  export const ClientTypeEnum = {
32
32
  Android: 'ANDROID' as ClientTypeEnum,
33
33
  DesktopWebapp: 'DESKTOP_WEBAPP' as ClientTypeEnum,
@@ -36,6 +36,7 @@ export namespace UserAuditEventModel {
36
36
  Email: 'EMAIL' as ClientTypeEnum,
37
37
  FreshDesk: 'FRESH_DESK' as ClientTypeEnum,
38
38
  Ios: 'IOS' as ClientTypeEnum,
39
+ Localhost: 'LOCALHOST' as ClientTypeEnum,
39
40
  MobileWebapp: 'MOBILE_WEBAPP' as ClientTypeEnum,
40
41
  OtrAdminConsole: 'OTR_ADMIN_CONSOLE' as ClientTypeEnum,
41
42
  OtrAdminConsoleDevo: 'OTR_ADMIN_CONSOLE_DEVO' as ClientTypeEnum,
@@ -6316,6 +6316,43 @@ angular.module('otrBackendService', [])
6316
6316
 
6317
6317
  return deferred.promise;
6318
6318
  };
6319
+ /**
6320
+ * handleContactLoopEvent
6321
+ * @method
6322
+ * @name OtrService#handleContactLoopEventUsingPOST
6323
+ * @param {object} parameters - method options and parameters
6324
+ * @param {} parameters.request - request
6325
+ */
6326
+ OtrService.prototype.handleContactLoopEventUsingPOST = function(parameters) {
6327
+ if (parameters === undefined) {
6328
+ parameters = {};
6329
+ }
6330
+ var deferred = $q.defer();
6331
+ var domain = this.domain,
6332
+ path = '/api/v1/contact-loop/webhook';
6333
+ var body = {},
6334
+ queryParameters = {},
6335
+ headers = {},
6336
+ form = {};
6337
+
6338
+ headers['Accept'] = ['*/*'];
6339
+ headers['Content-Type'] = ['application/json'];
6340
+
6341
+ if (parameters['request'] !== undefined) {
6342
+ body = parameters['request'];
6343
+ }
6344
+
6345
+ if (parameters['request'] === undefined) {
6346
+ deferred.reject(new Error('Missing required parameter: request'));
6347
+ return deferred.promise;
6348
+ }
6349
+
6350
+ queryParameters = mergeQueryParams(parameters, queryParameters);
6351
+
6352
+ this.request('POST', domain + path, parameters, body, headers, queryParameters, form, deferred);
6353
+
6354
+ return deferred.promise;
6355
+ };
6319
6356
  /**
6320
6357
  * getCounties
6321
6358
  * @method