@otr-app/shared-backend-generated-client 2.2.83 → 2.2.85
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.
- package/dist/otrBackendService.js +67 -0
- package/dist/otrBackendService.min.js +6 -6
- package/dist/typescript/api/SingleSignOnControllerApi.d.ts +30 -0
- package/dist/typescript/api/SingleSignOnControllerApi.js +80 -0
- package/dist/typescript/api/api.d.ts +3 -1
- package/dist/typescript/api/api.js +3 -1
- package/dist/typescript/api.module.js +1 -0
- package/dist/typescript/model/SingleSignOnResponse.d.ts +17 -0
- package/dist/typescript/model/SingleSignOnResponse.js +13 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/package.json +1 -1
|
@@ -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,17 @@
|
|
|
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
|
+
"emailAddress"?: string;
|
|
14
|
+
"jwt"?: string;
|
|
15
|
+
"redirectUrl"?: string;
|
|
16
|
+
"userId"?: number;
|
|
17
|
+
}
|
|
@@ -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 });
|
|
@@ -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";
|
|
@@ -486,6 +486,7 @@ export * from './SetStarOnMessagesRequest';
|
|
|
486
486
|
export * from './SignRecordingUrlRequest';
|
|
487
487
|
export * from './SignRecordingUrlResponse';
|
|
488
488
|
export * from './SimpleCredentialsResponse';
|
|
489
|
+
export * from './SingleSignOnResponse';
|
|
489
490
|
export * from './SocialLoginRequest';
|
|
490
491
|
export * from './SocialLoginResponse';
|
|
491
492
|
export * from './SocialLoginUser';
|
|
@@ -498,6 +498,7 @@ __exportStar(require("./SetStarOnMessagesRequest"), exports);
|
|
|
498
498
|
__exportStar(require("./SignRecordingUrlRequest"), exports);
|
|
499
499
|
__exportStar(require("./SignRecordingUrlResponse"), exports);
|
|
500
500
|
__exportStar(require("./SimpleCredentialsResponse"), exports);
|
|
501
|
+
__exportStar(require("./SingleSignOnResponse"), exports);
|
|
501
502
|
__exportStar(require("./SocialLoginRequest"), exports);
|
|
502
503
|
__exportStar(require("./SocialLoginResponse"), exports);
|
|
503
504
|
__exportStar(require("./SocialLoginUser"), exports);
|