@otr-app/shared-backend-generated-client 2.3.251 → 2.3.253
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/angular/.openapi-generator/FILES +6 -0
- package/dist/angular/api/api.ts +3 -1
- package/dist/angular/api/userSocialProfileController.service.ts +233 -0
- package/dist/angular/api.module.ts +1 -0
- package/dist/angular/model/models.ts +5 -0
- package/dist/angular/model/saveUserSocialProfileModel.ts +30 -0
- package/dist/angular/model/saveUserSocialProfileRequest.ts +18 -0
- package/dist/angular/model/userDomain.ts +2 -0
- package/dist/angular/model/userDomainReq.ts +2 -0
- package/dist/angular/model/userDomainRes.ts +2 -0
- package/dist/angular/model/userSocialProfileModel.ts +30 -0
- package/dist/angular/model/userSocialProfileModelReq.ts +30 -0
- package/dist/angular/model/userSocialProfileModelRes.ts +30 -0
- package/dist/angular/model/validateDirectMailResponse.ts +3 -1
- package/dist/otrBackendService.js +89 -0
- package/dist/otrBackendService.min.js +2 -2
- package/dist/typescript/api/UserSocialProfileControllerApi.d.ts +35 -0
- package/dist/typescript/api/UserSocialProfileControllerApi.js +93 -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/SaveUserSocialProfileModel.d.ts +25 -0
- package/dist/typescript/model/SaveUserSocialProfileModel.js +26 -0
- package/dist/typescript/model/SaveUserSocialProfileRequest.d.ts +15 -0
- package/dist/typescript/model/SaveUserSocialProfileRequest.js +13 -0
- package/dist/typescript/model/UserDomain.d.ts +1 -0
- package/dist/typescript/model/UserDomainReq.d.ts +1 -0
- package/dist/typescript/model/UserDomainRes.d.ts +1 -0
- package/dist/typescript/model/UserSocialProfileModel.d.ts +25 -0
- package/dist/typescript/model/UserSocialProfileModel.js +26 -0
- package/dist/typescript/model/UserSocialProfileModelReq.d.ts +25 -0
- package/dist/typescript/model/UserSocialProfileModelReq.js +26 -0
- package/dist/typescript/model/UserSocialProfileModelRes.d.ts +25 -0
- package/dist/typescript/model/UserSocialProfileModelRes.js +26 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +2 -0
- package/dist/typescript/model/ValidateDirectMailResponse.js +2 -0
- package/dist/typescript/model/models.d.ts +5 -0
- package/dist/typescript/model/models.js +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,93 @@
|
|
|
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.UserSocialProfileControllerApi = void 0;
|
|
15
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
16
|
+
var UserSocialProfileControllerApi = /** @class */ (function () {
|
|
17
|
+
function UserSocialProfileControllerApi($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 removeUserSocialProfile
|
|
29
|
+
* @param platform platform
|
|
30
|
+
* @param userId userId
|
|
31
|
+
*/
|
|
32
|
+
UserSocialProfileControllerApi.prototype.removeUserSocialProfileUsingDELETE = function (platform, userId, extraHttpRequestParams) {
|
|
33
|
+
var localVarPath = this.basePath + '/api/v1/users/{userId}/social-profiles'
|
|
34
|
+
.replace('{' + 'userId' + '}', encodeURIComponent(String(userId)));
|
|
35
|
+
var queryParameters = {};
|
|
36
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
37
|
+
// verify required parameter 'platform' is not null or undefined
|
|
38
|
+
if (platform === null || platform === undefined) {
|
|
39
|
+
throw new Error('Required parameter platform was null or undefined when calling removeUserSocialProfileUsingDELETE.');
|
|
40
|
+
}
|
|
41
|
+
// verify required parameter 'userId' is not null or undefined
|
|
42
|
+
if (userId === null || userId === undefined) {
|
|
43
|
+
throw new Error('Required parameter userId was null or undefined when calling removeUserSocialProfileUsingDELETE.');
|
|
44
|
+
}
|
|
45
|
+
if (platform !== undefined) {
|
|
46
|
+
queryParameters['platform'] = platform;
|
|
47
|
+
}
|
|
48
|
+
var httpRequestParams = {
|
|
49
|
+
method: 'DELETE',
|
|
50
|
+
url: localVarPath,
|
|
51
|
+
params: queryParameters,
|
|
52
|
+
headers: headerParams
|
|
53
|
+
};
|
|
54
|
+
if (extraHttpRequestParams) {
|
|
55
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
56
|
+
}
|
|
57
|
+
return this.$http(httpRequestParams);
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @summary saveUserSocialProfiles
|
|
62
|
+
* @param userId userId
|
|
63
|
+
* @param request request
|
|
64
|
+
*/
|
|
65
|
+
UserSocialProfileControllerApi.prototype.saveUserSocialProfilesUsingPOST = function (userId, request, extraHttpRequestParams) {
|
|
66
|
+
var localVarPath = this.basePath + '/api/v1/users/{userId}/social-profiles'
|
|
67
|
+
.replace('{' + 'userId' + '}', encodeURIComponent(String(userId)));
|
|
68
|
+
var queryParameters = {};
|
|
69
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
70
|
+
// verify required parameter 'userId' is not null or undefined
|
|
71
|
+
if (userId === null || userId === undefined) {
|
|
72
|
+
throw new Error('Required parameter userId was null or undefined when calling saveUserSocialProfilesUsingPOST.');
|
|
73
|
+
}
|
|
74
|
+
// verify required parameter 'request' is not null or undefined
|
|
75
|
+
if (request === null || request === undefined) {
|
|
76
|
+
throw new Error('Required parameter request was null or undefined when calling saveUserSocialProfilesUsingPOST.');
|
|
77
|
+
}
|
|
78
|
+
var httpRequestParams = {
|
|
79
|
+
method: 'POST',
|
|
80
|
+
url: localVarPath,
|
|
81
|
+
data: request,
|
|
82
|
+
params: queryParameters,
|
|
83
|
+
headers: headerParams
|
|
84
|
+
};
|
|
85
|
+
if (extraHttpRequestParams) {
|
|
86
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
87
|
+
}
|
|
88
|
+
return this.$http(httpRequestParams);
|
|
89
|
+
};
|
|
90
|
+
UserSocialProfileControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
91
|
+
return UserSocialProfileControllerApi;
|
|
92
|
+
}());
|
|
93
|
+
exports.UserSocialProfileControllerApi = UserSocialProfileControllerApi;
|
|
@@ -206,6 +206,8 @@ export * from './UserSearchControllerApi';
|
|
|
206
206
|
import { UserSearchControllerApi } from './UserSearchControllerApi';
|
|
207
207
|
export * from './UserSettingsControllerApi';
|
|
208
208
|
import { UserSettingsControllerApi } from './UserSettingsControllerApi';
|
|
209
|
+
export * from './UserSocialProfileControllerApi';
|
|
210
|
+
import { UserSocialProfileControllerApi } from './UserSocialProfileControllerApi';
|
|
209
211
|
export * from './UtilityControllerApi';
|
|
210
212
|
import { UtilityControllerApi } from './UtilityControllerApi';
|
|
211
213
|
export * from './ValidationControllerApi';
|
|
@@ -222,4 +224,4 @@ export * from './WebsocketMessageControllerApi';
|
|
|
222
224
|
import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
|
|
223
225
|
export * from './WorkflowStateControllerApi';
|
|
224
226
|
import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
|
|
225
|
-
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | typeof CaseCreationControllerApi | typeof CaseDeclineControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | 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 DriverLicenseControllerApi | typeof EmailSubscriptionControllerApi | typeof EmployeeControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
|
|
227
|
+
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | typeof CaseCreationControllerApi | typeof CaseDeclineControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | 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 DriverLicenseControllerApi | typeof EmailSubscriptionControllerApi | typeof EmployeeControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UserSocialProfileControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
|
|
@@ -219,6 +219,8 @@ __exportStar(require("./UserSearchControllerApi"), exports);
|
|
|
219
219
|
var UserSearchControllerApi_1 = require("./UserSearchControllerApi");
|
|
220
220
|
__exportStar(require("./UserSettingsControllerApi"), exports);
|
|
221
221
|
var UserSettingsControllerApi_1 = require("./UserSettingsControllerApi");
|
|
222
|
+
__exportStar(require("./UserSocialProfileControllerApi"), exports);
|
|
223
|
+
var UserSocialProfileControllerApi_1 = require("./UserSocialProfileControllerApi");
|
|
222
224
|
__exportStar(require("./UtilityControllerApi"), exports);
|
|
223
225
|
var UtilityControllerApi_1 = require("./UtilityControllerApi");
|
|
224
226
|
__exportStar(require("./ValidationControllerApi"), exports);
|
|
@@ -235,4 +237,4 @@ __exportStar(require("./WebsocketMessageControllerApi"), exports);
|
|
|
235
237
|
var WebsocketMessageControllerApi_1 = require("./WebsocketMessageControllerApi");
|
|
236
238
|
__exportStar(require("./WorkflowStateControllerApi"), exports);
|
|
237
239
|
var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
|
|
238
|
-
exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuditLogControllerApi_1.AuditLogControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaptchaControllerApi_1.CaptchaControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCounterOfferControllerApi_1.CaseCounterOfferControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseDeclineControllerApi_1.CaseDeclineControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseResolutionControllerApi_1.CaseResolutionControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CaseUserControllerApi_1.CaseUserControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationAuditControllerApi_1.CitationAuditControllerApi, CitationControllerApi_1.CitationControllerApi, CoachingCardsControllerApi_1.CoachingCardsControllerApi, 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, DriverLicenseControllerApi_1.DriverLicenseControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, EmployeeControllerApi_1.EmployeeControllerApi, ExternalContentVoteControllerApi_1.ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, HubspotWebhookControllerApi_1.HubspotWebhookControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
|
|
240
|
+
exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuditLogControllerApi_1.AuditLogControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaptchaControllerApi_1.CaptchaControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCounterOfferControllerApi_1.CaseCounterOfferControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseDeclineControllerApi_1.CaseDeclineControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseResolutionControllerApi_1.CaseResolutionControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CaseUserControllerApi_1.CaseUserControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationAuditControllerApi_1.CitationAuditControllerApi, CitationControllerApi_1.CitationControllerApi, CoachingCardsControllerApi_1.CoachingCardsControllerApi, 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, DriverLicenseControllerApi_1.DriverLicenseControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, EmployeeControllerApi_1.EmployeeControllerApi, ExternalContentVoteControllerApi_1.ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, HubspotWebhookControllerApi_1.HubspotWebhookControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UserSocialProfileControllerApi_1.UserSocialProfileControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
|
|
@@ -107,6 +107,7 @@ var apiModule = angular.module('api', [])
|
|
|
107
107
|
.service('UserProfileControllerApi', api.UserProfileControllerApi)
|
|
108
108
|
.service('UserSearchControllerApi', api.UserSearchControllerApi)
|
|
109
109
|
.service('UserSettingsControllerApi', api.UserSettingsControllerApi)
|
|
110
|
+
.service('UserSocialProfileControllerApi', api.UserSocialProfileControllerApi)
|
|
110
111
|
.service('UtilityControllerApi', api.UtilityControllerApi)
|
|
111
112
|
.service('ValidationControllerApi', api.ValidationControllerApi)
|
|
112
113
|
.service('VerificationControllerApi', api.VerificationControllerApi)
|
|
@@ -0,0 +1,25 @@
|
|
|
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 SaveUserSocialProfileModel {
|
|
13
|
+
"platform": SaveUserSocialProfileModel.PlatformEnum;
|
|
14
|
+
"userHandle": string;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace SaveUserSocialProfileModel {
|
|
17
|
+
enum PlatformEnum {
|
|
18
|
+
INSTAGRAM,
|
|
19
|
+
SNAPCHAT,
|
|
20
|
+
TIKTOK,
|
|
21
|
+
TWITCH,
|
|
22
|
+
X,
|
|
23
|
+
YOUTUBE
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.SaveUserSocialProfileModel = void 0;
|
|
15
|
+
var SaveUserSocialProfileModel;
|
|
16
|
+
(function (SaveUserSocialProfileModel) {
|
|
17
|
+
var PlatformEnum;
|
|
18
|
+
(function (PlatformEnum) {
|
|
19
|
+
PlatformEnum[PlatformEnum["INSTAGRAM"] = 'INSTAGRAM'] = "INSTAGRAM";
|
|
20
|
+
PlatformEnum[PlatformEnum["SNAPCHAT"] = 'SNAPCHAT'] = "SNAPCHAT";
|
|
21
|
+
PlatformEnum[PlatformEnum["TIKTOK"] = 'TIKTOK'] = "TIKTOK";
|
|
22
|
+
PlatformEnum[PlatformEnum["TWITCH"] = 'TWITCH'] = "TWITCH";
|
|
23
|
+
PlatformEnum[PlatformEnum["X"] = 'X'] = "X";
|
|
24
|
+
PlatformEnum[PlatformEnum["YOUTUBE"] = 'YOUTUBE'] = "YOUTUBE";
|
|
25
|
+
})(PlatformEnum = SaveUserSocialProfileModel.PlatformEnum || (SaveUserSocialProfileModel.PlatformEnum = {}));
|
|
26
|
+
})(SaveUserSocialProfileModel = exports.SaveUserSocialProfileModel || (exports.SaveUserSocialProfileModel = {}));
|
|
@@ -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 SaveUserSocialProfileRequest {
|
|
14
|
+
"profiles"?: Array<models.SaveUserSocialProfileModel>;
|
|
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 });
|
|
@@ -49,6 +49,7 @@ export interface UserDomain {
|
|
|
49
49
|
"roles"?: Array<models.UserRoleDomain>;
|
|
50
50
|
"signUpCode"?: string;
|
|
51
51
|
"signUpCodeUseCount"?: number;
|
|
52
|
+
"socialProfiles"?: Array<models.UserSocialProfileModel>;
|
|
52
53
|
"subscriptionPlans"?: Array<models.UserSubscriptionPlanModel>;
|
|
53
54
|
"userAlias"?: string;
|
|
54
55
|
"userId"?: number;
|
|
@@ -48,6 +48,7 @@ export interface UserDomainReq {
|
|
|
48
48
|
"roles"?: Array<models.UserRoleDomain>;
|
|
49
49
|
"signUpCode"?: string;
|
|
50
50
|
"signUpCodeUseCount"?: number;
|
|
51
|
+
"socialProfiles"?: Array<models.UserSocialProfileModelReq>;
|
|
51
52
|
"subscriptionPlans"?: Array<models.UserSubscriptionPlanModelReq>;
|
|
52
53
|
"userAlias"?: string;
|
|
53
54
|
"userId"?: number;
|
|
@@ -49,6 +49,7 @@ export interface UserDomainRes {
|
|
|
49
49
|
"roles"?: Array<models.UserRoleDomain>;
|
|
50
50
|
"signUpCode"?: string;
|
|
51
51
|
"signUpCodeUseCount"?: number;
|
|
52
|
+
"socialProfiles"?: Array<models.UserSocialProfileModelRes>;
|
|
52
53
|
"subscriptionPlans"?: Array<models.UserSubscriptionPlanModelRes>;
|
|
53
54
|
"userAlias"?: string;
|
|
54
55
|
"userId"?: number;
|
|
@@ -0,0 +1,25 @@
|
|
|
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 UserSocialProfileModel {
|
|
13
|
+
"platform"?: UserSocialProfileModel.PlatformEnum;
|
|
14
|
+
"userHandle"?: string;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace UserSocialProfileModel {
|
|
17
|
+
enum PlatformEnum {
|
|
18
|
+
INSTAGRAM,
|
|
19
|
+
SNAPCHAT,
|
|
20
|
+
TIKTOK,
|
|
21
|
+
TWITCH,
|
|
22
|
+
X,
|
|
23
|
+
YOUTUBE
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.UserSocialProfileModel = void 0;
|
|
15
|
+
var UserSocialProfileModel;
|
|
16
|
+
(function (UserSocialProfileModel) {
|
|
17
|
+
var PlatformEnum;
|
|
18
|
+
(function (PlatformEnum) {
|
|
19
|
+
PlatformEnum[PlatformEnum["INSTAGRAM"] = 'INSTAGRAM'] = "INSTAGRAM";
|
|
20
|
+
PlatformEnum[PlatformEnum["SNAPCHAT"] = 'SNAPCHAT'] = "SNAPCHAT";
|
|
21
|
+
PlatformEnum[PlatformEnum["TIKTOK"] = 'TIKTOK'] = "TIKTOK";
|
|
22
|
+
PlatformEnum[PlatformEnum["TWITCH"] = 'TWITCH'] = "TWITCH";
|
|
23
|
+
PlatformEnum[PlatformEnum["X"] = 'X'] = "X";
|
|
24
|
+
PlatformEnum[PlatformEnum["YOUTUBE"] = 'YOUTUBE'] = "YOUTUBE";
|
|
25
|
+
})(PlatformEnum = UserSocialProfileModel.PlatformEnum || (UserSocialProfileModel.PlatformEnum = {}));
|
|
26
|
+
})(UserSocialProfileModel = exports.UserSocialProfileModel || (exports.UserSocialProfileModel = {}));
|
|
@@ -0,0 +1,25 @@
|
|
|
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 UserSocialProfileModelReq {
|
|
13
|
+
"platform"?: UserSocialProfileModelReq.PlatformEnum;
|
|
14
|
+
"userHandle"?: string;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace UserSocialProfileModelReq {
|
|
17
|
+
enum PlatformEnum {
|
|
18
|
+
INSTAGRAM,
|
|
19
|
+
SNAPCHAT,
|
|
20
|
+
TIKTOK,
|
|
21
|
+
TWITCH,
|
|
22
|
+
X,
|
|
23
|
+
YOUTUBE
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.UserSocialProfileModelReq = void 0;
|
|
15
|
+
var UserSocialProfileModelReq;
|
|
16
|
+
(function (UserSocialProfileModelReq) {
|
|
17
|
+
var PlatformEnum;
|
|
18
|
+
(function (PlatformEnum) {
|
|
19
|
+
PlatformEnum[PlatformEnum["INSTAGRAM"] = 'INSTAGRAM'] = "INSTAGRAM";
|
|
20
|
+
PlatformEnum[PlatformEnum["SNAPCHAT"] = 'SNAPCHAT'] = "SNAPCHAT";
|
|
21
|
+
PlatformEnum[PlatformEnum["TIKTOK"] = 'TIKTOK'] = "TIKTOK";
|
|
22
|
+
PlatformEnum[PlatformEnum["TWITCH"] = 'TWITCH'] = "TWITCH";
|
|
23
|
+
PlatformEnum[PlatformEnum["X"] = 'X'] = "X";
|
|
24
|
+
PlatformEnum[PlatformEnum["YOUTUBE"] = 'YOUTUBE'] = "YOUTUBE";
|
|
25
|
+
})(PlatformEnum = UserSocialProfileModelReq.PlatformEnum || (UserSocialProfileModelReq.PlatformEnum = {}));
|
|
26
|
+
})(UserSocialProfileModelReq = exports.UserSocialProfileModelReq || (exports.UserSocialProfileModelReq = {}));
|
|
@@ -0,0 +1,25 @@
|
|
|
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 UserSocialProfileModelRes {
|
|
13
|
+
"platform"?: UserSocialProfileModelRes.PlatformEnum;
|
|
14
|
+
"userHandle"?: string;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace UserSocialProfileModelRes {
|
|
17
|
+
enum PlatformEnum {
|
|
18
|
+
INSTAGRAM,
|
|
19
|
+
SNAPCHAT,
|
|
20
|
+
TIKTOK,
|
|
21
|
+
TWITCH,
|
|
22
|
+
X,
|
|
23
|
+
YOUTUBE
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.UserSocialProfileModelRes = void 0;
|
|
15
|
+
var UserSocialProfileModelRes;
|
|
16
|
+
(function (UserSocialProfileModelRes) {
|
|
17
|
+
var PlatformEnum;
|
|
18
|
+
(function (PlatformEnum) {
|
|
19
|
+
PlatformEnum[PlatformEnum["INSTAGRAM"] = 'INSTAGRAM'] = "INSTAGRAM";
|
|
20
|
+
PlatformEnum[PlatformEnum["SNAPCHAT"] = 'SNAPCHAT'] = "SNAPCHAT";
|
|
21
|
+
PlatformEnum[PlatformEnum["TIKTOK"] = 'TIKTOK'] = "TIKTOK";
|
|
22
|
+
PlatformEnum[PlatformEnum["TWITCH"] = 'TWITCH'] = "TWITCH";
|
|
23
|
+
PlatformEnum[PlatformEnum["X"] = 'X'] = "X";
|
|
24
|
+
PlatformEnum[PlatformEnum["YOUTUBE"] = 'YOUTUBE'] = "YOUTUBE";
|
|
25
|
+
})(PlatformEnum = UserSocialProfileModelRes.PlatformEnum || (UserSocialProfileModelRes.PlatformEnum = {}));
|
|
26
|
+
})(UserSocialProfileModelRes = exports.UserSocialProfileModelRes || (exports.UserSocialProfileModelRes = {}));
|
|
@@ -182,6 +182,7 @@ export declare namespace ValidateDirectMailResponse {
|
|
|
182
182
|
MERGEROLLBACKNOTALLOWED,
|
|
183
183
|
MISSINGACTIONTYPE,
|
|
184
184
|
MISSINGADJUSTEDFINEAMOUNT,
|
|
185
|
+
MISSINGBIRTHDAY,
|
|
185
186
|
MISSINGCASE,
|
|
186
187
|
MISSINGCITATIONID,
|
|
187
188
|
MISSINGCOURTFEE,
|
|
@@ -270,6 +271,7 @@ export declare namespace ValidateDirectMailResponse {
|
|
|
270
271
|
STRIPETRANSFEREXISTS,
|
|
271
272
|
STRIPETRANSFERNOTFOUND,
|
|
272
273
|
SUBSCRIPTIONNOTOWNEDBYUSER,
|
|
274
|
+
SUBSCRIPTIONTEENAGERAGEOUT,
|
|
273
275
|
TEMPLATENOTSUPPORTED,
|
|
274
276
|
TRANSFERALREADYREVERSED,
|
|
275
277
|
TRANSFERIDDOESNTMATCHCHARGE,
|
|
@@ -184,6 +184,7 @@ var ValidateDirectMailResponse;
|
|
|
184
184
|
OtrErrorEnum[OtrErrorEnum["MERGEROLLBACKNOTALLOWED"] = 'MERGE_ROLLBACK_NOT_ALLOWED'] = "MERGEROLLBACKNOTALLOWED";
|
|
185
185
|
OtrErrorEnum[OtrErrorEnum["MISSINGACTIONTYPE"] = 'MISSING_ACTION_TYPE'] = "MISSINGACTIONTYPE";
|
|
186
186
|
OtrErrorEnum[OtrErrorEnum["MISSINGADJUSTEDFINEAMOUNT"] = 'MISSING_ADJUSTED_FINE_AMOUNT'] = "MISSINGADJUSTEDFINEAMOUNT";
|
|
187
|
+
OtrErrorEnum[OtrErrorEnum["MISSINGBIRTHDAY"] = 'MISSING_BIRTHDAY'] = "MISSINGBIRTHDAY";
|
|
187
188
|
OtrErrorEnum[OtrErrorEnum["MISSINGCASE"] = 'MISSING_CASE'] = "MISSINGCASE";
|
|
188
189
|
OtrErrorEnum[OtrErrorEnum["MISSINGCITATIONID"] = 'MISSING_CITATION_ID'] = "MISSINGCITATIONID";
|
|
189
190
|
OtrErrorEnum[OtrErrorEnum["MISSINGCOURTFEE"] = 'MISSING_COURT_FEE'] = "MISSINGCOURTFEE";
|
|
@@ -272,6 +273,7 @@ var ValidateDirectMailResponse;
|
|
|
272
273
|
OtrErrorEnum[OtrErrorEnum["STRIPETRANSFEREXISTS"] = 'STRIPE_TRANSFER_EXISTS'] = "STRIPETRANSFEREXISTS";
|
|
273
274
|
OtrErrorEnum[OtrErrorEnum["STRIPETRANSFERNOTFOUND"] = 'STRIPE_TRANSFER_NOT_FOUND'] = "STRIPETRANSFERNOTFOUND";
|
|
274
275
|
OtrErrorEnum[OtrErrorEnum["SUBSCRIPTIONNOTOWNEDBYUSER"] = 'SUBSCRIPTION_NOT_OWNED_BY_USER'] = "SUBSCRIPTIONNOTOWNEDBYUSER";
|
|
276
|
+
OtrErrorEnum[OtrErrorEnum["SUBSCRIPTIONTEENAGERAGEOUT"] = 'SUBSCRIPTION_TEENAGER_AGE_OUT'] = "SUBSCRIPTIONTEENAGERAGEOUT";
|
|
275
277
|
OtrErrorEnum[OtrErrorEnum["TEMPLATENOTSUPPORTED"] = 'TEMPLATE_NOT_SUPPORTED'] = "TEMPLATENOTSUPPORTED";
|
|
276
278
|
OtrErrorEnum[OtrErrorEnum["TRANSFERALREADYREVERSED"] = 'TRANSFER_ALREADY_REVERSED'] = "TRANSFERALREADYREVERSED";
|
|
277
279
|
OtrErrorEnum[OtrErrorEnum["TRANSFERIDDOESNTMATCHCHARGE"] = 'TRANSFER_ID_DOESNT_MATCH_CHARGE'] = "TRANSFERIDDOESNTMATCHCHARGE";
|
|
@@ -591,6 +591,8 @@ export * from './SaveLawyerLicenseModel';
|
|
|
591
591
|
export * from './SaveLawyerLicensesRequest';
|
|
592
592
|
export * from './SaveLawyerRequest';
|
|
593
593
|
export * from './SaveNotesRequest';
|
|
594
|
+
export * from './SaveUserSocialProfileModel';
|
|
595
|
+
export * from './SaveUserSocialProfileRequest';
|
|
594
596
|
export * from './SaveUserWatchlistsRequest';
|
|
595
597
|
export * from './ScheduleNewPaymentRequest';
|
|
596
598
|
export * from './ScheduledTaskGetResponse';
|
|
@@ -731,6 +733,9 @@ export * from './UserRefLinkDomain';
|
|
|
731
733
|
export * from './UserReferralSourceTypeModel';
|
|
732
734
|
export * from './UserRegistrationStats';
|
|
733
735
|
export * from './UserRoleDomain';
|
|
736
|
+
export * from './UserSocialProfileModel';
|
|
737
|
+
export * from './UserSocialProfileModelReq';
|
|
738
|
+
export * from './UserSocialProfileModelRes';
|
|
734
739
|
export * from './UserSubscriptionPlanModel';
|
|
735
740
|
export * from './UserSubscriptionPlanModelReq';
|
|
736
741
|
export * from './UserSubscriptionPlanModelRes';
|
|
@@ -603,6 +603,8 @@ __exportStar(require("./SaveLawyerLicenseModel"), exports);
|
|
|
603
603
|
__exportStar(require("./SaveLawyerLicensesRequest"), exports);
|
|
604
604
|
__exportStar(require("./SaveLawyerRequest"), exports);
|
|
605
605
|
__exportStar(require("./SaveNotesRequest"), exports);
|
|
606
|
+
__exportStar(require("./SaveUserSocialProfileModel"), exports);
|
|
607
|
+
__exportStar(require("./SaveUserSocialProfileRequest"), exports);
|
|
606
608
|
__exportStar(require("./SaveUserWatchlistsRequest"), exports);
|
|
607
609
|
__exportStar(require("./ScheduleNewPaymentRequest"), exports);
|
|
608
610
|
__exportStar(require("./ScheduledTaskGetResponse"), exports);
|
|
@@ -743,6 +745,9 @@ __exportStar(require("./UserRefLinkDomain"), exports);
|
|
|
743
745
|
__exportStar(require("./UserReferralSourceTypeModel"), exports);
|
|
744
746
|
__exportStar(require("./UserRegistrationStats"), exports);
|
|
745
747
|
__exportStar(require("./UserRoleDomain"), exports);
|
|
748
|
+
__exportStar(require("./UserSocialProfileModel"), exports);
|
|
749
|
+
__exportStar(require("./UserSocialProfileModelReq"), exports);
|
|
750
|
+
__exportStar(require("./UserSocialProfileModelRes"), exports);
|
|
746
751
|
__exportStar(require("./UserSubscriptionPlanModel"), exports);
|
|
747
752
|
__exportStar(require("./UserSubscriptionPlanModelReq"), exports);
|
|
748
753
|
__exportStar(require("./UserSubscriptionPlanModelRes"), exports);
|