@otr-app/shared-backend-generated-client 2.2.44 → 2.2.45

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.
@@ -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 AgentBookingsControllerApi {
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 postAgentBooking
24
+ * @param request request
25
+ */
26
+ postAgentBookingUsingPOST(request: models.PostAgentBookingRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.PostAgentBookingResponse>;
27
+ }
@@ -0,0 +1,54 @@
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.AgentBookingsControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var AgentBookingsControllerApi = /** @class */ (function () {
17
+ function AgentBookingsControllerApi($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 postAgentBooking
29
+ * @param request request
30
+ */
31
+ AgentBookingsControllerApi.prototype.postAgentBookingUsingPOST = function (request, extraHttpRequestParams) {
32
+ var localVarPath = this.basePath + '/api/v1/agent-bookings';
33
+ var queryParameters = {};
34
+ var headerParams = Object.assign({}, this.defaultHeaders);
35
+ // verify required parameter 'request' is not null or undefined
36
+ if (request === null || request === undefined) {
37
+ throw new Error('Required parameter request was null or undefined when calling postAgentBookingUsingPOST.');
38
+ }
39
+ var httpRequestParams = {
40
+ method: 'POST',
41
+ url: localVarPath,
42
+ data: request,
43
+ params: queryParameters,
44
+ headers: headerParams
45
+ };
46
+ if (extraHttpRequestParams) {
47
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
48
+ }
49
+ return this.$http(httpRequestParams);
50
+ };
51
+ AgentBookingsControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
52
+ return AgentBookingsControllerApi;
53
+ }());
54
+ exports.AgentBookingsControllerApi = AgentBookingsControllerApi;
@@ -0,0 +1,58 @@
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
+
13
+ import * as models from '../model/models';
14
+
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+
17
+ export class AgentBookingsControllerApi {
18
+ protected basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
19
+ public defaultHeaders : any = {};
20
+
21
+ static $inject: string[] = ['$http', '$httpParamSerializer', 'basePath'];
22
+
23
+ constructor(protected $http: ng.IHttpService, protected $httpParamSerializer?: (d: any) => any, basePath?: string) {
24
+ if (basePath !== undefined) {
25
+ this.basePath = basePath;
26
+ }
27
+ }
28
+
29
+ /**
30
+ *
31
+ * @summary postAgentBooking
32
+ * @param request request
33
+ */
34
+ public postAgentBookingUsingPOST (request: models.PostAgentBookingRequest, extraHttpRequestParams?: any ) : ng.IHttpPromise<models.PostAgentBookingResponse> {
35
+ const localVarPath = this.basePath + '/api/v1/agent-bookings';
36
+
37
+ let queryParameters: any = {};
38
+ let headerParams: any = (<any>Object).assign({}, this.defaultHeaders);
39
+ // verify required parameter 'request' is not null or undefined
40
+ if (request === null || request === undefined) {
41
+ throw new Error('Required parameter request was null or undefined when calling postAgentBookingUsingPOST.');
42
+ }
43
+
44
+ let httpRequestParams: ng.IRequestConfig = {
45
+ method: 'POST',
46
+ url: localVarPath,
47
+ data: request,
48
+ params: queryParameters,
49
+ headers: headerParams
50
+ };
51
+
52
+ if (extraHttpRequestParams) {
53
+ httpRequestParams = (<any>Object).assign(httpRequestParams, extraHttpRequestParams);
54
+ }
55
+
56
+ return this.$http(httpRequestParams);
57
+ }
58
+ }
@@ -4,6 +4,8 @@ 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';
7
9
  export * from './AlertNotificationControllerApi';
8
10
  import { AlertNotificationControllerApi } from './AlertNotificationControllerApi';
9
11
  export * from './AppEventsControllerApi';
@@ -170,4 +172,4 @@ export * from './ValidationControllerApi';
170
172
  import { ValidationControllerApi } from './ValidationControllerApi';
171
173
  export * from './ViolationPenaltyControllerApi';
172
174
  import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
173
- 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 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)[];
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)[];
@@ -17,6 +17,8 @@ __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");
20
22
  __exportStar(require("./AlertNotificationControllerApi"), exports);
21
23
  var AlertNotificationControllerApi_1 = require("./AlertNotificationControllerApi");
22
24
  __exportStar(require("./AppEventsControllerApi"), exports);
@@ -183,4 +185,4 @@ __exportStar(require("./ValidationControllerApi"), exports);
183
185
  var ValidationControllerApi_1 = require("./ValidationControllerApi");
184
186
  __exportStar(require("./ViolationPenaltyControllerApi"), exports);
185
187
  var ViolationPenaltyControllerApi_1 = require("./ViolationPenaltyControllerApi");
186
- 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, 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];
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];
@@ -4,6 +4,8 @@ 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';
7
9
  export * from './AlertNotificationControllerApi';
8
10
  import { AlertNotificationControllerApi } from './AlertNotificationControllerApi';
9
11
  export * from './AppEventsControllerApi';
@@ -170,4 +172,4 @@ export * from './ValidationControllerApi';
170
172
  import { ValidationControllerApi } from './ValidationControllerApi';
171
173
  export * from './ViolationPenaltyControllerApi';
172
174
  import { ViolationPenaltyControllerApi } from './ViolationPenaltyControllerApi';
173
- export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BlogWebhookControllerApi, BranchLinkControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCreationControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CertificateControllerApi, CitationControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, EmailSubscriptionControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LineItemControllerApi, ListCasesControllerApi, NotesControllerApi, OnDemandRequestControllerApi, OneTimePasswordControllerApi, PhoneLeadsControllerApi, PushNotificationControllerApi, RecurringBillingControllerApi, RefLinkControllerApi, ReferralCodeControllerApi, ReferralControllerApi, ReferralSourceControllerApi, RefundEligibilityControllerApi, RegistrationControllerApi, ReportingControllerApi, ScheduledTaskControllerApi, SnsListenerControllerApi, SocialLoginControllerApi, StripeCardControllerApi, StripeControllerApi, StripeSyncControllerApi, StripeWebhookControllerApi, TicketReviewControllerApi, TrafficViolationControllerApi, UrlRedirectControllerApi, UserAccountControllerApi, UserAuditControllerApi, UserControllerApi, UserPasswordControllerApi, UserProfileControllerApi, UserSearchControllerApi, UtilityControllerApi, ValidationControllerApi, ViolationPenaltyControllerApi];
175
+ export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AgentBookingsControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BlogWebhookControllerApi, BranchLinkControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCreationControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CertificateControllerApi, CitationControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, EmailSubscriptionControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LineItemControllerApi, ListCasesControllerApi, NotesControllerApi, OnDemandRequestControllerApi, OneTimePasswordControllerApi, PhoneLeadsControllerApi, PushNotificationControllerApi, RecurringBillingControllerApi, RefLinkControllerApi, ReferralCodeControllerApi, ReferralControllerApi, ReferralSourceControllerApi, RefundEligibilityControllerApi, RegistrationControllerApi, ReportingControllerApi, ScheduledTaskControllerApi, SnsListenerControllerApi, SocialLoginControllerApi, StripeCardControllerApi, StripeControllerApi, StripeSyncControllerApi, StripeWebhookControllerApi, TicketReviewControllerApi, TrafficViolationControllerApi, UrlRedirectControllerApi, UserAccountControllerApi, UserAuditControllerApi, UserControllerApi, UserPasswordControllerApi, UserProfileControllerApi, UserSearchControllerApi, UtilityControllerApi, ValidationControllerApi, ViolationPenaltyControllerApi];
@@ -6,6 +6,7 @@ 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)
9
10
  .service('AlertNotificationControllerApi', api.AlertNotificationControllerApi)
10
11
  .service('AppEventsControllerApi', api.AppEventsControllerApi)
11
12
  .service('AuditLawfirmEventsControllerApi', api.AuditLawfirmEventsControllerApi)
@@ -5,6 +5,7 @@ const apiModule = angular.module('api', [])
5
5
  .service('ActionRequiredControllerApi', api.ActionRequiredControllerApi)
6
6
  .service('ActivityFeedControllerApi', api.ActivityFeedControllerApi)
7
7
  .service('AddressControllerApi', api.AddressControllerApi)
8
+ .service('AgentBookingsControllerApi', api.AgentBookingsControllerApi)
8
9
  .service('AlertNotificationControllerApi', api.AlertNotificationControllerApi)
9
10
  .service('AppEventsControllerApi', api.AppEventsControllerApi)
10
11
  .service('AuditLawfirmEventsControllerApi', api.AuditLawfirmEventsControllerApi)
@@ -0,0 +1,42 @@
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
+ }
@@ -0,0 +1,38 @@
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 = {}));
@@ -0,0 +1,46 @@
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
+
13
+ import * as models from './models';
14
+
15
+ export interface AgentBookingDomain {
16
+ "agent"?: AgentBookingDomain.AgentEnum;
17
+ "agentBookingId"?: number;
18
+ "bookingReference"?: string;
19
+ "caseId"?: string;
20
+ "channel"?: string;
21
+ "direction"?: string;
22
+ "requesterId"?: number;
23
+ }
24
+
25
+ export namespace AgentBookingDomain {
26
+ export enum AgentEnum {
27
+ ALEXGUIRGUIS = <any> 'ALEX_GUIRGUIS',
28
+ ALEXGUIRGUISDEVO = <any> 'ALEX_GUIRGUIS_DEVO',
29
+ DANIELLACARABALLO = <any> 'DANIELLA_CARABALLO',
30
+ DARRYLBARNES = <any> 'DARRYL_BARNES',
31
+ EUNAHKWON = <any> 'EUN_AH_KWON',
32
+ ISELMORALES = <any> 'ISEL_MORALES',
33
+ KATEJONES = <any> 'KATE_JONES',
34
+ LAURALUNZ = <any> 'LAURA_LUNZ',
35
+ MARKMIKHAIL = <any> 'MARK_MIKHAIL',
36
+ MARKMIKHAILDEVO = <any> 'MARK_MIKHAIL_DEVO',
37
+ NICOLESTEWART = <any> 'NICOLE_STEWART',
38
+ OTRSYSTEM = <any> 'OTR_SYSTEM',
39
+ ROXYCORNIER = <any> 'ROXY_CORNIER',
40
+ SHANNONDEWEY = <any> 'SHANNON_DEWEY',
41
+ TABBIDALE = <any> 'TABBIDALE',
42
+ TYLERKOSTELAK = <any> 'TYLER_KOSTELAK',
43
+ TYLERKOSTELAKDEVO = <any> 'TYLER_KOSTELAK_DEVO',
44
+ VALENTINAMARTINEZ = <any> 'VALENTINA_MARTINEZ'
45
+ }
46
+ }
@@ -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 PostAgentBookingRequest {
13
+ "bookingReference"?: string;
14
+ "caseId"?: string;
15
+ "channel"?: string;
16
+ "direction"?: string;
17
+ "userId"?: number;
18
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,22 @@
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
+
13
+ import * as models from './models';
14
+
15
+ export interface PostAgentBookingRequest {
16
+ "bookingReference"?: string;
17
+ "caseId"?: string;
18
+ "channel"?: string;
19
+ "direction"?: string;
20
+ "userId"?: number;
21
+ }
22
+
@@ -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 PostAgentBookingResponse {
14
+ "booking"?: models.AgentBookingDomain;
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,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
+
13
+ import * as models from './models';
14
+
15
+ export interface PostAgentBookingResponse {
16
+ "booking"?: models.AgentBookingDomain;
17
+ }
18
+
@@ -26,6 +26,7 @@ export * from './AddViolationsToCitationRequest';
26
26
  export * from './AddressDomain';
27
27
  export * from './AddressDomainReq';
28
28
  export * from './AddressDomainRes';
29
+ export * from './AgentBookingDomain';
29
30
  export * from './AggregateBySource';
30
31
  export * from './AggregateRatingMetrics';
31
32
  export * from './AggregateReferralCredit';
@@ -395,6 +396,8 @@ export * from './PersistTicketEvaluationRequest';
395
396
  export * from './PhoneNumberDomain';
396
397
  export * from './PhoneNumberDomainReq';
397
398
  export * from './PhoneNumberDomainRes';
399
+ export * from './PostAgentBookingRequest';
400
+ export * from './PostAgentBookingResponse';
398
401
  export * from './PostCourtCoverageRequest';
399
402
  export * from './PostFeedbackRequest';
400
403
  export * from './PotentialCustomerDomain';
@@ -38,6 +38,7 @@ __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);
41
42
  __exportStar(require("./AggregateBySource"), exports);
42
43
  __exportStar(require("./AggregateRatingMetrics"), exports);
43
44
  __exportStar(require("./AggregateReferralCredit"), exports);
@@ -407,6 +408,8 @@ __exportStar(require("./PersistTicketEvaluationRequest"), exports);
407
408
  __exportStar(require("./PhoneNumberDomain"), exports);
408
409
  __exportStar(require("./PhoneNumberDomainReq"), exports);
409
410
  __exportStar(require("./PhoneNumberDomainRes"), exports);
411
+ __exportStar(require("./PostAgentBookingRequest"), exports);
412
+ __exportStar(require("./PostAgentBookingResponse"), exports);
410
413
  __exportStar(require("./PostCourtCoverageRequest"), exports);
411
414
  __exportStar(require("./PostFeedbackRequest"), exports);
412
415
  __exportStar(require("./PotentialCustomerDomain"), exports);
@@ -26,6 +26,7 @@ export * from './AddViolationsToCitationRequest';
26
26
  export * from './AddressDomain';
27
27
  export * from './AddressDomainReq';
28
28
  export * from './AddressDomainRes';
29
+ export * from './AgentBookingDomain';
29
30
  export * from './AggregateBySource';
30
31
  export * from './AggregateRatingMetrics';
31
32
  export * from './AggregateReferralCredit';
@@ -395,6 +396,8 @@ export * from './PersistTicketEvaluationRequest';
395
396
  export * from './PhoneNumberDomain';
396
397
  export * from './PhoneNumberDomainReq';
397
398
  export * from './PhoneNumberDomainRes';
399
+ export * from './PostAgentBookingRequest';
400
+ export * from './PostAgentBookingResponse';
398
401
  export * from './PostCourtCoverageRequest';
399
402
  export * from './PostFeedbackRequest';
400
403
  export * from './PotentialCustomerDomain';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.2.44",
3
+ "version": "2.2.45",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"