@otr-app/shared-backend-generated-client 2.3.88 → 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 (32) 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/.openapi-generator/VERSION +1 -1
  14. package/dist/typescript/api/CaseUserControllerApi.d.ts +35 -0
  15. package/dist/typescript/api/CaseUserControllerApi.js +89 -0
  16. package/dist/typescript/api/api.d.ts +3 -1
  17. package/dist/typescript/api/api.js +4 -6
  18. package/dist/typescript/api.module.js +1 -0
  19. package/dist/typescript/index.js +1 -5
  20. package/dist/typescript/model/CaseUserDefendantAttributesRequest.d.ts +18 -0
  21. package/dist/typescript/model/CaseUserDefendantAttributesRequest.js +13 -0
  22. package/dist/typescript/model/CaseUserPermissionAttributes.d.ts +14 -0
  23. package/dist/typescript/model/CaseUserPermissionAttributes.js +13 -0
  24. package/dist/typescript/model/GetCaseUserModel.d.ts +39 -0
  25. package/dist/typescript/model/GetCaseUserModel.js +26 -0
  26. package/dist/typescript/model/GetCaseUsersResponse.d.ts +15 -0
  27. package/dist/typescript/model/GetCaseUsersResponse.js +13 -0
  28. package/dist/typescript/model/SaveCaseUserRequest.d.ts +34 -0
  29. package/dist/typescript/model/SaveCaseUserRequest.js +26 -0
  30. package/dist/typescript/model/models.d.ts +5 -0
  31. package/dist/typescript/model/models.js +6 -5
  32. package/package.json +1 -1
@@ -1 +1 @@
1
- 4.3.1
1
+ 4.3.0
@@ -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)[];
@@ -1,11 +1,7 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
9
5
  }) : (function(o, m, k, k2) {
10
6
  if (k2 === undefined) k2 = k;
11
7
  o[k2] = m[k];
@@ -55,6 +51,8 @@ __exportStar(require("./CaseStatusControllerApi"), exports);
55
51
  var CaseStatusControllerApi_1 = require("./CaseStatusControllerApi");
56
52
  __exportStar(require("./CaseTransferControllerApi"), exports);
57
53
  var CaseTransferControllerApi_1 = require("./CaseTransferControllerApi");
54
+ __exportStar(require("./CaseUserControllerApi"), exports);
55
+ var CaseUserControllerApi_1 = require("./CaseUserControllerApi");
58
56
  __exportStar(require("./CertificateControllerApi"), exports);
59
57
  var CertificateControllerApi_1 = require("./CertificateControllerApi");
60
58
  __exportStar(require("./CitationAuditControllerApi"), exports);
@@ -215,4 +213,4 @@ __exportStar(require("./ViolationPenaltyControllerApi"), exports);
215
213
  var ViolationPenaltyControllerApi_1 = require("./ViolationPenaltyControllerApi");
216
214
  __exportStar(require("./WorkflowStateControllerApi"), exports);
217
215
  var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
218
- 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)
@@ -1,11 +1,7 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
9
5
  }) : (function(o, m, k, k2) {
10
6
  if (k2 === undefined) k2 = k;
11
7
  o[k2] = m[k];
@@ -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';
@@ -1,11 +1,7 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
9
5
  }) : (function(o, m, k, k2) {
10
6
  if (k2 === undefined) k2 = k;
11
7
  o[k2] = m[k];
@@ -104,6 +100,8 @@ __exportStar(require("./CaseStatusDomain"), exports);
104
100
  __exportStar(require("./CaseSummaryDomain"), exports);
105
101
  __exportStar(require("./CaseTransferHistory"), exports);
106
102
  __exportStar(require("./CaseTransferResponse"), exports);
103
+ __exportStar(require("./CaseUserDefendantAttributesRequest"), exports);
104
+ __exportStar(require("./CaseUserPermissionAttributes"), exports);
107
105
  __exportStar(require("./CaseViolationPenalty"), exports);
108
106
  __exportStar(require("./CaseWithCoverageObtained"), exports);
109
107
  __exportStar(require("./ChangeUserPasswordRequest"), exports);
@@ -239,6 +237,8 @@ __exportStar(require("./GetCaseNotesResponse"), exports);
239
237
  __exportStar(require("./GetCasePaymentsResponse"), exports);
240
238
  __exportStar(require("./GetCaseResolutionStatusesResponse"), exports);
241
239
  __exportStar(require("./GetCaseResponse"), exports);
240
+ __exportStar(require("./GetCaseUserModel"), exports);
241
+ __exportStar(require("./GetCaseUsersResponse"), exports);
242
242
  __exportStar(require("./GetCasesWithCoverageObtainedResponse"), exports);
243
243
  __exportStar(require("./GetCasesWithMissingLawfirmPayoutsResponse"), exports);
244
244
  __exportStar(require("./GetCasesWithOverduePaymentsResponse"), exports);
@@ -519,6 +519,7 @@ __exportStar(require("./SSLCertificateResponse"), exports);
519
519
  __exportStar(require("./SaveAgentBookingRequest"), exports);
520
520
  __exportStar(require("./SaveAgentBookingResponse"), exports);
521
521
  __exportStar(require("./SaveCaseNotesRequest"), exports);
522
+ __exportStar(require("./SaveCaseUserRequest"), exports);
522
523
  __exportStar(require("./SaveLawfirmSurchargeModel"), exports);
523
524
  __exportStar(require("./SaveLawfirmSurchargesRequest"), exports);
524
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.88",
3
+ "version": "2.3.89",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"