@otr-app/shared-backend-generated-client 2.3.87 → 2.3.89

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 +6 -0
  2. package/dist/angular/api/api.ts +3 -1
  3. package/dist/angular/api/caseUserController.service.ts +233 -0
  4. package/dist/angular/api.module.ts +1 -0
  5. package/dist/angular/model/caseUserDefendantAttributesRequest.ts +21 -0
  6. package/dist/angular/model/caseUserPermissionAttributes.ts +17 -0
  7. package/dist/angular/model/getCaseUserModel.ts +44 -0
  8. package/dist/angular/model/getCaseUsersResponse.ts +18 -0
  9. package/dist/angular/model/models.ts +5 -0
  10. package/dist/angular/model/saveCaseUserRequest.ts +40 -0
  11. package/dist/otrBackendService.js +84 -0
  12. package/dist/otrBackendService.min.js +5 -5
  13. package/dist/typescript/api/CaseUserControllerApi.d.ts +35 -0
  14. package/dist/typescript/api/CaseUserControllerApi.js +89 -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/CaseUserDefendantAttributesRequest.d.ts +18 -0
  19. package/dist/typescript/model/CaseUserDefendantAttributesRequest.js +13 -0
  20. package/dist/typescript/model/CaseUserPermissionAttributes.d.ts +14 -0
  21. package/dist/typescript/model/CaseUserPermissionAttributes.js +13 -0
  22. package/dist/typescript/model/GetCaseUserModel.d.ts +39 -0
  23. package/dist/typescript/model/GetCaseUserModel.js +26 -0
  24. package/dist/typescript/model/GetCaseUsersResponse.d.ts +15 -0
  25. package/dist/typescript/model/GetCaseUsersResponse.js +13 -0
  26. package/dist/typescript/model/SaveCaseUserRequest.d.ts +34 -0
  27. package/dist/typescript/model/SaveCaseUserRequest.js +26 -0
  28. package/dist/typescript/model/models.d.ts +5 -0
  29. package/dist/typescript/model/models.js +5 -0
  30. package/package.json +2 -2
  31. package/dist/typescript/api.module.ts +0 -106
  32. package/dist/typescript/git_push.sh +0 -58
  33. package/dist/typescript/index.ts +0 -2
@@ -0,0 +1,35 @@
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 CaseUserControllerApi {
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 getCaseUsersByCase
24
+ * @param caseId caseId
25
+ * @param getRemovedUsers getRemovedUsers
26
+ */
27
+ getCaseUsersByCaseUsingGET(caseId: string, getRemovedUsers?: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCaseUsersResponse>;
28
+ /**
29
+ *
30
+ * @summary saveCaseUser
31
+ * @param caseId caseId
32
+ * @param request request
33
+ */
34
+ saveCaseUserUsingPOST(caseId: string, request: models.SaveCaseUserRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
35
+ }
@@ -0,0 +1,89 @@
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.CaseUserControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var CaseUserControllerApi = /** @class */ (function () {
17
+ function CaseUserControllerApi($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 getCaseUsersByCase
29
+ * @param caseId caseId
30
+ * @param getRemovedUsers getRemovedUsers
31
+ */
32
+ CaseUserControllerApi.prototype.getCaseUsersByCaseUsingGET = function (caseId, getRemovedUsers, extraHttpRequestParams) {
33
+ var localVarPath = this.basePath + '/api/v1/cases/{caseId}/users'
34
+ .replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
35
+ var queryParameters = {};
36
+ var headerParams = Object.assign({}, this.defaultHeaders);
37
+ // verify required parameter 'caseId' is not null or undefined
38
+ if (caseId === null || caseId === undefined) {
39
+ throw new Error('Required parameter caseId was null or undefined when calling getCaseUsersByCaseUsingGET.');
40
+ }
41
+ if (getRemovedUsers !== undefined) {
42
+ queryParameters['getRemovedUsers'] = getRemovedUsers;
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 saveCaseUser
58
+ * @param caseId caseId
59
+ * @param request request
60
+ */
61
+ CaseUserControllerApi.prototype.saveCaseUserUsingPOST = function (caseId, request, extraHttpRequestParams) {
62
+ var localVarPath = this.basePath + '/api/v1/cases/{caseId}/users'
63
+ .replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
64
+ var queryParameters = {};
65
+ var headerParams = Object.assign({}, this.defaultHeaders);
66
+ // verify required parameter 'caseId' is not null or undefined
67
+ if (caseId === null || caseId === undefined) {
68
+ throw new Error('Required parameter caseId was null or undefined when calling saveCaseUserUsingPOST.');
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 saveCaseUserUsingPOST.');
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
+ CaseUserControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
87
+ return CaseUserControllerApi;
88
+ }());
89
+ exports.CaseUserControllerApi = CaseUserControllerApi;
@@ -38,6 +38,8 @@ export * from './CaseStatusControllerApi';
38
38
  import { CaseStatusControllerApi } from './CaseStatusControllerApi';
39
39
  export * from './CaseTransferControllerApi';
40
40
  import { CaseTransferControllerApi } from './CaseTransferControllerApi';
41
+ export * from './CaseUserControllerApi';
42
+ import { CaseUserControllerApi } from './CaseUserControllerApi';
41
43
  export * from './CertificateControllerApi';
42
44
  import { CertificateControllerApi } from './CertificateControllerApi';
43
45
  export * from './CitationAuditControllerApi';
@@ -198,4 +200,4 @@ export * from './ViolationPenaltyControllerApi';
198
200
  import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
199
201
  export * from './WorkflowStateControllerApi';
200
202
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
201
- export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCreationControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | 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 WorkflowStateControllerApi)[];
203
+ export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCreationControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof 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 WorkflowStateControllerApi)[];
@@ -51,6 +51,8 @@ __exportStar(require("./CaseStatusControllerApi"), exports);
51
51
  var CaseStatusControllerApi_1 = require("./CaseStatusControllerApi");
52
52
  __exportStar(require("./CaseTransferControllerApi"), exports);
53
53
  var CaseTransferControllerApi_1 = require("./CaseTransferControllerApi");
54
+ __exportStar(require("./CaseUserControllerApi"), exports);
55
+ var CaseUserControllerApi_1 = require("./CaseUserControllerApi");
54
56
  __exportStar(require("./CertificateControllerApi"), exports);
55
57
  var CertificateControllerApi_1 = require("./CertificateControllerApi");
56
58
  __exportStar(require("./CitationAuditControllerApi"), exports);
@@ -211,4 +213,4 @@ __exportStar(require("./ViolationPenaltyControllerApi"), exports);
211
213
  var ViolationPenaltyControllerApi_1 = require("./ViolationPenaltyControllerApi");
212
214
  __exportStar(require("./WorkflowStateControllerApi"), exports);
213
215
  var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
214
- exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseResolutionControllerApi_1.CaseResolutionControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, 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, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
216
+ exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, 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, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
@@ -23,6 +23,7 @@ var apiModule = angular.module('api', [])
23
23
  .service('CaseResolutionControllerApi', api.CaseResolutionControllerApi)
24
24
  .service('CaseStatusControllerApi', api.CaseStatusControllerApi)
25
25
  .service('CaseTransferControllerApi', api.CaseTransferControllerApi)
26
+ .service('CaseUserControllerApi', api.CaseUserControllerApi)
26
27
  .service('CertificateControllerApi', api.CertificateControllerApi)
27
28
  .service('CitationAuditControllerApi', api.CitationAuditControllerApi)
28
29
  .service('CitationControllerApi', api.CitationControllerApi)
@@ -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 CaseUserDefendantAttributesRequest {
13
+ "dateOfBirth"?: string;
14
+ "firstName"?: string;
15
+ "lastName"?: string;
16
+ "licenseNumber"?: string;
17
+ "licenseState"?: string;
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 });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface CaseUserPermissionAttributes {
13
+ "hasFinancialAccess"?: boolean;
14
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,39 @@
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 GetCaseUserModel {
14
+ "additionalNote"?: string;
15
+ "caseId"?: string;
16
+ "dateOfBirth"?: string;
17
+ "emailAddress"?: string;
18
+ "firstName"?: string;
19
+ "isBookingAgent"?: boolean;
20
+ "isDefendant"?: boolean;
21
+ "isOwner"?: boolean;
22
+ "isRemoved"?: boolean;
23
+ "lastName"?: string;
24
+ "licenseNumber"?: string;
25
+ "licenseState"?: string;
26
+ "permissionAttributes"?: models.CaseUserPermissionAttributes;
27
+ "relationshipToClient"?: GetCaseUserModel.RelationshipToClientEnum;
28
+ "userId"?: number;
29
+ }
30
+ export declare namespace GetCaseUserModel {
31
+ enum RelationshipToClientEnum {
32
+ EMPLOYER,
33
+ FAMILYMEMBER,
34
+ FRIEND,
35
+ LAWYER,
36
+ OTHER,
37
+ SELF
38
+ }
39
+ }
@@ -0,0 +1,26 @@
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.GetCaseUserModel = void 0;
15
+ var GetCaseUserModel;
16
+ (function (GetCaseUserModel) {
17
+ var RelationshipToClientEnum;
18
+ (function (RelationshipToClientEnum) {
19
+ RelationshipToClientEnum[RelationshipToClientEnum["EMPLOYER"] = 'EMPLOYER'] = "EMPLOYER";
20
+ RelationshipToClientEnum[RelationshipToClientEnum["FAMILYMEMBER"] = 'FAMILY_MEMBER'] = "FAMILYMEMBER";
21
+ RelationshipToClientEnum[RelationshipToClientEnum["FRIEND"] = 'FRIEND'] = "FRIEND";
22
+ RelationshipToClientEnum[RelationshipToClientEnum["LAWYER"] = 'LAWYER'] = "LAWYER";
23
+ RelationshipToClientEnum[RelationshipToClientEnum["OTHER"] = 'OTHER'] = "OTHER";
24
+ RelationshipToClientEnum[RelationshipToClientEnum["SELF"] = 'SELF'] = "SELF";
25
+ })(RelationshipToClientEnum = GetCaseUserModel.RelationshipToClientEnum || (GetCaseUserModel.RelationshipToClientEnum = {}));
26
+ })(GetCaseUserModel = exports.GetCaseUserModel || (exports.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 GetCaseUsersResponse {
14
+ "users"?: Array<models.GetCaseUserModel>;
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,34 @@
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 SaveCaseUserRequest {
14
+ "additionalNote"?: string;
15
+ "defendantAttributes"?: models.CaseUserDefendantAttributesRequest;
16
+ "emailAddress"?: string;
17
+ "isBookingAgent"?: boolean;
18
+ "isDefendant"?: boolean;
19
+ "isOwner"?: boolean;
20
+ "isRemoved"?: boolean;
21
+ "permissionAttributes"?: models.CaseUserPermissionAttributes;
22
+ "relationshipToClient"?: SaveCaseUserRequest.RelationshipToClientEnum;
23
+ "userId"?: number;
24
+ }
25
+ export declare namespace SaveCaseUserRequest {
26
+ enum RelationshipToClientEnum {
27
+ EMPLOYER,
28
+ FAMILYMEMBER,
29
+ FRIEND,
30
+ LAWYER,
31
+ OTHER,
32
+ SELF
33
+ }
34
+ }
@@ -0,0 +1,26 @@
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.SaveCaseUserRequest = void 0;
15
+ var SaveCaseUserRequest;
16
+ (function (SaveCaseUserRequest) {
17
+ var RelationshipToClientEnum;
18
+ (function (RelationshipToClientEnum) {
19
+ RelationshipToClientEnum[RelationshipToClientEnum["EMPLOYER"] = 'EMPLOYER'] = "EMPLOYER";
20
+ RelationshipToClientEnum[RelationshipToClientEnum["FAMILYMEMBER"] = 'FAMILY_MEMBER'] = "FAMILYMEMBER";
21
+ RelationshipToClientEnum[RelationshipToClientEnum["FRIEND"] = 'FRIEND'] = "FRIEND";
22
+ RelationshipToClientEnum[RelationshipToClientEnum["LAWYER"] = 'LAWYER'] = "LAWYER";
23
+ RelationshipToClientEnum[RelationshipToClientEnum["OTHER"] = 'OTHER'] = "OTHER";
24
+ RelationshipToClientEnum[RelationshipToClientEnum["SELF"] = 'SELF'] = "SELF";
25
+ })(RelationshipToClientEnum = SaveCaseUserRequest.RelationshipToClientEnum || (SaveCaseUserRequest.RelationshipToClientEnum = {}));
26
+ })(SaveCaseUserRequest = exports.SaveCaseUserRequest || (exports.SaveCaseUserRequest = {}));
@@ -88,6 +88,8 @@ export * from './CaseStatusDomain';
88
88
  export * from './CaseSummaryDomain';
89
89
  export * from './CaseTransferHistory';
90
90
  export * from './CaseTransferResponse';
91
+ export * from './CaseUserDefendantAttributesRequest';
92
+ export * from './CaseUserPermissionAttributes';
91
93
  export * from './CaseViolationPenalty';
92
94
  export * from './CaseWithCoverageObtained';
93
95
  export * from './ChangeUserPasswordRequest';
@@ -223,6 +225,8 @@ export * from './GetCaseNotesResponse';
223
225
  export * from './GetCasePaymentsResponse';
224
226
  export * from './GetCaseResolutionStatusesResponse';
225
227
  export * from './GetCaseResponse';
228
+ export * from './GetCaseUserModel';
229
+ export * from './GetCaseUsersResponse';
226
230
  export * from './GetCasesWithCoverageObtainedResponse';
227
231
  export * from './GetCasesWithMissingLawfirmPayoutsResponse';
228
232
  export * from './GetCasesWithOverduePaymentsResponse';
@@ -503,6 +507,7 @@ export * from './SSLCertificateResponse';
503
507
  export * from './SaveAgentBookingRequest';
504
508
  export * from './SaveAgentBookingResponse';
505
509
  export * from './SaveCaseNotesRequest';
510
+ export * from './SaveCaseUserRequest';
506
511
  export * from './SaveLawfirmSurchargeModel';
507
512
  export * from './SaveLawfirmSurchargesRequest';
508
513
  export * from './SaveLawyerLeadRequest';
@@ -100,6 +100,8 @@ __exportStar(require("./CaseStatusDomain"), exports);
100
100
  __exportStar(require("./CaseSummaryDomain"), exports);
101
101
  __exportStar(require("./CaseTransferHistory"), exports);
102
102
  __exportStar(require("./CaseTransferResponse"), exports);
103
+ __exportStar(require("./CaseUserDefendantAttributesRequest"), exports);
104
+ __exportStar(require("./CaseUserPermissionAttributes"), exports);
103
105
  __exportStar(require("./CaseViolationPenalty"), exports);
104
106
  __exportStar(require("./CaseWithCoverageObtained"), exports);
105
107
  __exportStar(require("./ChangeUserPasswordRequest"), exports);
@@ -235,6 +237,8 @@ __exportStar(require("./GetCaseNotesResponse"), exports);
235
237
  __exportStar(require("./GetCasePaymentsResponse"), exports);
236
238
  __exportStar(require("./GetCaseResolutionStatusesResponse"), exports);
237
239
  __exportStar(require("./GetCaseResponse"), exports);
240
+ __exportStar(require("./GetCaseUserModel"), exports);
241
+ __exportStar(require("./GetCaseUsersResponse"), exports);
238
242
  __exportStar(require("./GetCasesWithCoverageObtainedResponse"), exports);
239
243
  __exportStar(require("./GetCasesWithMissingLawfirmPayoutsResponse"), exports);
240
244
  __exportStar(require("./GetCasesWithOverduePaymentsResponse"), exports);
@@ -515,6 +519,7 @@ __exportStar(require("./SSLCertificateResponse"), exports);
515
519
  __exportStar(require("./SaveAgentBookingRequest"), exports);
516
520
  __exportStar(require("./SaveAgentBookingResponse"), exports);
517
521
  __exportStar(require("./SaveCaseNotesRequest"), exports);
522
+ __exportStar(require("./SaveCaseUserRequest"), exports);
518
523
  __exportStar(require("./SaveLawfirmSurchargeModel"), exports);
519
524
  __exportStar(require("./SaveLawfirmSurchargesRequest"), exports);
520
525
  __exportStar(require("./SaveLawyerLeadRequest"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.87",
3
+ "version": "2.3.89",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"
@@ -14,7 +14,7 @@
14
14
  "author": "Off the Record, Inc.",
15
15
  "scripts": {
16
16
  "download:devo": "curl https://otr-backend-service-us-devo.offtherecord.com/v2/api-docs -o api/otr-service.json",
17
- "clean-source": "find dist/typescript/**/* -type f | grep -v \"\\.d\\.ts\\|\\.js\" | xargs rm",
17
+ "clean-source": "find dist/typescript/* -type f | grep -v \"\\.d\\.ts\\|\\.js\" | xargs rm",
18
18
  "generate:devo": "npm run generate:devo-angularjs",
19
19
  "generate:devo-angularjs-ci": "npm run download:devo && gulp codegen && java -jar /opt/openapi-generator/modules/openapi-generator-cli/target/openapi-generator-cli.jar generate -i api/otr-service.json -o dist/typescript -g typescript-angularjs && tsc --project tsconfig.json && npm run clean-source",
20
20
  "generate:devo-angular-ci": "npm run download:devo && gulp codegen && java -jar /opt/openapi-generator-630/modules/openapi-generator-cli/target/openapi-generator-cli.jar generate -i api/otr-service.json -o dist/angular -g typescript-angular",
@@ -1,106 +0,0 @@
1
- import * as api from './api/api';
2
- import * as angular from 'angular';
3
-
4
- const apiModule = angular.module('api', [])
5
- .service('ActionRequiredControllerApi', api.ActionRequiredControllerApi)
6
- .service('ActivityFeedControllerApi', api.ActivityFeedControllerApi)
7
- .service('AddressControllerApi', api.AddressControllerApi)
8
- .service('AlertNotificationControllerApi', api.AlertNotificationControllerApi)
9
- .service('AppEventsControllerApi', api.AppEventsControllerApi)
10
- .service('AuditLawfirmEventsControllerApi', api.AuditLawfirmEventsControllerApi)
11
- .service('AuthenticationControllerApi', api.AuthenticationControllerApi)
12
- .service('AwsCredentialsControllerApi', api.AwsCredentialsControllerApi)
13
- .service('BlogWebhookControllerApi', api.BlogWebhookControllerApi)
14
- .service('BranchLinkControllerApi', api.BranchLinkControllerApi)
15
- .service('CaseActionsControllerApi', api.CaseActionsControllerApi)
16
- .service('CaseControllerApi', api.CaseControllerApi)
17
- .service('CaseCreationControllerApi', api.CaseCreationControllerApi)
18
- .service('CaseNotesControllerApi', api.CaseNotesControllerApi)
19
- .service('CasePaymentControllerApi', api.CasePaymentControllerApi)
20
- .service('CaseReferralCodeControllerApi', api.CaseReferralCodeControllerApi)
21
- .service('CaseRefundControllerApi', api.CaseRefundControllerApi)
22
- .service('CaseResolutionControllerApi', api.CaseResolutionControllerApi)
23
- .service('CaseStatusControllerApi', api.CaseStatusControllerApi)
24
- .service('CaseTransferControllerApi', api.CaseTransferControllerApi)
25
- .service('CertificateControllerApi', api.CertificateControllerApi)
26
- .service('CitationAuditControllerApi', api.CitationAuditControllerApi)
27
- .service('CitationControllerApi', api.CitationControllerApi)
28
- .service('ConfigurationControllerApi', api.ConfigurationControllerApi)
29
- .service('ConsoleListControllerApi', api.ConsoleListControllerApi)
30
- .service('ContactTimelineControllerApi', api.ContactTimelineControllerApi)
31
- .service('ConversationControllerApi', api.ConversationControllerApi)
32
- .service('CountyControllerApi', api.CountyControllerApi)
33
- .service('CourtControllerApi', api.CourtControllerApi)
34
- .service('CrmControllerApi', api.CrmControllerApi)
35
- .service('CustomerLeadControllerApi', api.CustomerLeadControllerApi)
36
- .service('CustomerReviewControllerApi', api.CustomerReviewControllerApi)
37
- .service('CustomerServiceAgentBookingsControllerApi', api.CustomerServiceAgentBookingsControllerApi)
38
- .service('CustomerServiceAgentControllerApi', api.CustomerServiceAgentControllerApi)
39
- .service('DashboardControllerApi', api.DashboardControllerApi)
40
- .service('DirectMailControllerApi', api.DirectMailControllerApi)
41
- .service('DripControllerApi', api.DripControllerApi)
42
- .service('DripWebhooksControllerApi', api.DripWebhooksControllerApi)
43
- .service('EmailSubscriptionControllerApi', api.EmailSubscriptionControllerApi)
44
- .service('ExternalTicketLookupControllerApi', api.ExternalTicketLookupControllerApi)
45
- .service('FeedbackControllerApi', api.FeedbackControllerApi)
46
- .service('FreshcallerControllerApi', api.FreshcallerControllerApi)
47
- .service('FreshdeskTicketControllerApi', api.FreshdeskTicketControllerApi)
48
- .service('GetCaseControllerApi', api.GetCaseControllerApi)
49
- .service('HouseholdMateControllerApi', api.HouseholdMateControllerApi)
50
- .service('InsuranceCalculatorControllerApi', api.InsuranceCalculatorControllerApi)
51
- .service('LawfirmCaseDecisionControllerApi', api.LawfirmCaseDecisionControllerApi)
52
- .service('LawfirmCasesControllerApi', api.LawfirmCasesControllerApi)
53
- .service('LawfirmControllerApi', api.LawfirmControllerApi)
54
- .service('LawfirmDocumentControllerApi', api.LawfirmDocumentControllerApi)
55
- .service('LawfirmFeeCoverageControllerApi', api.LawfirmFeeCoverageControllerApi)
56
- .service('LawfirmPaymentModelControllerApi', api.LawfirmPaymentModelControllerApi)
57
- .service('LawfirmRatesControllerApi', api.LawfirmRatesControllerApi)
58
- .service('LawfirmSettingsControllerApi', api.LawfirmSettingsControllerApi)
59
- .service('LawfirmStorefrontControllerApi', api.LawfirmStorefrontControllerApi)
60
- .service('LawfirmSurchargeControllerApi', api.LawfirmSurchargeControllerApi)
61
- .service('LawfirmTransactionsControllerApi', api.LawfirmTransactionsControllerApi)
62
- .service('LawyerControllerApi', api.LawyerControllerApi)
63
- .service('LegalServicesControllerApi', api.LegalServicesControllerApi)
64
- .service('LineItemControllerApi', api.LineItemControllerApi)
65
- .service('ListCasesControllerApi', api.ListCasesControllerApi)
66
- .service('MediaCreationControllerApi', api.MediaCreationControllerApi)
67
- .service('MessagesControllerApi', api.MessagesControllerApi)
68
- .service('NotesControllerApi', api.NotesControllerApi)
69
- .service('OcrPredictionControllerApi', api.OcrPredictionControllerApi)
70
- .service('OnDemandRequestControllerApi', api.OnDemandRequestControllerApi)
71
- .service('OneTimePasswordControllerApi', api.OneTimePasswordControllerApi)
72
- .service('PhoneLeadsControllerApi', api.PhoneLeadsControllerApi)
73
- .service('PushNotificationControllerApi', api.PushNotificationControllerApi)
74
- .service('RecurringBillingControllerApi', api.RecurringBillingControllerApi)
75
- .service('RefLinkControllerApi', api.RefLinkControllerApi)
76
- .service('ReferralCodeControllerApi', api.ReferralCodeControllerApi)
77
- .service('ReferralControllerApi', api.ReferralControllerApi)
78
- .service('ReferralSourceControllerApi', api.ReferralSourceControllerApi)
79
- .service('RefundEligibilityControllerApi', api.RefundEligibilityControllerApi)
80
- .service('RegistrationControllerApi', api.RegistrationControllerApi)
81
- .service('ReportingControllerApi', api.ReportingControllerApi)
82
- .service('ScheduledTaskControllerApi', api.ScheduledTaskControllerApi)
83
- .service('SingleSignOnControllerApi', api.SingleSignOnControllerApi)
84
- .service('SnsListenerControllerApi', api.SnsListenerControllerApi)
85
- .service('SocialLoginControllerApi', api.SocialLoginControllerApi)
86
- .service('StripeCardControllerApi', api.StripeCardControllerApi)
87
- .service('StripeControllerApi', api.StripeControllerApi)
88
- .service('StripeSyncControllerApi', api.StripeSyncControllerApi)
89
- .service('StripeWebhookControllerApi', api.StripeWebhookControllerApi)
90
- .service('TicketReviewControllerApi', api.TicketReviewControllerApi)
91
- .service('UrlRedirectControllerApi', api.UrlRedirectControllerApi)
92
- .service('UserAccountControllerApi', api.UserAccountControllerApi)
93
- .service('UserAuditControllerApi', api.UserAuditControllerApi)
94
- .service('UserControllerApi', api.UserControllerApi)
95
- .service('UserPasswordControllerApi', api.UserPasswordControllerApi)
96
- .service('UserProfileControllerApi', api.UserProfileControllerApi)
97
- .service('UserSearchControllerApi', api.UserSearchControllerApi)
98
- .service('UserSettingsControllerApi', api.UserSettingsControllerApi)
99
- .service('UtilityControllerApi', api.UtilityControllerApi)
100
- .service('ValidationControllerApi', api.ValidationControllerApi)
101
- .service('VerificationControllerApi', api.VerificationControllerApi)
102
- .service('ViolationControllerApi', api.ViolationControllerApi)
103
- .service('ViolationPenaltyControllerApi', api.ViolationPenaltyControllerApi)
104
- .service('WorkflowStateControllerApi', api.WorkflowStateControllerApi)
105
-
106
- export default apiModule;