@otr-app/shared-backend-generated-client 2.3.135 → 2.3.137

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 (29) hide show
  1. package/dist/angular/.openapi-generator/FILES +5 -0
  2. package/dist/angular/api/api.ts +3 -1
  3. package/dist/angular/api/externalContentVoteController.service.ts +221 -0
  4. package/dist/angular/api.module.ts +1 -0
  5. package/dist/angular/model/externalContentVoteModel.ts +19 -0
  6. package/dist/angular/model/externalUserContentVoteModel.ts +30 -0
  7. package/dist/angular/model/getCaseUserModel.ts +1 -0
  8. package/dist/angular/model/getExternalContentUserVotesResponse.ts +18 -0
  9. package/dist/angular/model/models.ts +4 -0
  10. package/dist/angular/model/saveExternalContentVoteRequest.ts +31 -0
  11. package/dist/otrBackendService.js +71 -0
  12. package/dist/otrBackendService.min.js +4 -4
  13. package/dist/typescript/api/ExternalContentVoteControllerApi.d.ts +33 -0
  14. package/dist/typescript/api/ExternalContentVoteControllerApi.js +79 -0
  15. package/dist/typescript/api/api.d.ts +3 -1
  16. package/dist/typescript/api/api.js +3 -1
  17. package/dist/typescript/api.module.js +1 -0
  18. package/dist/typescript/model/ExternalContentVoteModel.d.ts +16 -0
  19. package/dist/typescript/model/ExternalContentVoteModel.js +13 -0
  20. package/dist/typescript/model/ExternalUserContentVoteModel.d.ts +25 -0
  21. package/dist/typescript/model/ExternalUserContentVoteModel.js +24 -0
  22. package/dist/typescript/model/GetCaseUserModel.d.ts +1 -0
  23. package/dist/typescript/model/GetExternalContentUserVotesResponse.d.ts +15 -0
  24. package/dist/typescript/model/GetExternalContentUserVotesResponse.js +13 -0
  25. package/dist/typescript/model/SaveExternalContentVoteRequest.d.ts +26 -0
  26. package/dist/typescript/model/SaveExternalContentVoteRequest.js +24 -0
  27. package/dist/typescript/model/models.d.ts +4 -0
  28. package/dist/typescript/model/models.js +4 -0
  29. package/package.json +1 -1
@@ -0,0 +1,33 @@
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 ExternalContentVoteControllerApi {
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 getExternalContentUserVotes
24
+ * @param userId userId
25
+ */
26
+ getExternalContentUserVotesUsingGET(userId: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetExternalContentUserVotesResponse>;
27
+ /**
28
+ *
29
+ * @summary saveExternalContentVote
30
+ * @param request request
31
+ */
32
+ saveExternalContentVoteUsingPOST(request: models.SaveExternalContentVoteRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
33
+ }
@@ -0,0 +1,79 @@
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.ExternalContentVoteControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var ExternalContentVoteControllerApi = /** @class */ (function () {
17
+ function ExternalContentVoteControllerApi($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 getExternalContentUserVotes
29
+ * @param userId userId
30
+ */
31
+ ExternalContentVoteControllerApi.prototype.getExternalContentUserVotesUsingGET = function (userId, extraHttpRequestParams) {
32
+ var localVarPath = this.basePath + '/api/v1/external-content-votes/{userId}'
33
+ .replace('{' + 'userId' + '}', encodeURIComponent(String(userId)));
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 getExternalContentUserVotesUsingGET.');
39
+ }
40
+ var httpRequestParams = {
41
+ method: 'GET',
42
+ url: localVarPath,
43
+ params: queryParameters,
44
+ headers: headerParams
45
+ };
46
+ if (extraHttpRequestParams) {
47
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
48
+ }
49
+ return this.$http(httpRequestParams);
50
+ };
51
+ /**
52
+ *
53
+ * @summary saveExternalContentVote
54
+ * @param request request
55
+ */
56
+ ExternalContentVoteControllerApi.prototype.saveExternalContentVoteUsingPOST = function (request, extraHttpRequestParams) {
57
+ var localVarPath = this.basePath + '/api/v1/external-content-votes';
58
+ var queryParameters = {};
59
+ var headerParams = Object.assign({}, this.defaultHeaders);
60
+ // verify required parameter 'request' is not null or undefined
61
+ if (request === null || request === undefined) {
62
+ throw new Error('Required parameter request was null or undefined when calling saveExternalContentVoteUsingPOST.');
63
+ }
64
+ var httpRequestParams = {
65
+ method: 'POST',
66
+ url: localVarPath,
67
+ data: request,
68
+ params: queryParameters,
69
+ headers: headerParams
70
+ };
71
+ if (extraHttpRequestParams) {
72
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
73
+ }
74
+ return this.$http(httpRequestParams);
75
+ };
76
+ ExternalContentVoteControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
77
+ return ExternalContentVoteControllerApi;
78
+ }());
79
+ exports.ExternalContentVoteControllerApi = ExternalContentVoteControllerApi;
@@ -80,6 +80,8 @@ export * from './DripWebhooksControllerApi';
80
80
  import { DripWebhooksControllerApi } from './DripWebhooksControllerApi';
81
81
  export * from './EmailSubscriptionControllerApi';
82
82
  import { EmailSubscriptionControllerApi } from './EmailSubscriptionControllerApi';
83
+ export * from './ExternalContentVoteControllerApi';
84
+ import { ExternalContentVoteControllerApi } from './ExternalContentVoteControllerApi';
83
85
  export * from './ExternalTicketLookupControllerApi';
84
86
  import { ExternalTicketLookupControllerApi } from './ExternalTicketLookupControllerApi';
85
87
  export * from './FeedbackControllerApi';
@@ -206,4 +208,4 @@ export * from './WebsocketMessageControllerApi';
206
208
  import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
207
209
  export * from './WorkflowStateControllerApi';
208
210
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
209
- export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCreationControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof CustomerServiceAgentBookingsControllerApi | typeof CustomerServiceAgentControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof EmailSubscriptionControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof InsuranceCalculatorControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
211
+ export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCreationControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof CustomerServiceAgentBookingsControllerApi | typeof CustomerServiceAgentControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof EmailSubscriptionControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof InsuranceCalculatorControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
@@ -93,6 +93,8 @@ __exportStar(require("./DripWebhooksControllerApi"), exports);
93
93
  var DripWebhooksControllerApi_1 = require("./DripWebhooksControllerApi");
94
94
  __exportStar(require("./EmailSubscriptionControllerApi"), exports);
95
95
  var EmailSubscriptionControllerApi_1 = require("./EmailSubscriptionControllerApi");
96
+ __exportStar(require("./ExternalContentVoteControllerApi"), exports);
97
+ var ExternalContentVoteControllerApi_1 = require("./ExternalContentVoteControllerApi");
96
98
  __exportStar(require("./ExternalTicketLookupControllerApi"), exports);
97
99
  var ExternalTicketLookupControllerApi_1 = require("./ExternalTicketLookupControllerApi");
98
100
  __exportStar(require("./FeedbackControllerApi"), exports);
@@ -219,4 +221,4 @@ __exportStar(require("./WebsocketMessageControllerApi"), exports);
219
221
  var WebsocketMessageControllerApi_1 = require("./WebsocketMessageControllerApi");
220
222
  __exportStar(require("./WorkflowStateControllerApi"), exports);
221
223
  var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
222
- exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuditLogControllerApi_1.AuditLogControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseResolutionControllerApi_1.CaseResolutionControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CaseUserControllerApi_1.CaseUserControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationAuditControllerApi_1.CitationAuditControllerApi, CitationControllerApi_1.CitationControllerApi, ConfigurationControllerApi_1.ConfigurationControllerApi, ConsoleListControllerApi_1.ConsoleListControllerApi, ContactTimelineControllerApi_1.ContactTimelineControllerApi, ConversationControllerApi_1.ConversationControllerApi, CountyControllerApi_1.CountyControllerApi, CourtControllerApi_1.CourtControllerApi, CrmControllerApi_1.CrmControllerApi, CustomerLeadControllerApi_1.CustomerLeadControllerApi, CustomerReviewControllerApi_1.CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi_1.CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi_1.CustomerServiceAgentControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
224
+ exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuditLogControllerApi_1.AuditLogControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseResolutionControllerApi_1.CaseResolutionControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CaseUserControllerApi_1.CaseUserControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationAuditControllerApi_1.CitationAuditControllerApi, CitationControllerApi_1.CitationControllerApi, ConfigurationControllerApi_1.ConfigurationControllerApi, ConsoleListControllerApi_1.ConsoleListControllerApi, ContactTimelineControllerApi_1.ContactTimelineControllerApi, ConversationControllerApi_1.ConversationControllerApi, CountyControllerApi_1.CountyControllerApi, CourtControllerApi_1.CourtControllerApi, CrmControllerApi_1.CrmControllerApi, CustomerLeadControllerApi_1.CustomerLeadControllerApi, CustomerReviewControllerApi_1.CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi_1.CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi_1.CustomerServiceAgentControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, ExternalContentVoteControllerApi_1.ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
@@ -44,6 +44,7 @@ var apiModule = angular.module('api', [])
44
44
  .service('DripControllerApi', api.DripControllerApi)
45
45
  .service('DripWebhooksControllerApi', api.DripWebhooksControllerApi)
46
46
  .service('EmailSubscriptionControllerApi', api.EmailSubscriptionControllerApi)
47
+ .service('ExternalContentVoteControllerApi', api.ExternalContentVoteControllerApi)
47
48
  .service('ExternalTicketLookupControllerApi', api.ExternalTicketLookupControllerApi)
48
49
  .service('FeedbackControllerApi', api.FeedbackControllerApi)
49
50
  .service('FreshcallerControllerApi', api.FreshcallerControllerApi)
@@ -0,0 +1,16 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import * as models from './models';
13
+ export interface ExternalContentVoteModel {
14
+ "externalContentId"?: string;
15
+ "userContentVoteModelList"?: Array<models.ExternalUserContentVoteModel>;
16
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
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 ExternalUserContentVoteModel {
13
+ "externalContentUserVoteId"?: number;
14
+ "userId"?: number;
15
+ "voteType"?: ExternalUserContentVoteModel.VoteTypeEnum;
16
+ "voteValue"?: number;
17
+ }
18
+ export declare namespace ExternalUserContentVoteModel {
19
+ enum VoteTypeEnum {
20
+ DOWNVOTE,
21
+ HELPFUL,
22
+ UNHELPFUL,
23
+ UPVOTE
24
+ }
25
+ }
@@ -0,0 +1,24 @@
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.ExternalUserContentVoteModel = void 0;
15
+ var ExternalUserContentVoteModel;
16
+ (function (ExternalUserContentVoteModel) {
17
+ var VoteTypeEnum;
18
+ (function (VoteTypeEnum) {
19
+ VoteTypeEnum[VoteTypeEnum["DOWNVOTE"] = 'DOWNVOTE'] = "DOWNVOTE";
20
+ VoteTypeEnum[VoteTypeEnum["HELPFUL"] = 'HELPFUL'] = "HELPFUL";
21
+ VoteTypeEnum[VoteTypeEnum["UNHELPFUL"] = 'UNHELPFUL'] = "UNHELPFUL";
22
+ VoteTypeEnum[VoteTypeEnum["UPVOTE"] = 'UPVOTE'] = "UPVOTE";
23
+ })(VoteTypeEnum = ExternalUserContentVoteModel.VoteTypeEnum || (ExternalUserContentVoteModel.VoteTypeEnum = {}));
24
+ })(ExternalUserContentVoteModel = exports.ExternalUserContentVoteModel || (exports.ExternalUserContentVoteModel = {}));
@@ -27,6 +27,7 @@ export interface GetCaseUserModel {
27
27
  "licenseState"?: string;
28
28
  "permissionAttributes"?: models.CaseUserPermissionAttributes;
29
29
  "relationshipToClient"?: GetCaseUserModel.RelationshipToClientEnum;
30
+ "signedProfilePictureUrl"?: string;
30
31
  "userId"?: number;
31
32
  }
32
33
  export declare namespace GetCaseUserModel {
@@ -0,0 +1,15 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import * as models from './models';
13
+ export interface GetExternalContentUserVotesResponse {
14
+ "userContentVotes"?: Array<models.ExternalContentVoteModel>;
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 });
@@ -0,0 +1,26 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface SaveExternalContentVoteRequest {
13
+ "documentType"?: string;
14
+ "externalDocumentId"?: number;
15
+ "userId"?: number;
16
+ "voteType"?: SaveExternalContentVoteRequest.VoteTypeEnum;
17
+ "voteValue"?: number;
18
+ }
19
+ export declare namespace SaveExternalContentVoteRequest {
20
+ enum VoteTypeEnum {
21
+ DOWNVOTE,
22
+ HELPFUL,
23
+ UNHELPFUL,
24
+ UPVOTE
25
+ }
26
+ }
@@ -0,0 +1,24 @@
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.SaveExternalContentVoteRequest = void 0;
15
+ var SaveExternalContentVoteRequest;
16
+ (function (SaveExternalContentVoteRequest) {
17
+ var VoteTypeEnum;
18
+ (function (VoteTypeEnum) {
19
+ VoteTypeEnum[VoteTypeEnum["DOWNVOTE"] = 'DOWNVOTE'] = "DOWNVOTE";
20
+ VoteTypeEnum[VoteTypeEnum["HELPFUL"] = 'HELPFUL'] = "HELPFUL";
21
+ VoteTypeEnum[VoteTypeEnum["UNHELPFUL"] = 'UNHELPFUL'] = "UNHELPFUL";
22
+ VoteTypeEnum[VoteTypeEnum["UPVOTE"] = 'UPVOTE'] = "UPVOTE";
23
+ })(VoteTypeEnum = SaveExternalContentVoteRequest.VoteTypeEnum || (SaveExternalContentVoteRequest.VoteTypeEnum = {}));
24
+ })(SaveExternalContentVoteRequest = exports.SaveExternalContentVoteRequest || (exports.SaveExternalContentVoteRequest = {}));
@@ -192,7 +192,9 @@ export * from './EnableViolationsForLawfirmRequest';
192
192
  export * from './EnableViolationsForLawfirmResponse';
193
193
  export * from './EstimateInsuranceSavingsRequest';
194
194
  export * from './EstimateInsuranceSavingsResponse';
195
+ export * from './ExternalContentVoteModel';
195
196
  export * from './ExternalTicketCourt';
197
+ export * from './ExternalUserContentVoteModel';
196
198
  export * from './FeedbackAttachmentModel';
197
199
  export * from './FeedbackDomain';
198
200
  export * from './FinancialTransaction';
@@ -270,6 +272,7 @@ export * from './GetDeclinedCasesRequest';
270
272
  export * from './GetDeclinedCasesResponse';
271
273
  export * from './GetDocumentsRequest';
272
274
  export * from './GetEmailTemplateResponse';
275
+ export * from './GetExternalContentUserVotesResponse';
273
276
  export * from './GetExternalTicketInputParamsResponse';
274
277
  export * from './GetHouseHoldMateModel';
275
278
  export * from './GetHouseholdMatesResponse';
@@ -526,6 +529,7 @@ export * from './SaveAgentBookingRequest';
526
529
  export * from './SaveAgentBookingResponse';
527
530
  export * from './SaveCaseNotesRequest';
528
531
  export * from './SaveCaseUserRequest';
532
+ export * from './SaveExternalContentVoteRequest';
529
533
  export * from './SaveItemToWatchlistRequest';
530
534
  export * from './SaveLawfirmSurchargeModel';
531
535
  export * from './SaveLawfirmSurchargesRequest';
@@ -204,7 +204,9 @@ __exportStar(require("./EnableViolationsForLawfirmRequest"), exports);
204
204
  __exportStar(require("./EnableViolationsForLawfirmResponse"), exports);
205
205
  __exportStar(require("./EstimateInsuranceSavingsRequest"), exports);
206
206
  __exportStar(require("./EstimateInsuranceSavingsResponse"), exports);
207
+ __exportStar(require("./ExternalContentVoteModel"), exports);
207
208
  __exportStar(require("./ExternalTicketCourt"), exports);
209
+ __exportStar(require("./ExternalUserContentVoteModel"), exports);
208
210
  __exportStar(require("./FeedbackAttachmentModel"), exports);
209
211
  __exportStar(require("./FeedbackDomain"), exports);
210
212
  __exportStar(require("./FinancialTransaction"), exports);
@@ -282,6 +284,7 @@ __exportStar(require("./GetDeclinedCasesRequest"), exports);
282
284
  __exportStar(require("./GetDeclinedCasesResponse"), exports);
283
285
  __exportStar(require("./GetDocumentsRequest"), exports);
284
286
  __exportStar(require("./GetEmailTemplateResponse"), exports);
287
+ __exportStar(require("./GetExternalContentUserVotesResponse"), exports);
285
288
  __exportStar(require("./GetExternalTicketInputParamsResponse"), exports);
286
289
  __exportStar(require("./GetHouseHoldMateModel"), exports);
287
290
  __exportStar(require("./GetHouseholdMatesResponse"), exports);
@@ -538,6 +541,7 @@ __exportStar(require("./SaveAgentBookingRequest"), exports);
538
541
  __exportStar(require("./SaveAgentBookingResponse"), exports);
539
542
  __exportStar(require("./SaveCaseNotesRequest"), exports);
540
543
  __exportStar(require("./SaveCaseUserRequest"), exports);
544
+ __exportStar(require("./SaveExternalContentVoteRequest"), exports);
541
545
  __exportStar(require("./SaveItemToWatchlistRequest"), exports);
542
546
  __exportStar(require("./SaveLawfirmSurchargeModel"), exports);
543
547
  __exportStar(require("./SaveLawfirmSurchargesRequest"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.135",
3
+ "version": "2.3.137",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"