@otr-app/shared-backend-generated-client 2.3.171 → 2.3.173

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 (33) hide show
  1. package/dist/angular/.openapi-generator/FILES +7 -0
  2. package/dist/angular/api/api.ts +3 -1
  3. package/dist/angular/api/driverLicenseController.service.ts +312 -0
  4. package/dist/angular/api.module.ts +1 -0
  5. package/dist/angular/model/driverLicenseModel.ts +40 -0
  6. package/dist/angular/model/getDriverLicensesResponse.ts +18 -0
  7. package/dist/angular/model/models.ts +6 -0
  8. package/dist/angular/model/saveDriverLicensePictureRequest.ts +19 -0
  9. package/dist/angular/model/saveDriverLicensePictureResponse.ts +18 -0
  10. package/dist/angular/model/saveDriverLicenseRequest.ts +31 -0
  11. package/dist/angular/model/userAssetModel.ts +21 -0
  12. package/dist/otrBackendService.js +129 -0
  13. package/dist/otrBackendService.min.js +2 -2
  14. package/dist/typescript/api/DriverLicenseControllerApi.d.ts +42 -0
  15. package/dist/typescript/api/DriverLicenseControllerApi.js +120 -0
  16. package/dist/typescript/api/api.d.ts +3 -1
  17. package/dist/typescript/api/api.js +3 -1
  18. package/dist/typescript/api.module.js +1 -0
  19. package/dist/typescript/model/DriverLicenseModel.d.ts +36 -0
  20. package/dist/typescript/model/DriverLicenseModel.js +13 -0
  21. package/dist/typescript/model/GetDriverLicensesResponse.d.ts +15 -0
  22. package/dist/typescript/model/GetDriverLicensesResponse.js +13 -0
  23. package/dist/typescript/model/SaveDriverLicensePictureRequest.d.ts +16 -0
  24. package/dist/typescript/model/SaveDriverLicensePictureRequest.js +13 -0
  25. package/dist/typescript/model/SaveDriverLicensePictureResponse.d.ts +15 -0
  26. package/dist/typescript/model/SaveDriverLicensePictureResponse.js +13 -0
  27. package/dist/typescript/model/SaveDriverLicenseRequest.d.ts +28 -0
  28. package/dist/typescript/model/SaveDriverLicenseRequest.js +13 -0
  29. package/dist/typescript/model/UserAssetModel.d.ts +18 -0
  30. package/dist/typescript/model/UserAssetModel.js +13 -0
  31. package/dist/typescript/model/models.d.ts +6 -0
  32. package/dist/typescript/model/models.js +6 -0
  33. package/package.json +1 -1
@@ -0,0 +1,120 @@
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.DriverLicenseControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var DriverLicenseControllerApi = /** @class */ (function () {
17
+ function DriverLicenseControllerApi($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 getDriverLicenses
29
+ * @param userId userId
30
+ * @param getDeleted getDeleted
31
+ */
32
+ DriverLicenseControllerApi.prototype.getDriverLicensesUsingGET = function (userId, getDeleted, extraHttpRequestParams) {
33
+ var localVarPath = this.basePath + '/api/v1/users/{userId}/driver-license'
34
+ .replace('{' + 'userId' + '}', encodeURIComponent(String(userId)));
35
+ var queryParameters = {};
36
+ var headerParams = Object.assign({}, this.defaultHeaders);
37
+ // verify required parameter 'userId' is not null or undefined
38
+ if (userId === null || userId === undefined) {
39
+ throw new Error('Required parameter userId was null or undefined when calling getDriverLicensesUsingGET.');
40
+ }
41
+ if (getDeleted !== undefined) {
42
+ queryParameters['getDeleted'] = getDeleted;
43
+ }
44
+ var httpRequestParams = {
45
+ method: 'GET',
46
+ url: localVarPath,
47
+ params: queryParameters,
48
+ headers: headerParams
49
+ };
50
+ if (extraHttpRequestParams) {
51
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
52
+ }
53
+ return this.$http(httpRequestParams);
54
+ };
55
+ /**
56
+ *
57
+ * @summary saveDriverLicensePicture
58
+ * @param userId userId
59
+ * @param request request
60
+ */
61
+ DriverLicenseControllerApi.prototype.saveDriverLicensePictureUsingPOST = function (userId, request, extraHttpRequestParams) {
62
+ var localVarPath = this.basePath + '/api/v1/users/{userId}/driver-license/picture'
63
+ .replace('{' + 'userId' + '}', encodeURIComponent(String(userId)));
64
+ var queryParameters = {};
65
+ var headerParams = Object.assign({}, this.defaultHeaders);
66
+ // verify required parameter 'userId' is not null or undefined
67
+ if (userId === null || userId === undefined) {
68
+ throw new Error('Required parameter userId was null or undefined when calling saveDriverLicensePictureUsingPOST.');
69
+ }
70
+ // verify required parameter 'request' is not null or undefined
71
+ if (request === null || request === undefined) {
72
+ throw new Error('Required parameter request was null or undefined when calling saveDriverLicensePictureUsingPOST.');
73
+ }
74
+ var httpRequestParams = {
75
+ method: 'POST',
76
+ url: localVarPath,
77
+ data: request,
78
+ params: queryParameters,
79
+ headers: headerParams
80
+ };
81
+ if (extraHttpRequestParams) {
82
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
83
+ }
84
+ return this.$http(httpRequestParams);
85
+ };
86
+ /**
87
+ *
88
+ * @summary saveDriverLicense
89
+ * @param userId userId
90
+ * @param request request
91
+ */
92
+ DriverLicenseControllerApi.prototype.saveDriverLicenseUsingPOST = function (userId, request, extraHttpRequestParams) {
93
+ var localVarPath = this.basePath + '/api/v1/users/{userId}/driver-license'
94
+ .replace('{' + 'userId' + '}', encodeURIComponent(String(userId)));
95
+ var queryParameters = {};
96
+ var headerParams = Object.assign({}, this.defaultHeaders);
97
+ // verify required parameter 'userId' is not null or undefined
98
+ if (userId === null || userId === undefined) {
99
+ throw new Error('Required parameter userId was null or undefined when calling saveDriverLicenseUsingPOST.');
100
+ }
101
+ // verify required parameter 'request' is not null or undefined
102
+ if (request === null || request === undefined) {
103
+ throw new Error('Required parameter request was null or undefined when calling saveDriverLicenseUsingPOST.');
104
+ }
105
+ var httpRequestParams = {
106
+ method: 'POST',
107
+ url: localVarPath,
108
+ data: request,
109
+ params: queryParameters,
110
+ headers: headerParams
111
+ };
112
+ if (extraHttpRequestParams) {
113
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
114
+ }
115
+ return this.$http(httpRequestParams);
116
+ };
117
+ DriverLicenseControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
118
+ return DriverLicenseControllerApi;
119
+ }());
120
+ exports.DriverLicenseControllerApi = DriverLicenseControllerApi;
@@ -86,6 +86,8 @@ export * from './DripControllerApi';
86
86
  import { DripControllerApi } from './DripControllerApi';
87
87
  export * from './DripWebhooksControllerApi';
88
88
  import { DripWebhooksControllerApi } from './DripWebhooksControllerApi';
89
+ export * from './DriverLicenseControllerApi';
90
+ import { DriverLicenseControllerApi } from './DriverLicenseControllerApi';
89
91
  export * from './EmailSubscriptionControllerApi';
90
92
  import { EmailSubscriptionControllerApi } from './EmailSubscriptionControllerApi';
91
93
  export * from './ExternalContentVoteControllerApi';
@@ -218,4 +220,4 @@ export * from './WebsocketMessageControllerApi';
218
220
  import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
219
221
  export * from './WorkflowStateControllerApi';
220
222
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
221
- 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 ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof CustomerServiceAgentBookingsControllerApi | typeof CustomerServiceAgentControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof EmailSubscriptionControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
223
+ 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 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 ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
@@ -99,6 +99,8 @@ __exportStar(require("./DripControllerApi"), exports);
99
99
  var DripControllerApi_1 = require("./DripControllerApi");
100
100
  __exportStar(require("./DripWebhooksControllerApi"), exports);
101
101
  var DripWebhooksControllerApi_1 = require("./DripWebhooksControllerApi");
102
+ __exportStar(require("./DriverLicenseControllerApi"), exports);
103
+ var DriverLicenseControllerApi_1 = require("./DriverLicenseControllerApi");
102
104
  __exportStar(require("./EmailSubscriptionControllerApi"), exports);
103
105
  var EmailSubscriptionControllerApi_1 = require("./EmailSubscriptionControllerApi");
104
106
  __exportStar(require("./ExternalContentVoteControllerApi"), exports);
@@ -231,4 +233,4 @@ __exportStar(require("./WebsocketMessageControllerApi"), exports);
231
233
  var WebsocketMessageControllerApi_1 = require("./WebsocketMessageControllerApi");
232
234
  __exportStar(require("./WorkflowStateControllerApi"), exports);
233
235
  var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
234
- 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, ContactTimelineControllerApi_1.ContactTimelineControllerApi, ConversationControllerApi_1.ConversationControllerApi, CountyControllerApi_1.CountyControllerApi, CourtControllerApi_1.CourtControllerApi, CrmControllerApi_1.CrmControllerApi, CustomerLeadControllerApi_1.CustomerLeadControllerApi, CustomerReviewControllerApi_1.CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi_1.CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi_1.CustomerServiceAgentControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, ExternalContentVoteControllerApi_1.ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, HubspotWebhookControllerApi_1.HubspotWebhookControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
236
+ 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, 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, ExternalContentVoteControllerApi_1.ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, HubspotWebhookControllerApi_1.HubspotWebhookControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
@@ -47,6 +47,7 @@ var apiModule = angular.module('api', [])
47
47
  .service('DirectMailControllerApi', api.DirectMailControllerApi)
48
48
  .service('DripControllerApi', api.DripControllerApi)
49
49
  .service('DripWebhooksControllerApi', api.DripWebhooksControllerApi)
50
+ .service('DriverLicenseControllerApi', api.DriverLicenseControllerApi)
50
51
  .service('EmailSubscriptionControllerApi', api.EmailSubscriptionControllerApi)
51
52
  .service('ExternalContentVoteControllerApi', api.ExternalContentVoteControllerApi)
52
53
  .service('ExternalTicketLookupControllerApi', api.ExternalTicketLookupControllerApi)
@@ -0,0 +1,36 @@
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 DriverLicenseModel {
14
+ "address"?: models.AddressDomain;
15
+ "deleted"?: boolean;
16
+ "dob"?: string;
17
+ "documentDiscriminatorId"?: string;
18
+ "driverLicenseBackAsset"?: models.UserAssetModel;
19
+ "driverLicenseFrontAsset"?: models.UserAssetModel;
20
+ "driverLicenseId"?: number;
21
+ "driverLicenseNumber"?: string;
22
+ "expirationDate"?: string;
23
+ "eyeColor"?: string;
24
+ "firstName"?: string;
25
+ "height"?: string;
26
+ "isOrganDonor"?: boolean;
27
+ "issueDate"?: string;
28
+ "lastName"?: string;
29
+ "licenseClass"?: string;
30
+ "licenseClassEndorsements"?: string;
31
+ "licenseRestrictions"?: string;
32
+ "sex"?: string;
33
+ "stateName"?: string;
34
+ "userId"?: number;
35
+ "weight"?: string;
36
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import * as models from './models';
13
+ export interface GetDriverLicensesResponse {
14
+ "driverLicenses"?: Array<models.DriverLicenseModel>;
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,16 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface SaveDriverLicensePictureRequest {
13
+ "base64ImageData"?: string;
14
+ "imageContentType"?: string;
15
+ "isBackOfLicense"?: boolean;
16
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import * as models from './models';
13
+ export interface SaveDriverLicensePictureResponse {
14
+ "userAssetModel"?: models.DriverLicenseModel;
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,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
+ export interface SaveDriverLicenseRequest {
13
+ "address"?: string;
14
+ "dob"?: string;
15
+ "driverLicenseBackUserAssetId"?: number;
16
+ "driverLicenseFrontUserAssetId"?: number;
17
+ "driverLicenseId"?: number;
18
+ "driverLicenseNumber"?: string;
19
+ "expirationDate"?: string;
20
+ "firstName"?: string;
21
+ "isDeleted"?: boolean;
22
+ "issueDate"?: string;
23
+ "lastName"?: string;
24
+ "licenseClass"?: string;
25
+ "licenseClassEndorsements"?: string;
26
+ "licenseRestrictions"?: string;
27
+ "stateName"?: string;
28
+ }
@@ -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,18 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface UserAssetModel {
13
+ "assetSizeInBytes"?: number;
14
+ "assetType"?: string;
15
+ "assetUrl"?: string;
16
+ "signedAssetUrl"?: string;
17
+ "userAssetId"?: number;
18
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -202,6 +202,7 @@ export * from './DocumentDecisionRequest';
202
202
  export * from './DripRemoveRequest';
203
203
  export * from './DripWebhookData';
204
204
  export * from './DripWebhookEvent';
205
+ export * from './DriverLicenseModel';
205
206
  export * from './Duration';
206
207
  export * from './EditConversationMessageRequest';
207
208
  export * from './EnableViolationModel';
@@ -293,6 +294,7 @@ export * from './GetCustomerServiceAgentsResponse';
293
294
  export * from './GetDeclinedCasesRequest';
294
295
  export * from './GetDeclinedCasesResponse';
295
296
  export * from './GetDocumentsRequest';
297
+ export * from './GetDriverLicensesResponse';
296
298
  export * from './GetEmailTemplateResponse';
297
299
  export * from './GetExternalContentUserVotesResponse';
298
300
  export * from './GetExternalTicketInputParamsResponse';
@@ -561,6 +563,9 @@ export * from './SaveCaseNotesRequest';
561
563
  export * from './SaveCaseUserRequest';
562
564
  export * from './SaveCoachingCardRequest';
563
565
  export * from './SaveCoachingCardUserRequest';
566
+ export * from './SaveDriverLicensePictureRequest';
567
+ export * from './SaveDriverLicensePictureResponse';
568
+ export * from './SaveDriverLicenseRequest';
564
569
  export * from './SaveExternalContentVoteRequest';
565
570
  export * from './SaveItemToWatchlistRequest';
566
571
  export * from './SaveLawfirmSurchargeModel';
@@ -696,6 +701,7 @@ export * from './UpdateViolationRequest';
696
701
  export * from './UpsertAddressRequest';
697
702
  export * from './User';
698
703
  export * from './UserAccountModel';
704
+ export * from './UserAssetModel';
699
705
  export * from './UserAuditEventModel';
700
706
  export * from './UserBookingsDomain';
701
707
  export * from './UserDetails';
@@ -214,6 +214,7 @@ __exportStar(require("./DocumentDecisionRequest"), exports);
214
214
  __exportStar(require("./DripRemoveRequest"), exports);
215
215
  __exportStar(require("./DripWebhookData"), exports);
216
216
  __exportStar(require("./DripWebhookEvent"), exports);
217
+ __exportStar(require("./DriverLicenseModel"), exports);
217
218
  __exportStar(require("./Duration"), exports);
218
219
  __exportStar(require("./EditConversationMessageRequest"), exports);
219
220
  __exportStar(require("./EnableViolationModel"), exports);
@@ -305,6 +306,7 @@ __exportStar(require("./GetCustomerServiceAgentsResponse"), exports);
305
306
  __exportStar(require("./GetDeclinedCasesRequest"), exports);
306
307
  __exportStar(require("./GetDeclinedCasesResponse"), exports);
307
308
  __exportStar(require("./GetDocumentsRequest"), exports);
309
+ __exportStar(require("./GetDriverLicensesResponse"), exports);
308
310
  __exportStar(require("./GetEmailTemplateResponse"), exports);
309
311
  __exportStar(require("./GetExternalContentUserVotesResponse"), exports);
310
312
  __exportStar(require("./GetExternalTicketInputParamsResponse"), exports);
@@ -573,6 +575,9 @@ __exportStar(require("./SaveCaseNotesRequest"), exports);
573
575
  __exportStar(require("./SaveCaseUserRequest"), exports);
574
576
  __exportStar(require("./SaveCoachingCardRequest"), exports);
575
577
  __exportStar(require("./SaveCoachingCardUserRequest"), exports);
578
+ __exportStar(require("./SaveDriverLicensePictureRequest"), exports);
579
+ __exportStar(require("./SaveDriverLicensePictureResponse"), exports);
580
+ __exportStar(require("./SaveDriverLicenseRequest"), exports);
576
581
  __exportStar(require("./SaveExternalContentVoteRequest"), exports);
577
582
  __exportStar(require("./SaveItemToWatchlistRequest"), exports);
578
583
  __exportStar(require("./SaveLawfirmSurchargeModel"), exports);
@@ -708,6 +713,7 @@ __exportStar(require("./UpdateViolationRequest"), exports);
708
713
  __exportStar(require("./UpsertAddressRequest"), exports);
709
714
  __exportStar(require("./User"), exports);
710
715
  __exportStar(require("./UserAccountModel"), exports);
716
+ __exportStar(require("./UserAssetModel"), exports);
711
717
  __exportStar(require("./UserAuditEventModel"), exports);
712
718
  __exportStar(require("./UserBookingsDomain"), exports);
713
719
  __exportStar(require("./UserDetails"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.171",
3
+ "version": "2.3.173",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"