@otr-app/shared-backend-generated-client 2.2.52 → 2.2.53

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 (30) hide show
  1. package/dist/typescript/api/{AgentBookingsControllerApi.d.ts → CustomerServiceAgentBookingsControllerApi.d.ts} +3 -3
  2. package/dist/typescript/api/{AgentBookingsControllerApi.js → CustomerServiceAgentBookingsControllerApi.js} +9 -9
  3. package/dist/typescript/api/CustomerServiceAgentControllerApi.d.ts +27 -0
  4. package/dist/typescript/api/CustomerServiceAgentControllerApi.js +52 -0
  5. package/dist/typescript/api/api.d.ts +5 -3
  6. package/dist/typescript/api/api.js +5 -3
  7. package/dist/typescript/api.module.js +2 -1
  8. package/dist/typescript/model/CustomerServiceAgentBookingDomain.d.ts +21 -0
  9. package/dist/typescript/model/{IncomingEmailMessage.js → CustomerServiceAgentBookingDomain.js} +0 -0
  10. package/dist/typescript/model/CustomerServiceAgentDomain.d.ts +20 -0
  11. package/dist/typescript/model/{PostAgentBookingRequest.js → CustomerServiceAgentDomain.js} +0 -0
  12. package/dist/typescript/model/{IncomingEmailMessage.d.ts → GetCustomerServiceAgentsResponse.d.ts} +3 -4
  13. package/dist/typescript/model/{PostAgentBookingResponse.js → GetCustomerServiceAgentsResponse.js} +0 -0
  14. package/dist/typescript/model/{PostAgentBookingRequest.d.ts → SaveAgentBookingRequest.d.ts} +1 -1
  15. package/dist/typescript/model/SaveAgentBookingRequest.js +13 -0
  16. package/dist/typescript/model/{PostAgentBookingResponse.d.ts → SaveAgentBookingResponse.d.ts} +2 -2
  17. package/dist/typescript/model/SaveAgentBookingResponse.js +13 -0
  18. package/dist/typescript/model/User.d.ts +16 -0
  19. package/dist/typescript/model/User.js +13 -0
  20. package/dist/typescript/model/models.d.ts +6 -3
  21. package/dist/typescript/model/models.js +6 -3
  22. package/package.json +2 -2
  23. package/dist/typescript/api/CatchAllControllerApi.d.ts +0 -55
  24. package/dist/typescript/api/CatchAllControllerApi.js +0 -162
  25. package/dist/typescript/model/AgentBookingDomain.d.ts +0 -42
  26. package/dist/typescript/model/AgentBookingDomain.js +0 -38
  27. package/dist/typescript/model/CaseActionDomainReq.d.ts +0 -36
  28. package/dist/typescript/model/CaseActionDomainReq.js +0 -30
  29. package/dist/typescript/model/CaseActionDomainRes.d.ts +0 -36
  30. package/dist/typescript/model/CaseActionDomainRes.js +0 -30
@@ -11,7 +11,7 @@
11
11
  */
12
12
  /// <reference types="angular" />
13
13
  import * as models from '../model/models';
14
- export declare class AgentBookingsControllerApi {
14
+ export declare class CustomerServiceAgentBookingsControllerApi {
15
15
  protected $http: ng.IHttpService;
16
16
  protected $httpParamSerializer?: (d: any) => any;
17
17
  protected basePath: string;
@@ -20,8 +20,8 @@ export declare class AgentBookingsControllerApi {
20
20
  constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
21
21
  /**
22
22
  *
23
- * @summary postAgentBooking
23
+ * @summary saveAgentBooking
24
24
  * @param request request
25
25
  */
26
- postAgentBookingUsingPOST(request: models.PostAgentBookingRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.PostAgentBookingResponse>;
26
+ saveAgentBookingUsingPOST(request: models.SaveAgentBookingRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.SaveAgentBookingResponse>;
27
27
  }
@@ -11,10 +11,10 @@
11
11
  * Do not edit the class manually.
12
12
  */
13
13
  Object.defineProperty(exports, "__esModule", { value: true });
14
- exports.AgentBookingsControllerApi = void 0;
14
+ exports.CustomerServiceAgentBookingsControllerApi = void 0;
15
15
  /* tslint:disable:no-unused-variable member-ordering */
16
- var AgentBookingsControllerApi = /** @class */ (function () {
17
- function AgentBookingsControllerApi($http, $httpParamSerializer, basePath) {
16
+ var CustomerServiceAgentBookingsControllerApi = /** @class */ (function () {
17
+ function CustomerServiceAgentBookingsControllerApi($http, $httpParamSerializer, basePath) {
18
18
  this.$http = $http;
19
19
  this.$httpParamSerializer = $httpParamSerializer;
20
20
  this.basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
@@ -25,16 +25,16 @@ var AgentBookingsControllerApi = /** @class */ (function () {
25
25
  }
26
26
  /**
27
27
  *
28
- * @summary postAgentBooking
28
+ * @summary saveAgentBooking
29
29
  * @param request request
30
30
  */
31
- AgentBookingsControllerApi.prototype.postAgentBookingUsingPOST = function (request, extraHttpRequestParams) {
31
+ CustomerServiceAgentBookingsControllerApi.prototype.saveAgentBookingUsingPOST = function (request, extraHttpRequestParams) {
32
32
  var localVarPath = this.basePath + '/api/v1/agent-bookings';
33
33
  var queryParameters = {};
34
34
  var headerParams = Object.assign({}, this.defaultHeaders);
35
35
  // verify required parameter 'request' is not null or undefined
36
36
  if (request === null || request === undefined) {
37
- throw new Error('Required parameter request was null or undefined when calling postAgentBookingUsingPOST.');
37
+ throw new Error('Required parameter request was null or undefined when calling saveAgentBookingUsingPOST.');
38
38
  }
39
39
  var httpRequestParams = {
40
40
  method: 'POST',
@@ -48,7 +48,7 @@ var AgentBookingsControllerApi = /** @class */ (function () {
48
48
  }
49
49
  return this.$http(httpRequestParams);
50
50
  };
51
- AgentBookingsControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
52
- return AgentBookingsControllerApi;
51
+ CustomerServiceAgentBookingsControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
52
+ return CustomerServiceAgentBookingsControllerApi;
53
53
  }());
54
- exports.AgentBookingsControllerApi = AgentBookingsControllerApi;
54
+ exports.CustomerServiceAgentBookingsControllerApi = CustomerServiceAgentBookingsControllerApi;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /// <reference types="angular" />
13
+ import * as models from '../model/models';
14
+ export declare class CustomerServiceAgentControllerApi {
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 getCustomerServiceAgents
24
+ * @param isActive isActive
25
+ */
26
+ getCustomerServiceAgentsUsingGET(isActive?: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCustomerServiceAgentsResponse>;
27
+ }
@@ -0,0 +1,52 @@
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.CustomerServiceAgentControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var CustomerServiceAgentControllerApi = /** @class */ (function () {
17
+ function CustomerServiceAgentControllerApi($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 getCustomerServiceAgents
29
+ * @param isActive isActive
30
+ */
31
+ CustomerServiceAgentControllerApi.prototype.getCustomerServiceAgentsUsingGET = function (isActive, extraHttpRequestParams) {
32
+ var localVarPath = this.basePath + '/api/v1/cs-agent';
33
+ var queryParameters = {};
34
+ var headerParams = Object.assign({}, this.defaultHeaders);
35
+ if (isActive !== undefined) {
36
+ queryParameters['isActive'] = isActive;
37
+ }
38
+ var httpRequestParams = {
39
+ method: 'GET',
40
+ url: localVarPath,
41
+ params: queryParameters,
42
+ headers: headerParams
43
+ };
44
+ if (extraHttpRequestParams) {
45
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
46
+ }
47
+ return this.$http(httpRequestParams);
48
+ };
49
+ CustomerServiceAgentControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
50
+ return CustomerServiceAgentControllerApi;
51
+ }());
52
+ exports.CustomerServiceAgentControllerApi = CustomerServiceAgentControllerApi;
@@ -4,8 +4,6 @@ export * from './ActivityFeedControllerApi';
4
4
  import { ActivityFeedControllerApi } from './ActivityFeedControllerApi';
5
5
  export * from './AddressControllerApi';
6
6
  import { AddressControllerApi } from './AddressControllerApi';
7
- export * from './AgentBookingsControllerApi';
8
- import { AgentBookingsControllerApi } from './AgentBookingsControllerApi';
9
7
  export * from './AlertNotificationControllerApi';
10
8
  import { AlertNotificationControllerApi } from './AlertNotificationControllerApi';
11
9
  export * from './AppEventsControllerApi';
@@ -60,6 +58,10 @@ export * from './CustomerLeadControllerApi';
60
58
  import { CustomerLeadControllerApi } from './CustomerLeadControllerApi';
61
59
  export * from './CustomerReviewControllerApi';
62
60
  import { CustomerReviewControllerApi } from './CustomerReviewControllerApi';
61
+ export * from './CustomerServiceAgentBookingsControllerApi';
62
+ import { CustomerServiceAgentBookingsControllerApi } from './CustomerServiceAgentBookingsControllerApi';
63
+ export * from './CustomerServiceAgentControllerApi';
64
+ import { CustomerServiceAgentControllerApi } from './CustomerServiceAgentControllerApi';
63
65
  export * from './DashboardControllerApi';
64
66
  import { DashboardControllerApi } from './DashboardControllerApi';
65
67
  export * from './DirectMailControllerApi';
@@ -172,4 +174,4 @@ export * from './ValidationControllerApi';
172
174
  import { ValidationControllerApi } from './ValidationControllerApi';
173
175
  export * from './ViolationPenaltyControllerApi';
174
176
  import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
175
- export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AgentBookingsControllerApi | 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 CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CertificateControllerApi | typeof CitationControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof EmailSubscriptionControllerApi | 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 LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof NotesControllerApi | 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 SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof TrafficViolationControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof ViolationPenaltyControllerApi)[];
177
+ 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 CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CertificateControllerApi | 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 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 LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof NotesControllerApi | 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 SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof TrafficViolationControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof ViolationPenaltyControllerApi)[];
@@ -17,8 +17,6 @@ __exportStar(require("./ActivityFeedControllerApi"), exports);
17
17
  var ActivityFeedControllerApi_1 = require("./ActivityFeedControllerApi");
18
18
  __exportStar(require("./AddressControllerApi"), exports);
19
19
  var AddressControllerApi_1 = require("./AddressControllerApi");
20
- __exportStar(require("./AgentBookingsControllerApi"), exports);
21
- var AgentBookingsControllerApi_1 = require("./AgentBookingsControllerApi");
22
20
  __exportStar(require("./AlertNotificationControllerApi"), exports);
23
21
  var AlertNotificationControllerApi_1 = require("./AlertNotificationControllerApi");
24
22
  __exportStar(require("./AppEventsControllerApi"), exports);
@@ -73,6 +71,10 @@ __exportStar(require("./CustomerLeadControllerApi"), exports);
73
71
  var CustomerLeadControllerApi_1 = require("./CustomerLeadControllerApi");
74
72
  __exportStar(require("./CustomerReviewControllerApi"), exports);
75
73
  var CustomerReviewControllerApi_1 = require("./CustomerReviewControllerApi");
74
+ __exportStar(require("./CustomerServiceAgentBookingsControllerApi"), exports);
75
+ var CustomerServiceAgentBookingsControllerApi_1 = require("./CustomerServiceAgentBookingsControllerApi");
76
+ __exportStar(require("./CustomerServiceAgentControllerApi"), exports);
77
+ var CustomerServiceAgentControllerApi_1 = require("./CustomerServiceAgentControllerApi");
76
78
  __exportStar(require("./DashboardControllerApi"), exports);
77
79
  var DashboardControllerApi_1 = require("./DashboardControllerApi");
78
80
  __exportStar(require("./DirectMailControllerApi"), exports);
@@ -185,4 +187,4 @@ __exportStar(require("./ValidationControllerApi"), exports);
185
187
  var ValidationControllerApi_1 = require("./ValidationControllerApi");
186
188
  __exportStar(require("./ViolationPenaltyControllerApi"), exports);
187
189
  var ViolationPenaltyControllerApi_1 = require("./ViolationPenaltyControllerApi");
188
- exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AgentBookingsControllerApi_1.AgentBookingsControllerApi, 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, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CertificateControllerApi_1.CertificateControllerApi, 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, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, 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, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, NotesControllerApi_1.NotesControllerApi, 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, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, TrafficViolationControllerApi_1.TrafficViolationControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi];
190
+ 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, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CertificateControllerApi_1.CertificateControllerApi, 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, 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, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, NotesControllerApi_1.NotesControllerApi, 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, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, TrafficViolationControllerApi_1.TrafficViolationControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi];
@@ -6,7 +6,6 @@ var apiModule = angular.module('api', [])
6
6
  .service('ActionRequiredControllerApi', api.ActionRequiredControllerApi)
7
7
  .service('ActivityFeedControllerApi', api.ActivityFeedControllerApi)
8
8
  .service('AddressControllerApi', api.AddressControllerApi)
9
- .service('AgentBookingsControllerApi', api.AgentBookingsControllerApi)
10
9
  .service('AlertNotificationControllerApi', api.AlertNotificationControllerApi)
11
10
  .service('AppEventsControllerApi', api.AppEventsControllerApi)
12
11
  .service('AuditLawfirmEventsControllerApi', api.AuditLawfirmEventsControllerApi)
@@ -34,6 +33,8 @@ var apiModule = angular.module('api', [])
34
33
  .service('CrmControllerApi', api.CrmControllerApi)
35
34
  .service('CustomerLeadControllerApi', api.CustomerLeadControllerApi)
36
35
  .service('CustomerReviewControllerApi', api.CustomerReviewControllerApi)
36
+ .service('CustomerServiceAgentBookingsControllerApi', api.CustomerServiceAgentBookingsControllerApi)
37
+ .service('CustomerServiceAgentControllerApi', api.CustomerServiceAgentControllerApi)
37
38
  .service('DashboardControllerApi', api.DashboardControllerApi)
38
39
  .service('DirectMailControllerApi', api.DirectMailControllerApi)
39
40
  .service('DripControllerApi', api.DripControllerApi)
@@ -0,0 +1,21 @@
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 CustomerServiceAgentBookingDomain {
14
+ "agentBookingId"?: number;
15
+ "bookingReference"?: string;
16
+ "caseId"?: string;
17
+ "channel"?: string;
18
+ "direction"?: string;
19
+ "requesterId"?: number;
20
+ "user"?: models.User;
21
+ }
@@ -0,0 +1,20 @@
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 CustomerServiceAgentDomain {
13
+ "firstName"?: string;
14
+ "freshcallerAgentId"?: number;
15
+ "freshdeskAgentId"?: number;
16
+ "freshdeskApiToken"?: string;
17
+ "isActive"?: boolean;
18
+ "lastName"?: string;
19
+ "userId"?: number;
20
+ }
@@ -10,8 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as models from './models';
13
- export interface IncomingEmailMessage {
14
- "content"?: string;
15
- "mail"?: models.IncomingEmail;
16
- "notificationType"?: string;
13
+ export interface GetCustomerServiceAgentsResponse {
14
+ "agents"?: Array<models.CustomerServiceAgentDomain>;
15
+ "count"?: number;
17
16
  }
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- export interface PostAgentBookingRequest {
12
+ export interface SaveAgentBookingRequest {
13
13
  "bookingReference"?: string;
14
14
  "caseId"?: string;
15
15
  "channel"?: string;
@@ -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 });
@@ -10,6 +10,6 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as models from './models';
13
- export interface PostAgentBookingResponse {
14
- "booking"?: models.AgentBookingDomain;
13
+ export interface SaveAgentBookingResponse {
14
+ "booking"?: models.CustomerServiceAgentBookingDomain;
15
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 User {
13
+ "firstName"?: string;
14
+ "lastName"?: string;
15
+ "userId"?: number;
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 });
@@ -26,7 +26,6 @@ export * from './AddViolationsToCitationRequest';
26
26
  export * from './AddressDomain';
27
27
  export * from './AddressDomainReq';
28
28
  export * from './AddressDomainRes';
29
- export * from './AgentBookingDomain';
30
29
  export * from './AggregateBySource';
31
30
  export * from './AggregateRatingMetrics';
32
31
  export * from './AggregateReferralCredit';
@@ -132,6 +131,8 @@ export * from './CursorModel';
132
131
  export * from './CustomerLead';
133
132
  export * from './CustomerOverduePayment';
134
133
  export * from './CustomerReview';
134
+ export * from './CustomerServiceAgentBookingDomain';
135
+ export * from './CustomerServiceAgentDomain';
135
136
  export * from './DashboardAddressModel';
136
137
  export * from './DashboardCaseModel';
137
138
  export * from './DashboardCitationModel';
@@ -228,6 +229,7 @@ export * from './GetCourtResponse';
228
229
  export * from './GetCourtsByQueryResponse';
229
230
  export * from './GetCourtsInnerResponse';
230
231
  export * from './GetCurrentUserResponse';
232
+ export * from './GetCustomerServiceAgentsResponse';
231
233
  export * from './GetDeclinedCasesRequest';
232
234
  export * from './GetDeclinedCasesResponse';
233
235
  export * from './GetDocumentsRequest';
@@ -400,8 +402,6 @@ export * from './PersistTicketEvaluationRequest';
400
402
  export * from './PhoneNumberDomain';
401
403
  export * from './PhoneNumberDomainReq';
402
404
  export * from './PhoneNumberDomainRes';
403
- export * from './PostAgentBookingRequest';
404
- export * from './PostAgentBookingResponse';
405
405
  export * from './PostCourtCoverageRequest';
406
406
  export * from './PostFeedbackRequest';
407
407
  export * from './PotentialCustomerDomain';
@@ -439,6 +439,8 @@ export * from './ReviewRatingModel';
439
439
  export * from './ReviewVoteAggregateModel';
440
440
  export * from './SNSNotificationRequest';
441
441
  export * from './SSLCertificateResponse';
442
+ export * from './SaveAgentBookingRequest';
443
+ export * from './SaveAgentBookingResponse';
442
444
  export * from './SaveCaseNotesRequest';
443
445
  export * from './SaveLawfirmSurchargeModel';
444
446
  export * from './SaveLawfirmSurchargesRequest';
@@ -557,6 +559,7 @@ export * from './UpdateUserProfileRequest';
557
559
  export * from './UpdateUserRolesRequest';
558
560
  export * from './UpdateViolationRequest';
559
561
  export * from './UpsertAddressRequest';
562
+ export * from './User';
560
563
  export * from './UserAccountModel';
561
564
  export * from './UserAuditEventModel';
562
565
  export * from './UserBookingsDomain';
@@ -38,7 +38,6 @@ __exportStar(require("./AddViolationsToCitationRequest"), exports);
38
38
  __exportStar(require("./AddressDomain"), exports);
39
39
  __exportStar(require("./AddressDomainReq"), exports);
40
40
  __exportStar(require("./AddressDomainRes"), exports);
41
- __exportStar(require("./AgentBookingDomain"), exports);
42
41
  __exportStar(require("./AggregateBySource"), exports);
43
42
  __exportStar(require("./AggregateRatingMetrics"), exports);
44
43
  __exportStar(require("./AggregateReferralCredit"), exports);
@@ -144,6 +143,8 @@ __exportStar(require("./CursorModel"), exports);
144
143
  __exportStar(require("./CustomerLead"), exports);
145
144
  __exportStar(require("./CustomerOverduePayment"), exports);
146
145
  __exportStar(require("./CustomerReview"), exports);
146
+ __exportStar(require("./CustomerServiceAgentBookingDomain"), exports);
147
+ __exportStar(require("./CustomerServiceAgentDomain"), exports);
147
148
  __exportStar(require("./DashboardAddressModel"), exports);
148
149
  __exportStar(require("./DashboardCaseModel"), exports);
149
150
  __exportStar(require("./DashboardCitationModel"), exports);
@@ -240,6 +241,7 @@ __exportStar(require("./GetCourtResponse"), exports);
240
241
  __exportStar(require("./GetCourtsByQueryResponse"), exports);
241
242
  __exportStar(require("./GetCourtsInnerResponse"), exports);
242
243
  __exportStar(require("./GetCurrentUserResponse"), exports);
244
+ __exportStar(require("./GetCustomerServiceAgentsResponse"), exports);
243
245
  __exportStar(require("./GetDeclinedCasesRequest"), exports);
244
246
  __exportStar(require("./GetDeclinedCasesResponse"), exports);
245
247
  __exportStar(require("./GetDocumentsRequest"), exports);
@@ -412,8 +414,6 @@ __exportStar(require("./PersistTicketEvaluationRequest"), exports);
412
414
  __exportStar(require("./PhoneNumberDomain"), exports);
413
415
  __exportStar(require("./PhoneNumberDomainReq"), exports);
414
416
  __exportStar(require("./PhoneNumberDomainRes"), exports);
415
- __exportStar(require("./PostAgentBookingRequest"), exports);
416
- __exportStar(require("./PostAgentBookingResponse"), exports);
417
417
  __exportStar(require("./PostCourtCoverageRequest"), exports);
418
418
  __exportStar(require("./PostFeedbackRequest"), exports);
419
419
  __exportStar(require("./PotentialCustomerDomain"), exports);
@@ -451,6 +451,8 @@ __exportStar(require("./ReviewRatingModel"), exports);
451
451
  __exportStar(require("./ReviewVoteAggregateModel"), exports);
452
452
  __exportStar(require("./SNSNotificationRequest"), exports);
453
453
  __exportStar(require("./SSLCertificateResponse"), exports);
454
+ __exportStar(require("./SaveAgentBookingRequest"), exports);
455
+ __exportStar(require("./SaveAgentBookingResponse"), exports);
454
456
  __exportStar(require("./SaveCaseNotesRequest"), exports);
455
457
  __exportStar(require("./SaveLawfirmSurchargeModel"), exports);
456
458
  __exportStar(require("./SaveLawfirmSurchargesRequest"), exports);
@@ -569,6 +571,7 @@ __exportStar(require("./UpdateUserProfileRequest"), exports);
569
571
  __exportStar(require("./UpdateUserRolesRequest"), exports);
570
572
  __exportStar(require("./UpdateViolationRequest"), exports);
571
573
  __exportStar(require("./UpsertAddressRequest"), exports);
574
+ __exportStar(require("./User"), exports);
572
575
  __exportStar(require("./UserAccountModel"), exports);
573
576
  __exportStar(require("./UserAuditEventModel"), exports);
574
577
  __exportStar(require("./UserBookingsDomain"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.2.52",
3
+ "version": "2.2.53",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"
@@ -16,7 +16,7 @@
16
16
  "download:devo": "curl https://otr-backend-service-us-devo.offtherecord.com/v2/api-docs -o api/otr-service.json",
17
17
  "compile": "tsc",
18
18
  "clean-source": "find dist/typescript -type f | grep -v \"\\.d\\.ts\\|\\.js\" | xargs rm",
19
- "ts-client": "gulp codegen && openapi-generator-cli generate -i api/otr-service.json -o dist/typescript -g typescript-angularjs",
19
+ "ts-client": "rm -r dist/typescript && gulp codegen && openapi-generator-cli generate -i api/otr-service.json -o dist/typescript -g typescript-angularjs",
20
20
  "generate:devo": "npm run download:devo && npm run ts-client && npm run compile && npm run clean-source",
21
21
  "generate:local": "curl http://localhost:8080/v2/api-docs -o api/otr-service.json && npm run ts-client && npm run compile && npm run clean-source",
22
22
  "bootstrap": "npm i @openapitools/openapi-generator-cli -g && openapi-generator-cli version-manager set 4.3.1"
@@ -1,55 +0,0 @@
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
- export declare class CatchAllControllerApi {
14
- protected $http: ng.IHttpService;
15
- protected $httpParamSerializer?: (d: any) => any;
16
- protected basePath: string;
17
- defaultHeaders: any;
18
- static $inject: string[];
19
- constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
20
- /**
21
- *
22
- * @summary unmappedRequest
23
- */
24
- unmappedRequestUsingDELETE(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
25
- /**
26
- *
27
- * @summary unmappedRequest
28
- */
29
- unmappedRequestUsingGET(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
30
- /**
31
- *
32
- * @summary unmappedRequest
33
- */
34
- unmappedRequestUsingHEAD(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
35
- /**
36
- *
37
- * @summary unmappedRequest
38
- */
39
- unmappedRequestUsingOPTIONS(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
40
- /**
41
- *
42
- * @summary unmappedRequest
43
- */
44
- unmappedRequestUsingPATCH(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
45
- /**
46
- *
47
- * @summary unmappedRequest
48
- */
49
- unmappedRequestUsingPOST(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
50
- /**
51
- *
52
- * @summary unmappedRequest
53
- */
54
- unmappedRequestUsingPUT(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
55
- }
@@ -1,162 +0,0 @@
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.CatchAllControllerApi = void 0;
15
- /* tslint:disable:no-unused-variable member-ordering */
16
- var CatchAllControllerApi = /** @class */ (function () {
17
- function CatchAllControllerApi($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 unmappedRequest
29
- */
30
- CatchAllControllerApi.prototype.unmappedRequestUsingDELETE = function (extraHttpRequestParams) {
31
- var localVarPath = this.basePath + '/api/**';
32
- var queryParameters = {};
33
- var headerParams = Object.assign({}, this.defaultHeaders);
34
- var httpRequestParams = {
35
- method: 'DELETE',
36
- url: localVarPath,
37
- params: queryParameters,
38
- headers: headerParams
39
- };
40
- if (extraHttpRequestParams) {
41
- httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
42
- }
43
- return this.$http(httpRequestParams);
44
- };
45
- /**
46
- *
47
- * @summary unmappedRequest
48
- */
49
- CatchAllControllerApi.prototype.unmappedRequestUsingGET = function (extraHttpRequestParams) {
50
- var localVarPath = this.basePath + '/api/**';
51
- var queryParameters = {};
52
- var headerParams = Object.assign({}, this.defaultHeaders);
53
- var httpRequestParams = {
54
- method: 'GET',
55
- url: localVarPath,
56
- params: queryParameters,
57
- headers: headerParams
58
- };
59
- if (extraHttpRequestParams) {
60
- httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
61
- }
62
- return this.$http(httpRequestParams);
63
- };
64
- /**
65
- *
66
- * @summary unmappedRequest
67
- */
68
- CatchAllControllerApi.prototype.unmappedRequestUsingHEAD = function (extraHttpRequestParams) {
69
- var localVarPath = this.basePath + '/api/**';
70
- var queryParameters = {};
71
- var headerParams = Object.assign({}, this.defaultHeaders);
72
- var httpRequestParams = {
73
- method: 'HEAD',
74
- url: localVarPath,
75
- params: queryParameters,
76
- headers: headerParams
77
- };
78
- if (extraHttpRequestParams) {
79
- httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
80
- }
81
- return this.$http(httpRequestParams);
82
- };
83
- /**
84
- *
85
- * @summary unmappedRequest
86
- */
87
- CatchAllControllerApi.prototype.unmappedRequestUsingOPTIONS = function (extraHttpRequestParams) {
88
- var localVarPath = this.basePath + '/api/**';
89
- var queryParameters = {};
90
- var headerParams = Object.assign({}, this.defaultHeaders);
91
- var httpRequestParams = {
92
- method: 'OPTIONS',
93
- url: localVarPath,
94
- params: queryParameters,
95
- headers: headerParams
96
- };
97
- if (extraHttpRequestParams) {
98
- httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
99
- }
100
- return this.$http(httpRequestParams);
101
- };
102
- /**
103
- *
104
- * @summary unmappedRequest
105
- */
106
- CatchAllControllerApi.prototype.unmappedRequestUsingPATCH = function (extraHttpRequestParams) {
107
- var localVarPath = this.basePath + '/api/**';
108
- var queryParameters = {};
109
- var headerParams = Object.assign({}, this.defaultHeaders);
110
- var httpRequestParams = {
111
- method: 'PATCH',
112
- url: localVarPath,
113
- params: queryParameters,
114
- headers: headerParams
115
- };
116
- if (extraHttpRequestParams) {
117
- httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
118
- }
119
- return this.$http(httpRequestParams);
120
- };
121
- /**
122
- *
123
- * @summary unmappedRequest
124
- */
125
- CatchAllControllerApi.prototype.unmappedRequestUsingPOST = function (extraHttpRequestParams) {
126
- var localVarPath = this.basePath + '/api/**';
127
- var queryParameters = {};
128
- var headerParams = Object.assign({}, this.defaultHeaders);
129
- var httpRequestParams = {
130
- method: 'POST',
131
- url: localVarPath,
132
- params: queryParameters,
133
- headers: headerParams
134
- };
135
- if (extraHttpRequestParams) {
136
- httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
137
- }
138
- return this.$http(httpRequestParams);
139
- };
140
- /**
141
- *
142
- * @summary unmappedRequest
143
- */
144
- CatchAllControllerApi.prototype.unmappedRequestUsingPUT = function (extraHttpRequestParams) {
145
- var localVarPath = this.basePath + '/api/**';
146
- var queryParameters = {};
147
- var headerParams = Object.assign({}, this.defaultHeaders);
148
- var httpRequestParams = {
149
- method: 'PUT',
150
- url: localVarPath,
151
- params: queryParameters,
152
- headers: headerParams
153
- };
154
- if (extraHttpRequestParams) {
155
- httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
156
- }
157
- return this.$http(httpRequestParams);
158
- };
159
- CatchAllControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
160
- return CatchAllControllerApi;
161
- }());
162
- exports.CatchAllControllerApi = CatchAllControllerApi;
@@ -1,42 +0,0 @@
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 AgentBookingDomain {
13
- "agent"?: AgentBookingDomain.AgentEnum;
14
- "agentBookingId"?: number;
15
- "bookingReference"?: string;
16
- "caseId"?: string;
17
- "channel"?: string;
18
- "direction"?: string;
19
- "requesterId"?: number;
20
- }
21
- export declare namespace AgentBookingDomain {
22
- enum AgentEnum {
23
- ALEXGUIRGUIS,
24
- ALEXGUIRGUISDEVO,
25
- DANIELLACARABALLO,
26
- DARRYLBARNES,
27
- EUNAHKWON,
28
- ISELMORALES,
29
- KATEJONES,
30
- LAURALUNZ,
31
- MARKMIKHAIL,
32
- MARKMIKHAILDEVO,
33
- NICOLESTEWART,
34
- OTRSYSTEM,
35
- ROXYCORNIER,
36
- SHANNONDEWEY,
37
- TABBIDALE,
38
- TYLERKOSTELAK,
39
- TYLERKOSTELAKDEVO,
40
- VALENTINAMARTINEZ
41
- }
42
- }
@@ -1,38 +0,0 @@
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.AgentBookingDomain = void 0;
15
- var AgentBookingDomain;
16
- (function (AgentBookingDomain) {
17
- var AgentEnum;
18
- (function (AgentEnum) {
19
- AgentEnum[AgentEnum["ALEXGUIRGUIS"] = 'ALEX_GUIRGUIS'] = "ALEXGUIRGUIS";
20
- AgentEnum[AgentEnum["ALEXGUIRGUISDEVO"] = 'ALEX_GUIRGUIS_DEVO'] = "ALEXGUIRGUISDEVO";
21
- AgentEnum[AgentEnum["DANIELLACARABALLO"] = 'DANIELLA_CARABALLO'] = "DANIELLACARABALLO";
22
- AgentEnum[AgentEnum["DARRYLBARNES"] = 'DARRYL_BARNES'] = "DARRYLBARNES";
23
- AgentEnum[AgentEnum["EUNAHKWON"] = 'EUN_AH_KWON'] = "EUNAHKWON";
24
- AgentEnum[AgentEnum["ISELMORALES"] = 'ISEL_MORALES'] = "ISELMORALES";
25
- AgentEnum[AgentEnum["KATEJONES"] = 'KATE_JONES'] = "KATEJONES";
26
- AgentEnum[AgentEnum["LAURALUNZ"] = 'LAURA_LUNZ'] = "LAURALUNZ";
27
- AgentEnum[AgentEnum["MARKMIKHAIL"] = 'MARK_MIKHAIL'] = "MARKMIKHAIL";
28
- AgentEnum[AgentEnum["MARKMIKHAILDEVO"] = 'MARK_MIKHAIL_DEVO'] = "MARKMIKHAILDEVO";
29
- AgentEnum[AgentEnum["NICOLESTEWART"] = 'NICOLE_STEWART'] = "NICOLESTEWART";
30
- AgentEnum[AgentEnum["OTRSYSTEM"] = 'OTR_SYSTEM'] = "OTRSYSTEM";
31
- AgentEnum[AgentEnum["ROXYCORNIER"] = 'ROXY_CORNIER'] = "ROXYCORNIER";
32
- AgentEnum[AgentEnum["SHANNONDEWEY"] = 'SHANNON_DEWEY'] = "SHANNONDEWEY";
33
- AgentEnum[AgentEnum["TABBIDALE"] = 'TABBIDALE'] = "TABBIDALE";
34
- AgentEnum[AgentEnum["TYLERKOSTELAK"] = 'TYLER_KOSTELAK'] = "TYLERKOSTELAK";
35
- AgentEnum[AgentEnum["TYLERKOSTELAKDEVO"] = 'TYLER_KOSTELAK_DEVO'] = "TYLERKOSTELAKDEVO";
36
- AgentEnum[AgentEnum["VALENTINAMARTINEZ"] = 'VALENTINA_MARTINEZ'] = "VALENTINAMARTINEZ";
37
- })(AgentEnum = AgentBookingDomain.AgentEnum || (AgentBookingDomain.AgentEnum = {}));
38
- })(AgentBookingDomain = exports.AgentBookingDomain || (exports.AgentBookingDomain = {}));
@@ -1,36 +0,0 @@
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 CaseActionDomainReq {
14
- "actionDate"?: models.TimestampReq;
15
- "actionNote"?: string;
16
- "actionType"?: CaseActionDomainReq.ActionTypeEnum;
17
- "author"?: models.AuthorModel;
18
- "authorId"?: number;
19
- "authorName"?: string;
20
- "caseActionId"?: number;
21
- "isDeleted"?: boolean;
22
- }
23
- export declare namespace CaseActionDomainReq {
24
- enum ActionTypeEnum {
25
- CITATIONDATAEXTRACTED,
26
- COURTDATEREMOVED,
27
- COURTDATESCHEDULED,
28
- DISCOVERYRECEIVED,
29
- DISCOVERYREQUESTED,
30
- FAILEDPAYMENTATTEMPT,
31
- NOTICEOFAPPEARANCEFILED,
32
- OTHER,
33
- REVIEWEDBYLAWFIRM,
34
- TICKETMAILEDTOCOURT
35
- }
36
- }
@@ -1,30 +0,0 @@
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.CaseActionDomainReq = void 0;
15
- var CaseActionDomainReq;
16
- (function (CaseActionDomainReq) {
17
- var ActionTypeEnum;
18
- (function (ActionTypeEnum) {
19
- ActionTypeEnum[ActionTypeEnum["CITATIONDATAEXTRACTED"] = 'CITATION_DATA_EXTRACTED'] = "CITATIONDATAEXTRACTED";
20
- ActionTypeEnum[ActionTypeEnum["COURTDATEREMOVED"] = 'COURT_DATE_REMOVED'] = "COURTDATEREMOVED";
21
- ActionTypeEnum[ActionTypeEnum["COURTDATESCHEDULED"] = 'COURT_DATE_SCHEDULED'] = "COURTDATESCHEDULED";
22
- ActionTypeEnum[ActionTypeEnum["DISCOVERYRECEIVED"] = 'DISCOVERY_RECEIVED'] = "DISCOVERYRECEIVED";
23
- ActionTypeEnum[ActionTypeEnum["DISCOVERYREQUESTED"] = 'DISCOVERY_REQUESTED'] = "DISCOVERYREQUESTED";
24
- ActionTypeEnum[ActionTypeEnum["FAILEDPAYMENTATTEMPT"] = 'FAILED_PAYMENT_ATTEMPT'] = "FAILEDPAYMENTATTEMPT";
25
- ActionTypeEnum[ActionTypeEnum["NOTICEOFAPPEARANCEFILED"] = 'NOTICE_OF_APPEARANCE_FILED'] = "NOTICEOFAPPEARANCEFILED";
26
- ActionTypeEnum[ActionTypeEnum["OTHER"] = 'OTHER'] = "OTHER";
27
- ActionTypeEnum[ActionTypeEnum["REVIEWEDBYLAWFIRM"] = 'REVIEWED_BY_LAWFIRM'] = "REVIEWEDBYLAWFIRM";
28
- ActionTypeEnum[ActionTypeEnum["TICKETMAILEDTOCOURT"] = 'TICKET_MAILED_TO_COURT'] = "TICKETMAILEDTOCOURT";
29
- })(ActionTypeEnum = CaseActionDomainReq.ActionTypeEnum || (CaseActionDomainReq.ActionTypeEnum = {}));
30
- })(CaseActionDomainReq = exports.CaseActionDomainReq || (exports.CaseActionDomainReq = {}));
@@ -1,36 +0,0 @@
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 CaseActionDomainRes {
14
- "actionDate"?: models.TimestampRes;
15
- "actionNote"?: string;
16
- "actionType"?: CaseActionDomainRes.ActionTypeEnum;
17
- "author"?: models.AuthorModel;
18
- "authorId"?: number;
19
- "authorName"?: string;
20
- "caseActionId"?: number;
21
- "isDeleted"?: boolean;
22
- }
23
- export declare namespace CaseActionDomainRes {
24
- enum ActionTypeEnum {
25
- CITATIONDATAEXTRACTED,
26
- COURTDATEREMOVED,
27
- COURTDATESCHEDULED,
28
- DISCOVERYRECEIVED,
29
- DISCOVERYREQUESTED,
30
- FAILEDPAYMENTATTEMPT,
31
- NOTICEOFAPPEARANCEFILED,
32
- OTHER,
33
- REVIEWEDBYLAWFIRM,
34
- TICKETMAILEDTOCOURT
35
- }
36
- }
@@ -1,30 +0,0 @@
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.CaseActionDomainRes = void 0;
15
- var CaseActionDomainRes;
16
- (function (CaseActionDomainRes) {
17
- var ActionTypeEnum;
18
- (function (ActionTypeEnum) {
19
- ActionTypeEnum[ActionTypeEnum["CITATIONDATAEXTRACTED"] = 'CITATION_DATA_EXTRACTED'] = "CITATIONDATAEXTRACTED";
20
- ActionTypeEnum[ActionTypeEnum["COURTDATEREMOVED"] = 'COURT_DATE_REMOVED'] = "COURTDATEREMOVED";
21
- ActionTypeEnum[ActionTypeEnum["COURTDATESCHEDULED"] = 'COURT_DATE_SCHEDULED'] = "COURTDATESCHEDULED";
22
- ActionTypeEnum[ActionTypeEnum["DISCOVERYRECEIVED"] = 'DISCOVERY_RECEIVED'] = "DISCOVERYRECEIVED";
23
- ActionTypeEnum[ActionTypeEnum["DISCOVERYREQUESTED"] = 'DISCOVERY_REQUESTED'] = "DISCOVERYREQUESTED";
24
- ActionTypeEnum[ActionTypeEnum["FAILEDPAYMENTATTEMPT"] = 'FAILED_PAYMENT_ATTEMPT'] = "FAILEDPAYMENTATTEMPT";
25
- ActionTypeEnum[ActionTypeEnum["NOTICEOFAPPEARANCEFILED"] = 'NOTICE_OF_APPEARANCE_FILED'] = "NOTICEOFAPPEARANCEFILED";
26
- ActionTypeEnum[ActionTypeEnum["OTHER"] = 'OTHER'] = "OTHER";
27
- ActionTypeEnum[ActionTypeEnum["REVIEWEDBYLAWFIRM"] = 'REVIEWED_BY_LAWFIRM'] = "REVIEWEDBYLAWFIRM";
28
- ActionTypeEnum[ActionTypeEnum["TICKETMAILEDTOCOURT"] = 'TICKET_MAILED_TO_COURT'] = "TICKETMAILEDTOCOURT";
29
- })(ActionTypeEnum = CaseActionDomainRes.ActionTypeEnum || (CaseActionDomainRes.ActionTypeEnum = {}));
30
- })(CaseActionDomainRes = exports.CaseActionDomainRes || (exports.CaseActionDomainRes = {}));