@otr-app/shared-backend-generated-client 2.2.82 → 2.2.84

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.
@@ -97,8 +97,9 @@ export declare class ConsoleListControllerApi {
97
97
  * @param page page
98
98
  * @param start start
99
99
  * @param statuses statuses
100
+ * @param request request
100
101
  */
101
- listBillingSubscribersUsingGET(length?: number, page?: number, start?: string, statuses?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', extraHttpRequestParams?: any): ng.IHttpPromise<models.ListBillingSubscribersResponse>;
102
+ listBillingSubscribersUsingPOST(length?: number, page?: number, start?: string, statuses?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', request?: models.ListBillingSubscribersRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListBillingSubscribersResponse>;
102
103
  /**
103
104
  *
104
105
  * @summary listLawfirmLeads
@@ -330,8 +330,9 @@ var ConsoleListControllerApi = /** @class */ (function () {
330
330
  * @param page page
331
331
  * @param start start
332
332
  * @param statuses statuses
333
+ * @param request request
333
334
  */
334
- ConsoleListControllerApi.prototype.listBillingSubscribersUsingGET = function (length, page, start, statuses, extraHttpRequestParams) {
335
+ ConsoleListControllerApi.prototype.listBillingSubscribersUsingPOST = function (length, page, start, statuses, request, extraHttpRequestParams) {
335
336
  var localVarPath = this.basePath + '/api/v1/billing/subscribers';
336
337
  var queryParameters = {};
337
338
  var headerParams = Object.assign({}, this.defaultHeaders);
@@ -348,8 +349,9 @@ var ConsoleListControllerApi = /** @class */ (function () {
348
349
  queryParameters['statuses'] = statuses;
349
350
  }
350
351
  var httpRequestParams = {
351
- method: 'GET',
352
+ method: 'POST',
352
353
  url: localVarPath,
354
+ data: request,
353
355
  params: queryParameters,
354
356
  headers: headerParams
355
357
  };
@@ -0,0 +1,30 @@
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 SingleSignOnControllerApi {
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 loginWithSSO
24
+ * @param brandId brandId
25
+ * @param email email
26
+ * @param isAdmin isAdmin
27
+ * @param password password
28
+ */
29
+ loginWithSSOUsingPOST(brandId: string, email: string, isAdmin: boolean, password: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.SingleSignOnResponse>;
30
+ }
@@ -0,0 +1,80 @@
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.SingleSignOnControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var SingleSignOnControllerApi = /** @class */ (function () {
17
+ function SingleSignOnControllerApi($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 loginWithSSO
29
+ * @param brandId brandId
30
+ * @param email email
31
+ * @param isAdmin isAdmin
32
+ * @param password password
33
+ */
34
+ SingleSignOnControllerApi.prototype.loginWithSSOUsingPOST = function (brandId, email, isAdmin, password, extraHttpRequestParams) {
35
+ var localVarPath = this.basePath + '/api/v1/authentication/sso/login';
36
+ var queryParameters = {};
37
+ var headerParams = Object.assign({}, this.defaultHeaders);
38
+ // verify required parameter 'brandId' is not null or undefined
39
+ if (brandId === null || brandId === undefined) {
40
+ throw new Error('Required parameter brandId was null or undefined when calling loginWithSSOUsingPOST.');
41
+ }
42
+ // verify required parameter 'email' is not null or undefined
43
+ if (email === null || email === undefined) {
44
+ throw new Error('Required parameter email was null or undefined when calling loginWithSSOUsingPOST.');
45
+ }
46
+ // verify required parameter 'isAdmin' is not null or undefined
47
+ if (isAdmin === null || isAdmin === undefined) {
48
+ throw new Error('Required parameter isAdmin was null or undefined when calling loginWithSSOUsingPOST.');
49
+ }
50
+ // verify required parameter 'password' is not null or undefined
51
+ if (password === null || password === undefined) {
52
+ throw new Error('Required parameter password was null or undefined when calling loginWithSSOUsingPOST.');
53
+ }
54
+ if (brandId !== undefined) {
55
+ queryParameters['brandId'] = brandId;
56
+ }
57
+ if (email !== undefined) {
58
+ queryParameters['email'] = email;
59
+ }
60
+ if (isAdmin !== undefined) {
61
+ queryParameters['isAdmin'] = isAdmin;
62
+ }
63
+ if (password !== undefined) {
64
+ queryParameters['password'] = password;
65
+ }
66
+ var httpRequestParams = {
67
+ method: 'POST',
68
+ url: localVarPath,
69
+ params: queryParameters,
70
+ headers: headerParams
71
+ };
72
+ if (extraHttpRequestParams) {
73
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
74
+ }
75
+ return this.$http(httpRequestParams);
76
+ };
77
+ SingleSignOnControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
78
+ return SingleSignOnControllerApi;
79
+ }());
80
+ exports.SingleSignOnControllerApi = SingleSignOnControllerApi;
@@ -138,6 +138,8 @@ export * from './ReportingControllerApi';
138
138
  import { ReportingControllerApi } from './ReportingControllerApi';
139
139
  export * from './ScheduledTaskControllerApi';
140
140
  import { ScheduledTaskControllerApi } from './ScheduledTaskControllerApi';
141
+ export * from './SingleSignOnControllerApi';
142
+ import { SingleSignOnControllerApi } from './SingleSignOnControllerApi';
141
143
  export * from './SnsListenerControllerApi';
142
144
  import { SnsListenerControllerApi } from './SnsListenerControllerApi';
143
145
  export * from './SocialLoginControllerApi';
@@ -174,4 +176,4 @@ export * from './ValidationControllerApi';
174
176
  import { ValidationControllerApi } from './ValidationControllerApi';
175
177
  export * from './ViolationPenaltyControllerApi';
176
178
  import { ViolationPenaltyControllerApi } from './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)[];
179
+ 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 SingleSignOnControllerApi | 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)[];
@@ -151,6 +151,8 @@ __exportStar(require("./ReportingControllerApi"), exports);
151
151
  var ReportingControllerApi_1 = require("./ReportingControllerApi");
152
152
  __exportStar(require("./ScheduledTaskControllerApi"), exports);
153
153
  var ScheduledTaskControllerApi_1 = require("./ScheduledTaskControllerApi");
154
+ __exportStar(require("./SingleSignOnControllerApi"), exports);
155
+ var SingleSignOnControllerApi_1 = require("./SingleSignOnControllerApi");
154
156
  __exportStar(require("./SnsListenerControllerApi"), exports);
155
157
  var SnsListenerControllerApi_1 = require("./SnsListenerControllerApi");
156
158
  __exportStar(require("./SocialLoginControllerApi"), exports);
@@ -187,4 +189,4 @@ __exportStar(require("./ValidationControllerApi"), exports);
187
189
  var ValidationControllerApi_1 = require("./ValidationControllerApi");
188
190
  __exportStar(require("./ViolationPenaltyControllerApi"), exports);
189
191
  var ViolationPenaltyControllerApi_1 = require("./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];
192
+ 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, SingleSignOnControllerApi_1.SingleSignOnControllerApi, 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];
@@ -73,6 +73,7 @@ var apiModule = angular.module('api', [])
73
73
  .service('RegistrationControllerApi', api.RegistrationControllerApi)
74
74
  .service('ReportingControllerApi', api.ReportingControllerApi)
75
75
  .service('ScheduledTaskControllerApi', api.ScheduledTaskControllerApi)
76
+ .service('SingleSignOnControllerApi', api.SingleSignOnControllerApi)
76
77
  .service('SnsListenerControllerApi', api.SnsListenerControllerApi)
77
78
  .service('SocialLoginControllerApi', api.SocialLoginControllerApi)
78
79
  .service('StripeCardControllerApi', api.StripeCardControllerApi)
@@ -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 ListBillingSubscribersRequest {
13
+ "order"?: {
14
+ [key: string]: string;
15
+ };
16
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface SingleSignOnResponse {
13
+ "jwt"?: string;
14
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -232,6 +232,7 @@ export declare namespace ValidateDirectMailResponse {
232
232
  SEOURLALREADYEXISTS,
233
233
  SIMILARCOURT,
234
234
  SOCIALPROFILEMISSINGEMAIL,
235
+ SSOSERVICEPROVIDERIDNOTFOUND,
235
236
  STATENOTSUPPORTED,
236
237
  STRIPEAPICONNECTIONEXCEPTION,
237
238
  STRIPEAPIEXCEPTION,
@@ -234,6 +234,7 @@ var ValidateDirectMailResponse;
234
234
  OtrErrorEnum[OtrErrorEnum["SEOURLALREADYEXISTS"] = 'SEO_URL_ALREADY_EXISTS'] = "SEOURLALREADYEXISTS";
235
235
  OtrErrorEnum[OtrErrorEnum["SIMILARCOURT"] = 'SIMILAR_COURT'] = "SIMILARCOURT";
236
236
  OtrErrorEnum[OtrErrorEnum["SOCIALPROFILEMISSINGEMAIL"] = 'SOCIAL_PROFILE_MISSING_EMAIL'] = "SOCIALPROFILEMISSINGEMAIL";
237
+ OtrErrorEnum[OtrErrorEnum["SSOSERVICEPROVIDERIDNOTFOUND"] = 'SSO_SERVICE_PROVIDER_ID_NOT_FOUND'] = "SSOSERVICEPROVIDERIDNOTFOUND";
237
238
  OtrErrorEnum[OtrErrorEnum["STATENOTSUPPORTED"] = 'STATE_NOT_SUPPORTED'] = "STATENOTSUPPORTED";
238
239
  OtrErrorEnum[OtrErrorEnum["STRIPEAPICONNECTIONEXCEPTION"] = 'STRIPE_API_CONNECTION_EXCEPTION'] = "STRIPEAPICONNECTIONEXCEPTION";
239
240
  OtrErrorEnum[OtrErrorEnum["STRIPEAPIEXCEPTION"] = 'STRIPE_API_EXCEPTION'] = "STRIPEAPIEXCEPTION";
@@ -358,6 +358,7 @@ export * from './LineItemModel';
358
358
  export * from './LineItemRequest';
359
359
  export * from './ListAgentBookingsResponse';
360
360
  export * from './ListBillingProductsResponse';
361
+ export * from './ListBillingSubscribersRequest';
361
362
  export * from './ListBillingSubscribersResponse';
362
363
  export * from './ListBillingSubscriptionModel';
363
364
  export * from './ListBillingSubscriptionsResponse';
@@ -485,6 +486,7 @@ export * from './SetStarOnMessagesRequest';
485
486
  export * from './SignRecordingUrlRequest';
486
487
  export * from './SignRecordingUrlResponse';
487
488
  export * from './SimpleCredentialsResponse';
489
+ export * from './SingleSignOnResponse';
488
490
  export * from './SocialLoginRequest';
489
491
  export * from './SocialLoginResponse';
490
492
  export * from './SocialLoginUser';
@@ -370,6 +370,7 @@ __exportStar(require("./LineItemModel"), exports);
370
370
  __exportStar(require("./LineItemRequest"), exports);
371
371
  __exportStar(require("./ListAgentBookingsResponse"), exports);
372
372
  __exportStar(require("./ListBillingProductsResponse"), exports);
373
+ __exportStar(require("./ListBillingSubscribersRequest"), exports);
373
374
  __exportStar(require("./ListBillingSubscribersResponse"), exports);
374
375
  __exportStar(require("./ListBillingSubscriptionModel"), exports);
375
376
  __exportStar(require("./ListBillingSubscriptionsResponse"), exports);
@@ -497,6 +498,7 @@ __exportStar(require("./SetStarOnMessagesRequest"), exports);
497
498
  __exportStar(require("./SignRecordingUrlRequest"), exports);
498
499
  __exportStar(require("./SignRecordingUrlResponse"), exports);
499
500
  __exportStar(require("./SimpleCredentialsResponse"), exports);
501
+ __exportStar(require("./SingleSignOnResponse"), exports);
500
502
  __exportStar(require("./SocialLoginRequest"), exports);
501
503
  __exportStar(require("./SocialLoginResponse"), exports);
502
504
  __exportStar(require("./SocialLoginUser"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.2.82",
3
+ "version": "2.2.84",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"