@otr-app/shared-backend-generated-client 2.3.71 → 2.3.73
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 +18 -11
- package/dist/angular/api/api.ts +5 -3
- package/dist/angular/api/caseController.service.ts +5 -5
- package/dist/angular/api/violationController.service.ts +504 -0
- package/dist/angular/api/workflowStateController.service.ts +161 -0
- package/dist/angular/api.module.ts +2 -1
- package/dist/angular/model/addActionToCaseResponse.ts +2 -2
- package/dist/angular/model/caseModel.ts +108 -0
- package/dist/angular/model/caseModelReq.ts +108 -0
- package/dist/angular/model/caseModelRes.ts +108 -0
- package/dist/angular/model/citationModel.ts +134 -0
- package/dist/angular/model/citationModelReq.ts +134 -0
- package/dist/angular/model/citationModelRes.ts +134 -0
- package/dist/angular/model/createCitationResponse.ts +2 -2
- package/dist/angular/model/deleteCitationResponse.ts +2 -2
- package/dist/angular/model/getCaseFromCitationResponse.ts +2 -2
- package/dist/angular/model/getCaseResponse.ts +2 -2
- package/dist/angular/model/getCitationResponse.ts +2 -2
- package/dist/angular/model/getCitationsResponse.ts +2 -2
- package/dist/angular/model/getClientCasesResponse.ts +4 -4
- package/dist/angular/model/getDeclinedCasesResponse.ts +2 -2
- package/dist/angular/model/getInvalidCasesWithStripeChargeResponse.ts +2 -2
- package/dist/angular/model/getPendingCasesResponse.ts +2 -2
- package/dist/angular/model/getUserCasesResponse.ts +4 -4
- package/dist/angular/model/lawfirmCaseModel.ts +51 -0
- package/dist/angular/model/lawfirmCaseModelReq.ts +51 -0
- package/dist/angular/model/lawfirmCaseModelRes.ts +51 -0
- package/dist/angular/model/legalServiceModel.ts +49 -0
- package/dist/angular/model/matchInnerCaseModel.ts +1 -1
- package/dist/angular/model/models.ts +16 -10
- package/dist/angular/model/validateDirectMailResponse.ts +2 -1
- package/dist/angular/model/violationModel.ts +10 -6
- package/dist/angular/model/violationPenaltyModel.ts +44 -0
- package/dist/angular/model/workflowCaseModel.ts +34 -0
- package/dist/angular/model/workflowCitationModel.ts +33 -0
- package/dist/angular/model/workflowStateResponse.ts +19 -0
- package/dist/angular/model/workflowViolationModel.ts +87 -0
- package/dist/angular/model/workflowViolationPenaltyModel.ts +40 -0
- package/dist/otrBackendService.js +36 -0
- package/dist/otrBackendService.min.js +1 -1
- package/dist/typescript/api/ActionRequiredControllerApi.ts +58 -0
- package/dist/typescript/api/ActivityFeedControllerApi.ts +71 -0
- package/dist/typescript/api/AddressControllerApi.ts +117 -0
- package/dist/typescript/api/AlertNotificationControllerApi.ts +87 -0
- package/dist/typescript/api/AppEventsControllerApi.ts +58 -0
- package/dist/typescript/api/AuditLawfirmEventsControllerApi.ts +78 -0
- package/dist/typescript/api/AuthenticationControllerApi.ts +51 -0
- package/dist/typescript/api/AwsCredentialsControllerApi.ts +58 -0
- package/dist/typescript/api/BlogWebhookControllerApi.ts +58 -0
- package/dist/typescript/api/BranchLinkControllerApi.ts +58 -0
- package/dist/typescript/api/CaseActionsControllerApi.ts +239 -0
- package/dist/typescript/api/CaseControllerApi.d.ts +1 -1
- package/dist/typescript/api/CaseControllerApi.ts +558 -0
- package/dist/typescript/api/CaseCreationControllerApi.ts +89 -0
- package/dist/typescript/api/CaseNotesControllerApi.ts +94 -0
- package/dist/typescript/api/CasePaymentControllerApi.ts +599 -0
- package/dist/typescript/api/CaseReferralCodeControllerApi.ts +101 -0
- package/dist/typescript/api/CaseRefundControllerApi.ts +173 -0
- package/dist/typescript/api/CaseResolutionControllerApi.ts +58 -0
- package/dist/typescript/api/CaseStatusControllerApi.ts +83 -0
- package/dist/typescript/api/CaseTransferControllerApi.ts +94 -0
- package/dist/typescript/api/CertificateControllerApi.ts +61 -0
- package/dist/typescript/api/CitationAuditControllerApi.ts +78 -0
- package/dist/typescript/api/CitationControllerApi.ts +614 -0
- package/dist/typescript/api/ConfigurationControllerApi.ts +51 -0
- package/dist/typescript/api/ConsoleListControllerApi.ts +479 -0
- package/dist/typescript/api/ContactTimelineControllerApi.ts +58 -0
- package/dist/typescript/api/ConversationControllerApi.ts +287 -0
- package/dist/typescript/api/CountyControllerApi.ts +61 -0
- package/dist/typescript/api/CourtControllerApi.ts +342 -0
- package/dist/typescript/api/CrmControllerApi.ts +269 -0
- package/dist/typescript/api/CustomerLeadControllerApi.ts +58 -0
- package/dist/typescript/api/CustomerReviewControllerApi.ts +301 -0
- package/dist/typescript/api/CustomerServiceAgentBookingsControllerApi.ts +140 -0
- package/dist/typescript/api/CustomerServiceAgentControllerApi.ts +56 -0
- package/dist/typescript/api/DashboardControllerApi.ts +290 -0
- package/dist/typescript/api/DirectMailControllerApi.ts +261 -0
- package/dist/typescript/api/DripControllerApi.ts +58 -0
- package/dist/typescript/api/DripWebhooksControllerApi.ts +87 -0
- package/dist/typescript/api/EmailSubscriptionControllerApi.ts +58 -0
- package/dist/typescript/api/ExternalTicketLookupControllerApi.ts +143 -0
- package/dist/typescript/api/FeedbackControllerApi.ts +63 -0
- package/dist/typescript/api/FreshcallerControllerApi.ts +58 -0
- package/dist/typescript/api/FreshdeskTicketControllerApi.ts +137 -0
- package/dist/typescript/api/GetCaseControllerApi.ts +116 -0
- package/dist/typescript/api/HouseholdMateControllerApi.ts +214 -0
- package/dist/typescript/api/InsuranceCalculatorControllerApi.ts +58 -0
- package/dist/typescript/api/LawfirmCaseDecisionControllerApi.ts +65 -0
- package/dist/typescript/api/LawfirmCasesControllerApi.ts +95 -0
- package/dist/typescript/api/LawfirmControllerApi.ts +799 -0
- package/dist/typescript/api/LawfirmDocumentControllerApi.ts +256 -0
- package/dist/typescript/api/LawfirmFeeCoverageControllerApi.ts +394 -0
- package/dist/typescript/api/LawfirmPaymentModelControllerApi.ts +51 -0
- package/dist/typescript/api/LawfirmRatesControllerApi.ts +58 -0
- package/dist/typescript/api/LawfirmSettingsControllerApi.ts +169 -0
- package/dist/typescript/api/LawfirmStorefrontControllerApi.ts +66 -0
- package/dist/typescript/api/LawfirmSurchargeControllerApi.ts +135 -0
- package/dist/typescript/api/LawfirmTransactionsControllerApi.ts +516 -0
- package/dist/typescript/api/LawyerControllerApi.ts +333 -0
- package/dist/typescript/api/LegalServicesControllerApi.ts +101 -0
- package/dist/typescript/api/LineItemControllerApi.ts +195 -0
- package/dist/typescript/api/ListCasesControllerApi.ts +141 -0
- package/dist/typescript/api/MediaCreationControllerApi.ts +58 -0
- package/dist/typescript/api/MessagesControllerApi.ts +76 -0
- package/dist/typescript/api/NotesControllerApi.ts +277 -0
- package/dist/typescript/api/OcrPredictionControllerApi.ts +58 -0
- package/dist/typescript/api/OnDemandRequestControllerApi.ts +65 -0
- package/dist/typescript/api/OneTimePasswordControllerApi.ts +53 -0
- package/dist/typescript/api/PhoneLeadsControllerApi.ts +87 -0
- package/dist/typescript/api/PushNotificationControllerApi.ts +294 -0
- package/dist/typescript/api/RecurringBillingControllerApi.ts +218 -0
- package/dist/typescript/api/RefLinkControllerApi.ts +58 -0
- package/dist/typescript/api/ReferralCodeControllerApi.ts +201 -0
- package/dist/typescript/api/ReferralControllerApi.ts +112 -0
- package/dist/typescript/api/ReferralSourceControllerApi.ts +85 -0
- package/dist/typescript/api/RefundEligibilityControllerApi.ts +58 -0
- package/dist/typescript/api/RegistrationControllerApi.ts +87 -0
- package/dist/typescript/api/ReportingControllerApi.ts +168 -0
- package/dist/typescript/api/ScheduledTaskControllerApi.ts +123 -0
- package/dist/typescript/api/SingleSignOnControllerApi.ts +91 -0
- package/dist/typescript/api/SnsListenerControllerApi.ts +87 -0
- package/dist/typescript/api/SocialLoginControllerApi.ts +203 -0
- package/dist/typescript/api/StripeCardControllerApi.ts +393 -0
- package/dist/typescript/api/StripeControllerApi.ts +184 -0
- package/dist/typescript/api/StripeSyncControllerApi.ts +196 -0
- package/dist/typescript/api/StripeWebhookControllerApi.ts +77 -0
- package/dist/typescript/api/TicketReviewControllerApi.ts +123 -0
- package/dist/typescript/api/UrlRedirectControllerApi.ts +117 -0
- package/dist/typescript/api/UserAccountControllerApi.ts +137 -0
- package/dist/typescript/api/UserAuditControllerApi.ts +112 -0
- package/dist/typescript/api/UserControllerApi.ts +354 -0
- package/dist/typescript/api/UserPasswordControllerApi.ts +271 -0
- package/dist/typescript/api/UserProfileControllerApi.ts +324 -0
- package/dist/typescript/api/UserSearchControllerApi.ts +87 -0
- package/dist/typescript/api/UserSettingsControllerApi.ts +176 -0
- package/dist/typescript/api/UtilityControllerApi.ts +112 -0
- package/dist/typescript/api/ValidationControllerApi.ts +61 -0
- package/dist/typescript/api/VerificationControllerApi.ts +61 -0
- package/dist/typescript/api/ViolationControllerApi.d.ts +61 -0
- package/dist/typescript/api/ViolationControllerApi.js +195 -0
- package/dist/typescript/api/ViolationControllerApi.ts +224 -0
- package/dist/typescript/api/ViolationPenaltyControllerApi.ts +157 -0
- package/dist/typescript/api/WorkflowStateControllerApi.d.ts +28 -0
- package/dist/typescript/api/WorkflowStateControllerApi.js +56 -0
- package/dist/typescript/api/WorkflowStateControllerApi.ts +61 -0
- package/dist/typescript/api/api.d.ts +5 -3
- package/dist/typescript/api/api.js +5 -3
- package/dist/typescript/api/api.ts +201 -0
- package/dist/typescript/api.module.js +3 -2
- package/dist/typescript/api.module.ts +2 -1
- package/dist/typescript/model/AccountLevelFee.ts +93 -0
- package/dist/typescript/model/AccountLevelFeeRequest.ts +18 -0
- package/dist/typescript/model/AccountLevelFeeResponse.ts +19 -0
- package/dist/typescript/model/AccountLevelFeeToSave.ts +88 -0
- package/dist/typescript/model/ActionByEntityModel.ts +95 -0
- package/dist/typescript/model/ActivityFeedModel.ts +39 -0
- package/dist/typescript/model/AddACHToStripeAccountRequest.ts +20 -0
- package/dist/typescript/model/AddActionToCaseRequest.ts +18 -0
- package/dist/typescript/model/AddActionToCaseResponse.d.ts +1 -1
- package/dist/typescript/model/AddActionToCaseResponse.ts +18 -0
- package/dist/typescript/model/AddCardToStripeAccountRequest.ts +21 -0
- package/dist/typescript/model/AddCardToStripeAccountResponse.ts +20 -0
- package/dist/typescript/model/AddCaseMessageResponse.ts +18 -0
- package/dist/typescript/model/AddCourtCoverageRequest.ts +87 -0
- package/dist/typescript/model/AddCourtRequest.ts +20 -0
- package/dist/typescript/model/AddCustomerLeadRequest.ts +18 -0
- package/dist/typescript/model/AddExtraAccountRequest.ts +20 -0
- package/dist/typescript/model/AddInnerCourt.ts +37 -0
- package/dist/typescript/model/AddInnerCourtAddress.ts +24 -0
- package/dist/typescript/model/AddNewCaseMessageRequest.ts +18 -0
- package/dist/typescript/model/AddNoteToPhoneLeadRequest.ts +34 -0
- package/dist/typescript/model/AddPenaltyRequest.ts +18 -0
- package/dist/typescript/model/AddRedirectUrlRequest.ts +33 -0
- package/dist/typescript/model/AddReviewRequest.ts +40 -0
- package/dist/typescript/model/AddViolationRequest.ts +84 -0
- package/dist/typescript/model/AddViolationResponse.ts +90 -0
- package/dist/typescript/model/AddViolationsToCitationRequest.ts +18 -0
- package/dist/typescript/model/AddressDomain.ts +98 -0
- package/dist/typescript/model/AddressDomainReq.ts +97 -0
- package/dist/typescript/model/AddressDomainRes.ts +98 -0
- package/dist/typescript/model/AgentBookingStats.ts +23 -0
- package/dist/typescript/model/AgentBookingsSummary.ts +20 -0
- package/dist/typescript/model/AggregateBySource.ts +31 -0
- package/dist/typescript/model/AggregateRatingMetrics.ts +21 -0
- package/dist/typescript/model/AggregateReferralCredit.ts +20 -0
- package/dist/typescript/model/Alert.ts +35 -0
- package/dist/typescript/model/AlertNotificationResponse.ts +19 -0
- package/dist/typescript/model/AppEventCreateRequest.ts +27 -0
- package/dist/typescript/model/AppearanceAttorneyDomain.ts +21 -0
- package/dist/typescript/model/AppleLoginRequest.ts +22 -0
- package/dist/typescript/model/AssignCitationOwnerRequest.ts +18 -0
- package/dist/typescript/model/AuthorModel.ts +32 -0
- package/dist/typescript/model/AuthorizeChargeForCasePaymentRequest.ts +19 -0
- package/dist/typescript/model/AuthorizeChargeForCasePaymentResponse.ts +18 -0
- package/dist/typescript/model/AvailablePaymentPlan.ts +27 -0
- package/dist/typescript/model/AvailableRegion.ts +19 -0
- package/dist/typescript/model/AwsCredentialsRequest.ts +23 -0
- package/dist/typescript/model/BackfillLawfirmTransactionRecordsRequest.ts +22 -0
- package/dist/typescript/model/BackfillLawfirmTransactionRecordsResponse.ts +18 -0
- package/dist/typescript/model/BillingInvoiceModel.ts +32 -0
- package/dist/typescript/model/BillingPriceModel.ts +42 -0
- package/dist/typescript/model/BillingProductModel.ts +24 -0
- package/dist/typescript/model/BillingSubscriberAggregateModel.ts +20 -0
- package/dist/typescript/model/BillingSubscriberModel.ts +23 -0
- package/dist/typescript/model/BillingSubscriptionItemModel.ts +49 -0
- package/dist/typescript/model/BillingSubscriptionModel.ts +38 -0
- package/dist/typescript/model/BillingUpcomingInvoiceModel.ts +21 -0
- package/dist/typescript/model/BlogDocument.ts +20 -0
- package/dist/typescript/model/BlogEvent.ts +21 -0
- package/dist/typescript/model/BlogMetadata.ts +20 -0
- package/dist/typescript/model/Booking.ts +125 -0
- package/dist/typescript/model/BookingCancelation.ts +127 -0
- package/dist/typescript/model/CallContact.ts +69 -0
- package/dist/typescript/model/CancelBillingSubscriptionResponse.ts +34 -0
- package/dist/typescript/model/CancelCaseRequest.ts +62 -0
- package/dist/typescript/model/CancelationDetails.ts +21 -0
- package/dist/typescript/model/CancelationDetailsReq.ts +21 -0
- package/dist/typescript/model/CancelationDetailsRes.ts +21 -0
- package/dist/typescript/model/CaptureChargeFromCasePaymentRequest.ts +19 -0
- package/dist/typescript/model/Case.ts +117 -0
- package/dist/typescript/model/CaseActionDomain.ts +46 -0
- package/dist/typescript/model/CaseActionRequestModel.ts +39 -0
- package/dist/typescript/model/CaseAlert.ts +36 -0
- package/dist/typescript/model/CaseBookingsStats.ts +25 -0
- package/dist/typescript/model/CaseChargeResponsePojo.ts +19 -0
- package/dist/typescript/model/CaseCreationRequest.ts +22 -0
- package/dist/typescript/model/CaseLineItemDomainReq.ts +61 -0
- package/dist/typescript/model/CaseLineItemDomainRes.ts +61 -0
- package/dist/typescript/model/CaseLineItemsSummary.ts +30 -0
- package/dist/typescript/model/CaseMessageDomain.ts +42 -0
- package/dist/typescript/model/CaseModel.d.ts +93 -0
- package/dist/typescript/model/CaseModel.js +69 -0
- package/dist/typescript/model/CaseModel.ts +96 -0
- package/dist/typescript/model/CaseModelReq.d.ts +93 -0
- package/dist/typescript/model/CaseModelReq.js +69 -0
- package/dist/typescript/model/CaseModelReq.ts +96 -0
- package/dist/typescript/model/CaseModelRes.d.ts +93 -0
- package/dist/typescript/model/CaseModelRes.js +69 -0
- package/dist/typescript/model/CaseModelRes.ts +96 -0
- package/dist/typescript/model/CaseNotesDomain.ts +19 -0
- package/dist/typescript/model/CasePaymentDomain.ts +64 -0
- package/dist/typescript/model/CasePaymentModel.ts +20 -0
- package/dist/typescript/model/CaseStatusDetailsResponse.ts +67 -0
- package/dist/typescript/model/CaseStatusDomain.ts +73 -0
- package/dist/typescript/model/CaseSummaryDomain.ts +46 -0
- package/dist/typescript/model/CaseTransferHistory.ts +43 -0
- package/dist/typescript/model/CaseTransferResponse.ts +18 -0
- package/dist/typescript/model/CaseViolationPenalty.ts +39 -0
- package/dist/typescript/model/CaseWithCoverageObtained.ts +89 -0
- package/dist/typescript/model/ChangeUserPasswordRequest.ts +20 -0
- package/dist/typescript/model/ChargeFeeToLawfirmRequest.ts +44 -0
- package/dist/typescript/model/ChargeFeeToLawfirmResponse.ts +18 -0
- package/dist/typescript/model/CitationAuditEventModel.ts +91 -0
- package/dist/typescript/model/CitationInputRequest.ts +94 -0
- package/dist/typescript/model/CitationModel.d.ts +123 -0
- package/dist/typescript/model/CitationModel.js +99 -0
- package/dist/typescript/model/CitationModel.ts +126 -0
- package/dist/typescript/model/CitationModelReq.d.ts +123 -0
- package/dist/typescript/model/CitationModelReq.js +99 -0
- package/dist/typescript/model/CitationModelReq.ts +126 -0
- package/dist/typescript/model/CitationModelRes.d.ts +123 -0
- package/dist/typescript/model/CitationModelRes.js +99 -0
- package/dist/typescript/model/CitationModelRes.ts +126 -0
- package/dist/typescript/model/CitationViolationModel.ts +84 -0
- package/dist/typescript/model/CitationWithMissingCourt.ts +76 -0
- package/dist/typescript/model/CitationWithMissingFields.ts +103 -0
- package/dist/typescript/model/CitationsResponseModel.ts +202 -0
- package/dist/typescript/model/ClientActionRequiredRequest.ts +27 -0
- package/dist/typescript/model/ClientConfirmedUnpaidCase.ts +28 -0
- package/dist/typescript/model/ClientLeadDomain.ts +24 -0
- package/dist/typescript/model/CommonHeader.ts +22 -0
- package/dist/typescript/model/ConfidenceField.ts +19 -0
- package/dist/typescript/model/ContactTimelineResponse.ts +20 -0
- package/dist/typescript/model/ConvertPdfToImageModel.ts +26 -0
- package/dist/typescript/model/ConvertPdfToImageRequest.ts +20 -0
- package/dist/typescript/model/ConvertPdfToImageResponse.ts +20 -0
- package/dist/typescript/model/CountryDomain.ts +19 -0
- package/dist/typescript/model/CountryRegion.ts +22 -0
- package/dist/typescript/model/CountyDomain.ts +75 -0
- package/dist/typescript/model/CourtCoverageCountyRecord.ts +26 -0
- package/dist/typescript/model/CourtCoverageRecord.ts +29 -0
- package/dist/typescript/model/CourtCoverageStateRecord.ts +25 -0
- package/dist/typescript/model/CourtDomain.ts +43 -0
- package/dist/typescript/model/CourtDomainReq.ts +43 -0
- package/dist/typescript/model/CourtDomainRes.ts +43 -0
- package/dist/typescript/model/CourtInputRequest.ts +18 -0
- package/dist/typescript/model/CourtResponseModel.ts +39 -0
- package/dist/typescript/model/CoverageToRemove.ts +82 -0
- package/dist/typescript/model/CreateBillingSubscriptionItemModel.ts +49 -0
- package/dist/typescript/model/CreateBillingSubscriptionRequest.ts +19 -0
- package/dist/typescript/model/CreateBillingSubscriptionResponse.ts +33 -0
- package/dist/typescript/model/CreateBranchLinkRequest.ts +26 -0
- package/dist/typescript/model/CreateCitationRequest.ts +100 -0
- package/dist/typescript/model/CreateCitationResponse.d.ts +1 -1
- package/dist/typescript/model/CreateCitationResponse.ts +18 -0
- package/dist/typescript/model/CreateConnectAccountLinkRequest.ts +20 -0
- package/dist/typescript/model/CreateConnectAccountLinkResponse.ts +18 -0
- package/dist/typescript/model/CreateLawfirmModel.ts +59 -0
- package/dist/typescript/model/CreateNewLawfirmRequest.ts +22 -0
- package/dist/typescript/model/CreateNoteInput.ts +28 -0
- package/dist/typescript/model/CreateNoteRequest.ts +18 -0
- package/dist/typescript/model/CreateNoteResponse.ts +18 -0
- package/dist/typescript/model/CreateReferralCodeRequest.ts +39 -0
- package/dist/typescript/model/CreateReferralCodeResponse.ts +18 -0
- package/dist/typescript/model/CreateReferralSourceForCitation.ts +18 -0
- package/dist/typescript/model/CreateStripeConnectAccountRequest.ts +25 -0
- package/dist/typescript/model/CreateStripeConnectAccountResponse.ts +19 -0
- package/dist/typescript/model/Cursor.ts +19 -0
- package/dist/typescript/model/CursorModel.ts +19 -0
- package/dist/typescript/model/CustomerLead.ts +95 -0
- package/dist/typescript/model/CustomerOverduePayment.ts +24 -0
- package/dist/typescript/model/CustomerReview.ts +56 -0
- package/dist/typescript/model/CustomerServiceAgentBookingDomain.ts +24 -0
- package/dist/typescript/model/CustomerServiceAgentDomain.ts +24 -0
- package/dist/typescript/model/DashboardAddressModel.ts +22 -0
- package/dist/typescript/model/DashboardAuthorModel.ts +20 -0
- package/dist/typescript/model/DashboardCaseModel.ts +30 -0
- package/dist/typescript/model/DashboardCitationModel.ts +34 -0
- package/dist/typescript/model/DashboardCourtModel.ts +19 -0
- package/dist/typescript/model/DashboardStatusModel.ts +68 -0
- package/dist/typescript/model/DefaultClassModel.ts +80 -0
- package/dist/typescript/model/DeleteCitationResponse.d.ts +1 -1
- package/dist/typescript/model/DeleteCitationResponse.ts +18 -0
- package/dist/typescript/model/DeleteLawyerLicenseRequest.ts +18 -0
- package/dist/typescript/model/DeleteNotificationByPagesRequest.ts +28 -0
- package/dist/typescript/model/DeleteNotificationEventRequest.ts +29 -0
- package/dist/typescript/model/DirectMailContact.ts +42 -0
- package/dist/typescript/model/DirectMailContactResponse.ts +18 -0
- package/dist/typescript/model/DirectMailGetRequest.ts +19 -0
- package/dist/typescript/model/DirectMailSendRequest.ts +28 -0
- package/dist/typescript/model/DirectMailTemplate.ts +30 -0
- package/dist/typescript/model/DirectMailTemplateResponse.ts +18 -0
- package/dist/typescript/model/DirectMailTemplateToAdd.ts +30 -0
- package/dist/typescript/model/DismissCitationsFromContactListRequest.ts +18 -0
- package/dist/typescript/model/DismissPhoneLeadRequest.ts +33 -0
- package/dist/typescript/model/DocumentDecisionRequest.ts +19 -0
- package/dist/typescript/model/DripRemoveRequest.ts +27 -0
- package/dist/typescript/model/DripWebhookData.ts +20 -0
- package/dist/typescript/model/DripWebhookEvent.ts +20 -0
- package/dist/typescript/model/Duration.ts +22 -0
- package/dist/typescript/model/EditConversationMessageRequest.ts +18 -0
- package/dist/typescript/model/EnableViolationModel.ts +81 -0
- package/dist/typescript/model/EnableViolationResponseModel.ts +18 -0
- package/dist/typescript/model/EnableViolationsForLawfirmRequest.ts +18 -0
- package/dist/typescript/model/EnableViolationsForLawfirmResponse.ts +18 -0
- package/dist/typescript/model/EstimateInsuranceSavingsRequest.ts +76 -0
- package/dist/typescript/model/EstimateInsuranceSavingsResponse.ts +20 -0
- package/dist/typescript/model/ExternalTicketCourt.ts +21 -0
- package/dist/typescript/model/FeedbackAttachmentModel.ts +19 -0
- package/dist/typescript/model/FeedbackDomain.ts +31 -0
- package/dist/typescript/model/FinancialTransaction.ts +61 -0
- package/dist/typescript/model/FindChargeDisputesResponse.ts +18 -0
- package/dist/typescript/model/FindCourtsWithNoCoverageResponse.ts +19 -0
- package/dist/typescript/model/FindDisputesRequest.ts +19 -0
- package/dist/typescript/model/FindMatchingUser.ts +43 -0
- package/dist/typescript/model/FindMatchingUsersRequest.ts +22 -0
- package/dist/typescript/model/FindMatchingUsersResponse.ts +18 -0
- package/dist/typescript/model/FindsCourtsResponse.ts +19 -0
- package/dist/typescript/model/FreshDeskConversation.ts +23 -0
- package/dist/typescript/model/FreshDeskRequester.ts +19 -0
- package/dist/typescript/model/FreshDeskTicket.ts +77 -0
- package/dist/typescript/model/FreshDeskTicketReq.ts +78 -0
- package/dist/typescript/model/FreshDeskTicketRes.ts +77 -0
- package/dist/typescript/model/FreshdeskAttachment.ts +24 -0
- package/dist/typescript/model/FreshdeskAttachmentReq.ts +24 -0
- package/dist/typescript/model/FreshdeskAttachmentRes.ts +24 -0
- package/dist/typescript/model/FreshdeskTicketReferenceDomain.ts +40 -0
- package/dist/typescript/model/FreshdeskWebhookRequest.ts +26 -0
- package/dist/typescript/model/FuturePayment.ts +34 -0
- package/dist/typescript/model/GenerateTemplateRequest.ts +62 -0
- package/dist/typescript/model/GenericAdminListRequest.ts +18 -0
- package/dist/typescript/model/GeoRatesRequest.ts +23 -0
- package/dist/typescript/model/GetActivityFeedResponse.ts +19 -0
- package/dist/typescript/model/GetAddressInnerResponse.ts +24 -0
- package/dist/typescript/model/GetAppConfigResponse.ts +19 -0
- package/dist/typescript/model/GetAppearanceAttorneysResponse.ts +18 -0
- package/dist/typescript/model/GetAvailablePaymentPlansResponse.ts +18 -0
- package/dist/typescript/model/GetBookingsRequest.ts +20 -0
- package/dist/typescript/model/GetBookingsResponse.ts +22 -0
- package/dist/typescript/model/GetCaseActionResponse.ts +18 -0
- package/dist/typescript/model/GetCaseActionTimelineResponse.ts +19 -0
- package/dist/typescript/model/GetCaseActionTypesResponse.ts +37 -0
- package/dist/typescript/model/GetCaseCostsAttorneyResponse.ts +23 -0
- package/dist/typescript/model/GetCaseDocumentResponse.ts +18 -0
- package/dist/typescript/model/GetCaseFromCitationResponse.d.ts +1 -1
- package/dist/typescript/model/GetCaseFromCitationResponse.ts +20 -0
- package/dist/typescript/model/GetCaseMessagesResponse.ts +19 -0
- package/dist/typescript/model/GetCaseNotesResponse.ts +18 -0
- package/dist/typescript/model/GetCasePaymentsResponse.ts +18 -0
- package/dist/typescript/model/GetCaseResolutionStatusesResponse.ts +18 -0
- package/dist/typescript/model/GetCaseResponse.d.ts +1 -1
- package/dist/typescript/model/GetCaseResponse.ts +20 -0
- package/dist/typescript/model/GetCasesWithCoverageObtainedResponse.ts +18 -0
- package/dist/typescript/model/GetCasesWithMissingLawfirmPayoutsResponse.ts +19 -0
- package/dist/typescript/model/GetCasesWithOverduePaymentsResponse.ts +19 -0
- package/dist/typescript/model/GetCasesWithUncapturedChargesRequest.ts +19 -0
- package/dist/typescript/model/GetCitationPhoneLeadsRequest.ts +18 -0
- package/dist/typescript/model/GetCitationPhoneLeadsResponse.ts +18 -0
- package/dist/typescript/model/GetCitationResponse.d.ts +1 -1
- package/dist/typescript/model/GetCitationResponse.ts +18 -0
- package/dist/typescript/model/GetCitationsResponse.d.ts +1 -1
- package/dist/typescript/model/GetCitationsResponse.ts +18 -0
- package/dist/typescript/model/GetCitationsWithMissingFieldsRequest.ts +81 -0
- package/dist/typescript/model/GetCitationsWithMissingFieldsResponse.ts +23 -0
- package/dist/typescript/model/GetClientCasesResponse.d.ts +2 -2
- package/dist/typescript/model/GetClientCasesResponse.ts +22 -0
- package/dist/typescript/model/GetClientConfirmedUnpaidCasesResponse.ts +19 -0
- package/dist/typescript/model/GetCompetitionResponseModel.ts +21 -0
- package/dist/typescript/model/GetCountOfMatchingUsersRequest.ts +18 -0
- package/dist/typescript/model/GetCountOfMatchingUsersResponse.ts +18 -0
- package/dist/typescript/model/GetCountiesResponse.ts +18 -0
- package/dist/typescript/model/GetCountryListResponse.ts +18 -0
- package/dist/typescript/model/GetCountryRegionsResponse.ts +18 -0
- package/dist/typescript/model/GetCourtCoverageForCountyReportResponse.ts +18 -0
- package/dist/typescript/model/GetCourtCoverageForStateReportResponse.ts +19 -0
- package/dist/typescript/model/GetCourtCoverageReportResponse.ts +18 -0
- package/dist/typescript/model/GetCourtResponse.ts +18 -0
- package/dist/typescript/model/GetCourtsByQueryResponse.ts +19 -0
- package/dist/typescript/model/GetCourtsInnerResponse.ts +22 -0
- package/dist/typescript/model/GetCurrentUserResponse.ts +23 -0
- package/dist/typescript/model/GetCustomerServiceAgentsResponse.ts +19 -0
- package/dist/typescript/model/GetDeclinedCasesRequest.ts +18 -0
- package/dist/typescript/model/GetDeclinedCasesResponse.d.ts +1 -1
- package/dist/typescript/model/GetDeclinedCasesResponse.ts +18 -0
- package/dist/typescript/model/GetDocumentsRequest.ts +18 -0
- package/dist/typescript/model/GetEmailTemplateResponse.ts +19 -0
- package/dist/typescript/model/GetExternalTicketInputParamsResponse.ts +18 -0
- package/dist/typescript/model/GetExternalTicketModel.ts +30 -0
- package/dist/typescript/model/GetExternalTicketsResponse.ts +27 -0
- package/dist/typescript/model/GetHouseHoldMateModel.ts +39 -0
- package/dist/typescript/model/GetHouseholdMatesResponse.ts +18 -0
- package/dist/typescript/model/GetInvalidCasesWithStripeChargeResponse.d.ts +1 -1
- package/dist/typescript/model/GetInvalidCasesWithStripeChargeResponse.ts +18 -0
- package/dist/typescript/model/GetInviteByTokenResponse.ts +43 -0
- package/dist/typescript/model/GetLastLoginResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmAddressesResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmCaseStatsResponse.ts +20 -0
- package/dist/typescript/model/GetLawfirmCoverageReportResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmCoverageResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmFeeCoverageModel.ts +32 -0
- package/dist/typescript/model/GetLawfirmFeeCoverageResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmFeeModel.ts +92 -0
- package/dist/typescript/model/GetLawfirmFeesResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmFinancialTransactionsResponse.ts +27 -0
- package/dist/typescript/model/GetLawfirmInboxMessagesResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmJobTitleResponse.ts +35 -0
- package/dist/typescript/model/GetLawfirmLawyersResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmLeadsRequest.ts +18 -0
- package/dist/typescript/model/GetLawfirmLeadsResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmModel.ts +121 -0
- package/dist/typescript/model/GetLawfirmPaymentMethodsResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmPayoutReversalsResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmPayoutsResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmSettingsResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmSummaryCaseRequest.ts +110 -0
- package/dist/typescript/model/GetLawfirmSummaryCasesResponse.ts +25 -0
- package/dist/typescript/model/GetLawfirmSupportedStatesResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmTransactionsForCaseResponse.ts +24 -0
- package/dist/typescript/model/GetLawfirmsResponse.ts +19 -0
- package/dist/typescript/model/GetLawyerResponse.ts +18 -0
- package/dist/typescript/model/GetLineItemTypesResponse.ts +38 -0
- package/dist/typescript/model/GetLineItemsResponse.ts +19 -0
- package/dist/typescript/model/GetListOfCitationsWithMissingCourtResponse.ts +18 -0
- package/dist/typescript/model/GetLocationResponse.ts +22 -0
- package/dist/typescript/model/GetLostCasesWithTransferNotReversedRequest.ts +20 -0
- package/dist/typescript/model/GetLostCasesWithTransferNotReversedResponse.ts +18 -0
- package/dist/typescript/model/GetMessagesByEntityResponse.ts +21 -0
- package/dist/typescript/model/GetNoViolationCitationsResponse.ts +18 -0
- package/dist/typescript/model/GetOutgoingContactsResponse.ts +18 -0
- package/dist/typescript/model/GetOverduePaymentsResponse.ts +19 -0
- package/dist/typescript/model/GetPaymentMethodsForUserResponse.ts +19 -0
- package/dist/typescript/model/GetPaymentModelTypesResponse.ts +25 -0
- package/dist/typescript/model/GetPenaltyType.ts +38 -0
- package/dist/typescript/model/GetPenaltyTypesResponse.ts +18 -0
- package/dist/typescript/model/GetPendingCasesResponse.d.ts +1 -1
- package/dist/typescript/model/GetPendingCasesResponse.ts +18 -0
- package/dist/typescript/model/GetPendingTicketReviewsRequest.ts +20 -0
- package/dist/typescript/model/GetPendingTicketReviewsResponse.ts +18 -0
- package/dist/typescript/model/GetPotentialCustomersRequest.ts +21 -0
- package/dist/typescript/model/GetPotentialCustomersResponse.ts +19 -0
- package/dist/typescript/model/GetRedirectUrlResponse.ts +21 -0
- package/dist/typescript/model/GetReferralCodeResponse.ts +39 -0
- package/dist/typescript/model/GetReferralCodesResponse.ts +18 -0
- package/dist/typescript/model/GetReferralsHistoryResponse.ts +18 -0
- package/dist/typescript/model/GetRegionsWithViolationsResponse.ts +18 -0
- package/dist/typescript/model/GetStripeChargeResponse.ts +18 -0
- package/dist/typescript/model/GetStripeChargesResponse.ts +18 -0
- package/dist/typescript/model/GetStripeConnectedAccountsResponse.ts +18 -0
- package/dist/typescript/model/GetSupportTicketsResponse.ts +18 -0
- package/dist/typescript/model/GetTicketReviewResponse.ts +18 -0
- package/dist/typescript/model/GetTrafficViolationModel.ts +95 -0
- package/dist/typescript/model/GetTrafficViolationTypesResponse.ts +19 -0
- package/dist/typescript/model/GetUserAddressesResponse.ts +18 -0
- package/dist/typescript/model/GetUserCasesResponse.d.ts +2 -2
- package/dist/typescript/model/GetUserCasesResponse.ts +21 -0
- package/dist/typescript/model/GetUserDetailsResponse.ts +19 -0
- package/dist/typescript/model/GetUserRefLinksResponse.ts +18 -0
- package/dist/typescript/model/GetUserReferralSourceTypesResponse.ts +18 -0
- package/dist/typescript/model/GetUserRegistrationsRequest.ts +20 -0
- package/dist/typescript/model/GetUserRegistrationsResponse.ts +19 -0
- package/dist/typescript/model/GetUserResponse.ts +18 -0
- package/dist/typescript/model/GetUserSettingsRequest.ts +18 -0
- package/dist/typescript/model/GetUserSettingsResponse.ts +19 -0
- package/dist/typescript/model/GetUserStripeAccountResponse.ts +18 -0
- package/dist/typescript/model/GhostUser.ts +44 -0
- package/dist/typescript/model/GhostUserResponse.ts +43 -0
- package/dist/typescript/model/GoogleLoginRequest.ts +18 -0
- package/dist/typescript/model/GraphRequest.ts +63 -0
- package/dist/typescript/model/HandleOrphanedStripeChargeRequest.ts +19 -0
- package/dist/typescript/model/HandleOrphanedStripeChargeResponse.ts +20 -0
- package/dist/typescript/model/IncomingEmail.ts +24 -0
- package/dist/typescript/model/IncomingEmailModels.ts +20 -0
- package/dist/typescript/model/IncomingEmailRequest.ts +22 -0
- package/dist/typescript/model/IncomingHeader.ts +19 -0
- package/dist/typescript/model/InitiateCaseAndChargeCustomerRequest.ts +26 -0
- package/dist/typescript/model/InitiateCaseAndChargeCustomerResponse.ts +19 -0
- package/dist/typescript/model/InsertCaseLineItemResponse.ts +18 -0
- package/dist/typescript/model/InsertInvoiceLineItemRequest.ts +18 -0
- package/dist/typescript/model/InviteHouseholdMateRequest.ts +29 -0
- package/dist/typescript/model/InviteLawyerToLawfirmRequest.ts +27 -0
- package/dist/typescript/model/IsRefundEligibleResponse.ts +25 -0
- package/dist/typescript/model/IsUserLoggedInResponse.ts +19 -0
- package/dist/typescript/model/LastLoginDateModel.ts +42 -0
- package/dist/typescript/model/LawfirmAuditEventModel.ts +91 -0
- package/dist/typescript/model/LawfirmBookingSummary.ts +79 -0
- package/dist/typescript/model/LawfirmCaseDocument.ts +36 -0
- package/dist/typescript/model/LawfirmCaseModel.d.ts +44 -0
- package/dist/typescript/model/LawfirmCaseModel.js +33 -0
- package/dist/typescript/model/LawfirmCaseModel.ts +47 -0
- package/dist/typescript/model/LawfirmCaseModelReq.d.ts +44 -0
- package/dist/typescript/model/LawfirmCaseModelReq.js +33 -0
- package/dist/typescript/model/LawfirmCaseModelReq.ts +47 -0
- package/dist/typescript/model/LawfirmCaseModelRes.d.ts +44 -0
- package/dist/typescript/model/LawfirmCaseModelRes.js +33 -0
- package/dist/typescript/model/LawfirmCaseModelRes.ts +47 -0
- package/dist/typescript/model/LawfirmCourtCoverageDomain.ts +33 -0
- package/dist/typescript/model/LawfirmCoverageRecord.ts +28 -0
- package/dist/typescript/model/LawfirmDocument.ts +36 -0
- package/dist/typescript/model/LawfirmDocumentResponse.ts +18 -0
- package/dist/typescript/model/LawfirmDocumentTemplate.ts +35 -0
- package/dist/typescript/model/LawfirmDocumentTemplateResponse.ts +18 -0
- package/dist/typescript/model/LawfirmFeeDomain.ts +52 -0
- package/dist/typescript/model/LawfirmInboxMessageDomain.ts +105 -0
- package/dist/typescript/model/LawfirmLeadDomain.ts +109 -0
- package/dist/typescript/model/LawfirmPayoutDomain.ts +48 -0
- package/dist/typescript/model/LawfirmPictureRequest.ts +20 -0
- package/dist/typescript/model/LawfirmRatesResponse.ts +51 -0
- package/dist/typescript/model/LawfirmRedirectModel.ts +27 -0
- package/dist/typescript/model/LawfirmSettingsDomain.ts +40 -0
- package/dist/typescript/model/LawfirmSettingsDomainReq.ts +40 -0
- package/dist/typescript/model/LawfirmSettingsDomainRes.ts +40 -0
- package/dist/typescript/model/LawfirmStorefrontModel.ts +53 -0
- package/dist/typescript/model/LawfirmVacationRequest.ts +21 -0
- package/dist/typescript/model/LawfirmsRatesResponse.ts +18 -0
- package/dist/typescript/model/LawyerInviteByTokenModel.ts +20 -0
- package/dist/typescript/model/LawyerInviteModel.ts +38 -0
- package/dist/typescript/model/LawyerLicenseModel.ts +79 -0
- package/dist/typescript/model/LawyerModel.ts +60 -0
- package/dist/typescript/model/LegalServiceModel.d.ts +42 -0
- package/dist/typescript/model/LegalServiceModel.js +31 -0
- package/dist/typescript/model/LegalServiceModel.ts +46 -0
- package/dist/typescript/model/LetterOfEngagement.ts +20 -0
- package/dist/typescript/model/LineItem.ts +40 -0
- package/dist/typescript/model/LineItemModel.ts +46 -0
- package/dist/typescript/model/LineItemRequest.ts +49 -0
- package/dist/typescript/model/ListAgentBookingsResponse.ts +20 -0
- package/dist/typescript/model/ListBillingProductsResponse.ts +18 -0
- package/dist/typescript/model/ListBillingSubscribersRequest.ts +18 -0
- package/dist/typescript/model/ListBillingSubscribersResponse.ts +19 -0
- package/dist/typescript/model/ListBillingSubscriptionModel.ts +42 -0
- package/dist/typescript/model/ListBillingSubscriptionsResponse.ts +19 -0
- package/dist/typescript/model/ListCitationAuditEventsResponse.ts +20 -0
- package/dist/typescript/model/ListCitationsRequest.ts +104 -0
- package/dist/typescript/model/ListCitationsResponse.ts +20 -0
- package/dist/typescript/model/ListContactTimelineResponse.ts +18 -0
- package/dist/typescript/model/ListCostItemsForCustomerResponse.ts +22 -0
- package/dist/typescript/model/ListDashboardCasesResponse.ts +19 -0
- package/dist/typescript/model/ListEligibleStatusResponse.ts +59 -0
- package/dist/typescript/model/ListLawfirmAuditEventsByCursorResponse.ts +20 -0
- package/dist/typescript/model/ListLawfirmStorefrontsResponse.ts +20 -0
- package/dist/typescript/model/ListLawfirmSurchargeModel.ts +40 -0
- package/dist/typescript/model/ListLawfirmSurchargeTypeModel.ts +30 -0
- package/dist/typescript/model/ListLawfirmSurchargesResponse.ts +18 -0
- package/dist/typescript/model/ListNotesResponse.ts +21 -0
- package/dist/typescript/model/ListReferralsResponse.ts +19 -0
- package/dist/typescript/model/ListReviewsResponse.ts +20 -0
- package/dist/typescript/model/ListSubscriptionInvoicesResponse.ts +18 -0
- package/dist/typescript/model/ListUserAuditEventsByCursorResponse.ts +20 -0
- package/dist/typescript/model/ListUserAuditEventsCursorModel.ts +18 -0
- package/dist/typescript/model/ListViolationClassificationResponse.ts +18 -0
- package/dist/typescript/model/LobEvent.ts +20 -0
- package/dist/typescript/model/LobEventRequest.ts +21 -0
- package/dist/typescript/model/LobMailingAddress.ts +23 -0
- package/dist/typescript/model/LocalTime.ts +21 -0
- package/dist/typescript/model/LookupParamValue.ts +33 -0
- package/dist/typescript/model/LostCaseWithTransferNotReversed.ts +43 -0
- package/dist/typescript/model/MarkActionAsDeletedResponse.ts +18 -0
- package/dist/typescript/model/MarkCaseAsResolvedRequest.ts +63 -0
- package/dist/typescript/model/MarkCaseAsResolvedResponse.ts +70 -0
- package/dist/typescript/model/MatchCaseResponse.ts +20 -0
- package/dist/typescript/model/MatchCaseViolationPenaltyModel.ts +39 -0
- package/dist/typescript/model/MatchCitationModel.ts +28 -0
- package/dist/typescript/model/MatchCitationResponse.ts +28 -0
- package/dist/typescript/model/MatchInnerCaseModel.d.ts +1 -1
- package/dist/typescript/model/MatchInnerCaseModel.ts +30 -0
- package/dist/typescript/model/MatchInnerCaseResponse.ts +36 -0
- package/dist/typescript/model/MatchLawfirmCaseResponse.ts +22 -0
- package/dist/typescript/model/MatchLegalServiceModel.ts +46 -0
- package/dist/typescript/model/MatchLegalServicesRequest.ts +34 -0
- package/dist/typescript/model/MatchLegalServicesResponse.ts +19 -0
- package/dist/typescript/model/MatchingFieldValue.ts +26 -0
- package/dist/typescript/model/MediaItemModel.ts +29 -0
- package/dist/typescript/model/MergeStatusReport.ts +19 -0
- package/dist/typescript/model/MergeTableChange.ts +18 -0
- package/dist/typescript/model/MergeTableRecord.ts +19 -0
- package/dist/typescript/model/MergeTicketResponse.ts +20 -0
- package/dist/typescript/model/MergeUserRequest.ts +19 -0
- package/dist/typescript/model/MergeUserResponse.ts +18 -0
- package/dist/typescript/model/MessageByEntityModel.ts +80 -0
- package/dist/typescript/model/MessageInputModel.ts +35 -0
- package/dist/typescript/model/MissingLawfirmPayoutResult.ts +123 -0
- package/dist/typescript/model/MissingPaymentDomain.ts +82 -0
- package/dist/typescript/model/NewUser.ts +36 -0
- package/dist/typescript/model/NewUserResponse.ts +22 -0
- package/dist/typescript/model/NoLawyerAvailableRequest.ts +19 -0
- package/dist/typescript/model/NoViolationCitation.ts +66 -0
- package/dist/typescript/model/NoteAuthor.ts +20 -0
- package/dist/typescript/model/NoteEntity.ts +33 -0
- package/dist/typescript/model/NoteModel.ts +33 -0
- package/dist/typescript/model/NotificationEvent.ts +23 -0
- package/dist/typescript/model/NotificationEvents.ts +19 -0
- package/dist/typescript/model/OCRPredictionCaseResponse.ts +63 -0
- package/dist/typescript/model/OutgoingContactDomain.ts +29 -0
- package/dist/typescript/model/PaymentPlanTypeModel.ts +26 -0
- package/dist/typescript/model/PaymentPlanTypeModelReq.ts +26 -0
- package/dist/typescript/model/PaymentPlanTypeModelRes.ts +26 -0
- package/dist/typescript/model/Penalty.ts +43 -0
- package/dist/typescript/model/PenaltyModel.ts +42 -0
- package/dist/typescript/model/PenaltyRequest.ts +19 -0
- package/dist/typescript/model/PersistTicketEvaluationRequest.ts +31 -0
- package/dist/typescript/model/PhoneNumberDomain.ts +46 -0
- package/dist/typescript/model/PhoneNumberDomainReq.ts +46 -0
- package/dist/typescript/model/PhoneNumberDomainRes.ts +46 -0
- package/dist/typescript/model/PostCourtCoverageRequest.ts +18 -0
- package/dist/typescript/model/PostFeedbackRequest.ts +18 -0
- package/dist/typescript/model/PotentialCustomerDomain.ts +136 -0
- package/dist/typescript/model/PredictCitationTextRequest.ts +25 -0
- package/dist/typescript/model/PreviewDocumentRequest.ts +20 -0
- package/dist/typescript/model/PriceMatchRequest.ts +24 -0
- package/dist/typescript/model/PriceMatchResponse.ts +28 -0
- package/dist/typescript/model/PublishReferralContactsResponse.ts +18 -0
- package/dist/typescript/model/PublishReferralRequest.ts +19 -0
- package/dist/typescript/model/PureDate.ts +18 -0
- package/dist/typescript/model/PushNotificationRegistrationRequest.ts +26 -0
- package/dist/typescript/model/PushNotificationRequest.ts +35 -0
- package/dist/typescript/model/PutDocumentRequest.ts +33 -0
- package/dist/typescript/model/ReferralContact.ts +20 -0
- package/dist/typescript/model/ReferralContactStatus.ts +27 -0
- package/dist/typescript/model/ReferralResponse.ts +77 -0
- package/dist/typescript/model/ReferralResponseByUser.ts +30 -0
- package/dist/typescript/model/RefundCasePaymentRequest.ts +31 -0
- package/dist/typescript/model/RefundLawfirmFeeRequest.ts +32 -0
- package/dist/typescript/model/RegisterGhostUserRequest.ts +29 -0
- package/dist/typescript/model/RegisterGhostUserResponse.ts +18 -0
- package/dist/typescript/model/RegisterNewUserRequest.ts +59 -0
- package/dist/typescript/model/RegisterNewUserResponse.ts +21 -0
- package/dist/typescript/model/RemoveCoverageRequest.ts +18 -0
- package/dist/typescript/model/RemoveLawfirmSurchargeRequest.ts +18 -0
- package/dist/typescript/model/ReplyToReviewRequest.ts +19 -0
- package/dist/typescript/model/ReplyToTicketRequest.ts +35 -0
- package/dist/typescript/model/RescheduleTaskRequest.ts +18 -0
- package/dist/typescript/model/ResetFeeForLawfirmModel.ts +18 -0
- package/dist/typescript/model/ResetFeesForLawfirmRequest.ts +18 -0
- package/dist/typescript/model/ResetFeesForLawfirmResponse.ts +18 -0
- package/dist/typescript/model/ResetUserPasswordRequest.ts +19 -0
- package/dist/typescript/model/ResetViolationModel.ts +81 -0
- package/dist/typescript/model/Results.ts +18 -0
- package/dist/typescript/model/ReverseLawfirmPayoutRequest.ts +30 -0
- package/dist/typescript/model/ReviewCommentModel.ts +23 -0
- package/dist/typescript/model/ReviewRatingModel.ts +20 -0
- package/dist/typescript/model/ReviewVoteAggregateModel.ts +19 -0
- package/dist/typescript/model/SNSNotificationRequest.ts +21 -0
- package/dist/typescript/model/SSLCertificateResponse.ts +18 -0
- package/dist/typescript/model/SaveAgentBookingRequest.ts +22 -0
- package/dist/typescript/model/SaveAgentBookingResponse.ts +18 -0
- package/dist/typescript/model/SaveCaseNotesRequest.ts +18 -0
- package/dist/typescript/model/SaveLawfirmSurchargeModel.ts +50 -0
- package/dist/typescript/model/SaveLawfirmSurchargesRequest.ts +18 -0
- package/dist/typescript/model/SaveLawyerLeadRequest.ts +35 -0
- package/dist/typescript/model/SaveLawyerLicenseModel.ts +79 -0
- package/dist/typescript/model/SaveLawyerLicensesRequest.ts +18 -0
- package/dist/typescript/model/SaveLawyerRequest.ts +41 -0
- package/dist/typescript/model/SaveNotesRequest.ts +29 -0
- package/dist/typescript/model/ScheduleNewPaymentRequest.ts +44 -0
- package/dist/typescript/model/ScheduledTaskGetResponse.ts +18 -0
- package/dist/typescript/model/ScheduledTaskResponse.ts +41 -0
- package/dist/typescript/model/SearchNotesResponse.ts +18 -0
- package/dist/typescript/model/SendBookingReceiptRequest.ts +19 -0
- package/dist/typescript/model/SendConsolidatedEmailToUser.ts +62 -0
- package/dist/typescript/model/SendDirectCheckResponse.ts +23 -0
- package/dist/typescript/model/SendDirectMailResponse.ts +18 -0
- package/dist/typescript/model/SendDirectReferralCheckRequest.ts +19 -0
- package/dist/typescript/model/SendEmailToUserRequest.ts +73 -0
- package/dist/typescript/model/SendEmailToUsersRequest.ts +61 -0
- package/dist/typescript/model/SendOneTimePasswordRequest.ts +19 -0
- package/dist/typescript/model/SendPayoutToLawfirmRequest.ts +44 -0
- package/dist/typescript/model/SendPayoutToLawfirmResponse.ts +18 -0
- package/dist/typescript/model/SetArchiveCaseModel.ts +18 -0
- package/dist/typescript/model/SetArchiveOnCasesRequest.ts +20 -0
- package/dist/typescript/model/SetCourtDateForCaseRequest.ts +19 -0
- package/dist/typescript/model/SetFlagOnMessageModel.ts +18 -0
- package/dist/typescript/model/SetFlagOnMessagesRequest.ts +20 -0
- package/dist/typescript/model/SetLawfirmCaseDecisionRequest.ts +30 -0
- package/dist/typescript/model/SetReferralSourceRequest.ts +49 -0
- package/dist/typescript/model/SetStarOnMessageModel.ts +19 -0
- package/dist/typescript/model/SetStarOnMessagesRequest.ts +20 -0
- package/dist/typescript/model/SettingRequest.ts +19 -0
- package/dist/typescript/model/SettingResponse.ts +29 -0
- package/dist/typescript/model/SignRecordingUrlRequest.ts +18 -0
- package/dist/typescript/model/SignRecordingUrlResponse.ts +18 -0
- package/dist/typescript/model/SimpleCredentialsResponse.ts +19 -0
- package/dist/typescript/model/SingleSignOnResponse.ts +21 -0
- package/dist/typescript/model/SocialLoginRequest.ts +48 -0
- package/dist/typescript/model/SocialLoginResponse.ts +21 -0
- package/dist/typescript/model/SocialLoginUser.ts +27 -0
- package/dist/typescript/model/SocialPhoneNumber.ts +29 -0
- package/dist/typescript/model/SqlResponse.ts +18 -0
- package/dist/typescript/model/StripeAccountLinkDomain.ts +20 -0
- package/dist/typescript/model/StripeApplicationFeeDomain.ts +30 -0
- package/dist/typescript/model/StripeApplicationFeeRefundDomain.ts +23 -0
- package/dist/typescript/model/StripeApplicationFeeRefundSyncResults.ts +20 -0
- package/dist/typescript/model/StripeApplicationFeeSyncResults.ts +21 -0
- package/dist/typescript/model/StripeCardDomain.ts +34 -0
- package/dist/typescript/model/StripeChargeDomain.ts +41 -0
- package/dist/typescript/model/StripeChargeSyncResults.ts +23 -0
- package/dist/typescript/model/StripeConnectedAccountDomain.ts +36 -0
- package/dist/typescript/model/StripeCustomerAccountDomain.ts +35 -0
- package/dist/typescript/model/StripeDisputeDomain.ts +88 -0
- package/dist/typescript/model/StripeFieldVerification.ts +20 -0
- package/dist/typescript/model/StripePaymentDomain.ts +31 -0
- package/dist/typescript/model/StripePaymentRefundDomain.ts +26 -0
- package/dist/typescript/model/StripePaymentRefundSyncResults.ts +20 -0
- package/dist/typescript/model/StripePaymentSourceDomain.ts +23 -0
- package/dist/typescript/model/StripePaymentSyncResults.ts +21 -0
- package/dist/typescript/model/StripeRefundDomain.ts +27 -0
- package/dist/typescript/model/StripeRefundSyncResults.ts +20 -0
- package/dist/typescript/model/StripeReversalSyncResults.ts +20 -0
- package/dist/typescript/model/StripeTransferDomain.ts +31 -0
- package/dist/typescript/model/StripeTransferReversalDomain.ts +26 -0
- package/dist/typescript/model/StripeTransferSyncResults.ts +21 -0
- package/dist/typescript/model/SubscribeRequest.ts +18 -0
- package/dist/typescript/model/Subscriber.ts +27 -0
- package/dist/typescript/model/SubscriberDomain.ts +27 -0
- package/dist/typescript/model/SyncStripeChargesRequest.ts +20 -0
- package/dist/typescript/model/SyncStripeChargesResponse.ts +18 -0
- package/dist/typescript/model/SyncStripeDisputeResponse.ts +18 -0
- package/dist/typescript/model/SyncStripePaymentsRequest.ts +20 -0
- package/dist/typescript/model/SyncStripePaymentsResponse.ts +18 -0
- package/dist/typescript/model/SyncStripeRefundsRequest.ts +19 -0
- package/dist/typescript/model/SyncStripeTransfersRequest.ts +20 -0
- package/dist/typescript/model/SyncStripeTransfersResponse.ts +18 -0
- package/dist/typescript/model/TemporalUnit.ts +21 -0
- package/dist/typescript/model/TicketLeadDomain.ts +86 -0
- package/dist/typescript/model/TicketReviewRequest.ts +38 -0
- package/dist/typescript/model/TicketReviewRequestReq.ts +38 -0
- package/dist/typescript/model/TicketReviewRequestRes.ts +38 -0
- package/dist/typescript/model/TimeZone.ts +21 -0
- package/dist/typescript/model/TimeZoneReq.ts +19 -0
- package/dist/typescript/model/TimeZoneRes.ts +21 -0
- package/dist/typescript/model/Timestamp.ts +27 -0
- package/dist/typescript/model/TimestampReq.ts +25 -0
- package/dist/typescript/model/TimestampRes.ts +27 -0
- package/dist/typescript/model/TrafficViolationInputRequest.ts +18 -0
- package/dist/typescript/model/TransferCaseRequest.ts +20 -0
- package/dist/typescript/model/USStateDomain.ts +19 -0
- package/dist/typescript/model/UpdateAddress.ts +24 -0
- package/dist/typescript/model/UpdateCaseActionRequest.ts +18 -0
- package/dist/typescript/model/UpdateCaseActionResponse.ts +18 -0
- package/dist/typescript/model/UpdateCaseDeclineTicketsRequest.ts +20 -0
- package/dist/typescript/model/UpdateCasePaymentRequest.ts +44 -0
- package/dist/typescript/model/UpdateCitationAddressRequest.ts +18 -0
- package/dist/typescript/model/UpdateCitationPictureRequest.ts +20 -0
- package/dist/typescript/model/UpdateCitationRequest.ts +18 -0
- package/dist/typescript/model/UpdateCourtRequest.ts +18 -0
- package/dist/typescript/model/UpdateDisputeRequest.ts +18 -0
- package/dist/typescript/model/UpdateInvoiceLineItemRequest.ts +18 -0
- package/dist/typescript/model/UpdateLawfirmFeeRequest.ts +42 -0
- package/dist/typescript/model/UpdateLawfirmFeeResponse.ts +18 -0
- package/dist/typescript/model/UpdateLawfirmModel.ts +61 -0
- package/dist/typescript/model/UpdateLawfirmPaymentModelRequest.ts +25 -0
- package/dist/typescript/model/UpdateLawfirmPayoutRequest.ts +39 -0
- package/dist/typescript/model/UpdateLawfirmPayoutResponse.ts +18 -0
- package/dist/typescript/model/UpdateLawfirmRequest.ts +18 -0
- package/dist/typescript/model/UpdateLawfirmSettingsRequest.ts +18 -0
- package/dist/typescript/model/UpdateLawyerRoleRequest.ts +28 -0
- package/dist/typescript/model/UpdateNoteInput.ts +18 -0
- package/dist/typescript/model/UpdateNoteRequest.ts +18 -0
- package/dist/typescript/model/UpdateNoteResponse.ts +18 -0
- package/dist/typescript/model/UpdatePaymentDueDateRequest.ts +19 -0
- package/dist/typescript/model/UpdatePhoneNumber.ts +41 -0
- package/dist/typescript/model/UpdateProfilePictureRequest.ts +19 -0
- package/dist/typescript/model/UpdateRefundEligibilityForCaseRequest.ts +25 -0
- package/dist/typescript/model/UpdateReplyForCustomerReview.ts +19 -0
- package/dist/typescript/model/UpdateUserDetailsResponse.ts +18 -0
- package/dist/typescript/model/UpdateUserModel.ts +65 -0
- package/dist/typescript/model/UpdateUserPhoneNumberRequest.ts +19 -0
- package/dist/typescript/model/UpdateUserProfileRequest.ts +18 -0
- package/dist/typescript/model/UpdateUserRolesRequest.ts +29 -0
- package/dist/typescript/model/UpdateUserSettingsRequest.ts +18 -0
- package/dist/typescript/model/UpdateUserSettingsResponse.ts +18 -0
- package/dist/typescript/model/UpdateViolationRequest.ts +90 -0
- package/dist/typescript/model/UpsertAddressRequest.ts +18 -0
- package/dist/typescript/model/User.ts +20 -0
- package/dist/typescript/model/UserAccountModel.ts +34 -0
- package/dist/typescript/model/UserAuditEventModel.ts +91 -0
- package/dist/typescript/model/UserBookingsDomain.ts +19 -0
- package/dist/typescript/model/UserDetails.ts +21 -0
- package/dist/typescript/model/UserDomain.ts +98 -0
- package/dist/typescript/model/UserDomainReq.ts +97 -0
- package/dist/typescript/model/UserDomainRes.ts +98 -0
- package/dist/typescript/model/UserRefLinkDomain.ts +20 -0
- package/dist/typescript/model/UserReferralSourceTypeModel.ts +24 -0
- package/dist/typescript/model/UserRegistrationStats.ts +25 -0
- package/dist/typescript/model/UserRoleDomain.ts +28 -0
- package/dist/typescript/model/UserSubscriptionPlanModel.ts +31 -0
- package/dist/typescript/model/UserSubscriptionPlanModelReq.ts +31 -0
- package/dist/typescript/model/UserSubscriptionPlanModelRes.ts +31 -0
- package/dist/typescript/model/UserToContact.ts +19 -0
- package/dist/typescript/model/ValidateDirectMailRequest.ts +19 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.ts +287 -0
- package/dist/typescript/model/ValidateUserEmailResponse.ts +20 -0
- package/dist/typescript/model/VerifyMailingAddressRequest.ts +18 -0
- package/dist/typescript/model/VerifyMailingAddressResponse.ts +20 -0
- package/dist/typescript/model/VerifyPasswordResetTokenResponse.ts +19 -0
- package/dist/typescript/model/VerifyUserAccountResponse.ts +20 -0
- package/dist/typescript/model/Violation.ts +23 -0
- package/dist/typescript/model/ViolationClassificationModel.ts +82 -0
- package/dist/typescript/model/ViolationInput.ts +18 -0
- package/dist/typescript/model/ViolationInputRequest.ts +18 -0
- package/dist/typescript/model/ViolationModel.d.ts +9 -5
- package/dist/typescript/model/ViolationModel.ts +89 -0
- package/dist/typescript/model/ViolationPenaltyModel.d.ts +39 -0
- package/dist/typescript/model/ViolationPenaltyModel.js +35 -0
- package/dist/typescript/model/ViolationPenaltyModel.ts +43 -0
- package/dist/typescript/model/ViolationPenaltyResponse.ts +19 -0
- package/dist/typescript/model/ViolationResponse.ts +85 -0
- package/dist/typescript/model/WorkflowCaseModel.d.ts +27 -0
- package/dist/typescript/model/WorkflowCaseModel.js +22 -0
- package/dist/typescript/model/WorkflowCaseModel.ts +30 -0
- package/dist/typescript/model/WorkflowCitationModel.d.ts +26 -0
- package/dist/typescript/model/WorkflowCitationModel.js +13 -0
- package/dist/typescript/model/WorkflowCitationModel.ts +29 -0
- package/dist/typescript/model/WorkflowStateResponse.d.ts +16 -0
- package/dist/typescript/model/WorkflowStateResponse.js +13 -0
- package/dist/typescript/model/WorkflowStateResponse.ts +19 -0
- package/dist/typescript/model/WorkflowViolationModel.d.ts +82 -0
- package/dist/typescript/model/WorkflowViolationModel.js +77 -0
- package/dist/typescript/model/WorkflowViolationModel.ts +85 -0
- package/dist/typescript/model/WorkflowViolationPenaltyModel.d.ts +35 -0
- package/dist/typescript/model/WorkflowViolationPenaltyModel.js +35 -0
- package/dist/typescript/model/WorkflowViolationPenaltyModel.ts +39 -0
- package/dist/typescript/model/ZoneId.ts +19 -0
- package/dist/typescript/model/ZoneOffset.ts +20 -0
- package/dist/typescript/model/ZoneOffsetTransition.ts +25 -0
- package/dist/typescript/model/ZoneOffsetTransitionRule.ts +56 -0
- package/dist/typescript/model/ZoneRules.ts +20 -0
- package/dist/typescript/model/models.d.ts +16 -10
- package/dist/typescript/model/models.js +16 -10
- package/dist/typescript/model/models.ts +671 -0
- package/package.json +1 -1
|
@@ -73,13 +73,13 @@ export * from './caseAlert';
|
|
|
73
73
|
export * from './caseBookingsStats';
|
|
74
74
|
export * from './caseChargeResponsePojo';
|
|
75
75
|
export * from './caseCreationRequest';
|
|
76
|
-
export * from './caseDomain';
|
|
77
|
-
export * from './caseDomainReq';
|
|
78
|
-
export * from './caseDomainRes';
|
|
79
76
|
export * from './caseLineItemDomainReq';
|
|
80
77
|
export * from './caseLineItemDomainRes';
|
|
81
78
|
export * from './caseLineItemsSummary';
|
|
82
79
|
export * from './caseMessageDomain';
|
|
80
|
+
export * from './caseModel';
|
|
81
|
+
export * from './caseModelReq';
|
|
82
|
+
export * from './caseModelRes';
|
|
83
83
|
export * from './caseNotesDomain';
|
|
84
84
|
export * from './casePaymentDomain';
|
|
85
85
|
export * from './casePaymentModel';
|
|
@@ -94,10 +94,10 @@ export * from './changeUserPasswordRequest';
|
|
|
94
94
|
export * from './chargeFeeToLawfirmRequest';
|
|
95
95
|
export * from './chargeFeeToLawfirmResponse';
|
|
96
96
|
export * from './citationAuditEventModel';
|
|
97
|
-
export * from './citationDomain';
|
|
98
|
-
export * from './citationDomainReq';
|
|
99
|
-
export * from './citationDomainRes';
|
|
100
97
|
export * from './citationInputRequest';
|
|
98
|
+
export * from './citationModel';
|
|
99
|
+
export * from './citationModelReq';
|
|
100
|
+
export * from './citationModelRes';
|
|
101
101
|
export * from './citationViolationModel';
|
|
102
102
|
export * from './citationWithMissingCourt';
|
|
103
103
|
export * from './citationWithMissingFields';
|
|
@@ -351,9 +351,9 @@ export * from './lastLoginDateModel';
|
|
|
351
351
|
export * from './lawfirmAuditEventModel';
|
|
352
352
|
export * from './lawfirmBookingSummary';
|
|
353
353
|
export * from './lawfirmCaseDocument';
|
|
354
|
-
export * from './
|
|
355
|
-
export * from './
|
|
356
|
-
export * from './
|
|
354
|
+
export * from './lawfirmCaseModel';
|
|
355
|
+
export * from './lawfirmCaseModelReq';
|
|
356
|
+
export * from './lawfirmCaseModelRes';
|
|
357
357
|
export * from './lawfirmCourtCoverageDomain';
|
|
358
358
|
export * from './lawfirmCoverageRecord';
|
|
359
359
|
export * from './lawfirmDocument';
|
|
@@ -377,6 +377,7 @@ export * from './lawyerInviteByTokenModel';
|
|
|
377
377
|
export * from './lawyerInviteModel';
|
|
378
378
|
export * from './lawyerLicenseModel';
|
|
379
379
|
export * from './lawyerModel';
|
|
380
|
+
export * from './legalServiceModel';
|
|
380
381
|
export * from './letterOfEngagement';
|
|
381
382
|
export * from './lineItem';
|
|
382
383
|
export * from './lineItemModel';
|
|
@@ -588,7 +589,6 @@ export * from './timestamp';
|
|
|
588
589
|
export * from './timestampReq';
|
|
589
590
|
export * from './timestampRes';
|
|
590
591
|
export * from './trafficViolationInputRequest';
|
|
591
|
-
export * from './trafficViolationTypeDomain';
|
|
592
592
|
export * from './transferCaseRequest';
|
|
593
593
|
export * from './uSStateDomain';
|
|
594
594
|
export * from './updateAddress';
|
|
@@ -656,8 +656,14 @@ export * from './violationClassificationModel';
|
|
|
656
656
|
export * from './violationInput';
|
|
657
657
|
export * from './violationInputRequest';
|
|
658
658
|
export * from './violationModel';
|
|
659
|
+
export * from './violationPenaltyModel';
|
|
659
660
|
export * from './violationPenaltyResponse';
|
|
660
661
|
export * from './violationResponse';
|
|
662
|
+
export * from './workflowCaseModel';
|
|
663
|
+
export * from './workflowCitationModel';
|
|
664
|
+
export * from './workflowStateResponse';
|
|
665
|
+
export * from './workflowViolationModel';
|
|
666
|
+
export * from './workflowViolationPenaltyModel';
|
|
661
667
|
export * from './zoneId';
|
|
662
668
|
export * from './zoneOffset';
|
|
663
669
|
export * from './zoneOffsetTransition';
|
|
@@ -15,7 +15,7 @@ export interface ValidateDirectMailResponse {
|
|
|
15
15
|
otrError?: ValidateDirectMailResponse.OtrErrorEnum;
|
|
16
16
|
}
|
|
17
17
|
export namespace ValidateDirectMailResponse {
|
|
18
|
-
export type OtrErrorEnum = 'ACCESS_DENIED' | 'ACCOUNT_DISABLED' | 'ARAG_NOT_CAPTURED' | 'AUTHENTICATION_CREDENTIALS_NOT_FOUND' | 'AUTHENTICATION_FAILED' | 'AUTHENTICATION_SERVICE_FAILURE' | 'AUTHORIZATION_SERVICE_FAILURE' | 'AUTHORIZED_CHARGES_ON_CASE' | 'BAD_CREDENTIALS' | 'CANCELLATION_WINDOW_CLOSED' | 'CASE_ALREADY_EXISTS' | 'CASE_ALREADY_PAID' | 'CASE_ALREADY_RESOLVED' | 'CASE_ID_COLLISION' | 'CASE_IS_CANCELLED' | 'CASE_MATCH_FAILED' | 'CASE_MISSING_LAWFIRM' | 'CASE_NOT_ACCEPTED_BY_LAWFIRM' | 'CASE_NOT_CONFIRMED' | 'CASE_PAYMENT_ASSOCIATED_WITH_MULTIPLE_LAWFIRM_FEES' | 'CASE_PAYMENT_ASSOCIATED_WITH_MULTIPLE_LAWFIRM_PAYOUTS' | 'CASE_PAYMENT_HAS_STRIPE_CHARGE' | 'CASE_STATUS_NOT_ALLOWED' | 'CASE_USER_MISMATCH' | 'CC_WILL_EXPIRE_BEFORE_PAYMENT_PLAN' | 'CHARGE_ALREADY_CAPTURED' | 'CHARGE_EXPIRED' | 'CHARGE_NOT_ALLOWED' | 'CHARGE_NOT_CAPTURED' | 'CHARGE_NO_LONGER_AUTHORIZED' | 'CHARGE_REFUNDED' | 'CITATION_ALREADY_DELETED' | 'CITATION_DOES_NOT_MATCH_USER' | 'CITATION_NOT_OWNED_BY_USER' | 'CODE_ALREADY_EXISTS_FOR_DRIVER' | 'CODE_BENEFIT_TYPE_NOT_SUPPORTED' | 'CODE_DOES_NOT_EXIST' | 'CODE_EXCEEDED_MAX_USAGE' | 'CODE_HAS_EXPIRED' | 'CODE_IS_ALREADY_TAKEN' | 'CODE_IS_NOT_ACTIVE' | 'CODE_NOT_ALLOWED_DUE_TO_CREDIT' | 'CODE_NOT_SUPPORTED_BY_LAWFIRM' | 'CODE_NOT_YET_APPROVED' | 'CODE_REFERRER_BENEFITS_NOT_AUTHORIZED' | 'COMMENT_ALREADY_EXISTS' | 'COURT_MISSING_ADDRESS' | 'COURT_NOT_IN_SUPPORTED_REGION' | 'COURT_NOT_SUPPORTED_BY_LAWFIRM' | 'CURRENT_PASSWORD_INCORRECT' | 'DATABASE_RECORD_LOCKED' | 'DATA_ACCESS_ERROR' | 'DIRECT_MAIL_RECONCILATION_ID_NOT_EXIST' | 'DIRECT_MAIL_SENT_ALREADY' | 'DIRECT_MAIL_TEMPLATE_DUPLICATE_DETECTED' | 'DIRECT_MAIL_TEMPLATE_NOT_EXIST' | 'DRIP_DEPENDENCY_FAILURE' | 'DUPLICATE_COURT' | 'DUPLICATE_EMAIL' | 'DUPLICATE_ENTRY' | 'DUPLICATE_LANDING_PAGE_URL' | 'DUPLICATE_MESSAGE_ATTEMPT' | 'EMAIL_ADDRESS_ALREADY_SUBSCRIBED' | 'EMAIL_ADDRESS_BLACKLISTED' | 'EMAIL_ALREADY_EXISTS' | 'EMAIL_ALREADY_IN_USE' | 'EMAIL_ALREADY_SENT' | 'EMAIL_NOT_CONFIRMED' | 'EMAIL_NOT_SENT' | 'EXPECTED_NULL_INPUT' | 'EXPECTED_ROLE_MISSING' | 'FAILED_TO_REVERSE_TRANSFER' | 'FRESHDESK_TICKET_NOT_FOUND' | 'FRESHDESK_UNEXPECTED_NUMBER_OF_RESULTS' | 'IMAGE_NOT_COMPRESSED_PROPERLY' | 'INACTIVE_STOREFRONT' | 'INCORRECT_DIMENSIONS' | 'INCORRECT_ENCODING' | 'INELIGIBLE_STATUS_FOR_TRANSFER' | 'INVALID_ADDRESS_ID' | 'INVALID_AMOUNT' | 'INVALID_API_TOKEN' | 'INVALID_API_USAGE' | 'INVALID_CASE_ACTION_ID' | 'INVALID_CASE_ID' | 'INVALID_CASE_PAYMENT_ID' | 'INVALID_CITATION_ID' | 'INVALID_CODE' | 'INVALID_COURT_ID' | 'INVALID_DATE' | 'INVALID_DISPUTE_ID' | 'INVALID_DOCUMENT_ID' | 'INVALID_EMAIL_ADDRESS' | 'INVALID_EMAIL_TEMPLATE' | 'INVALID_END_DATE' | 'INVALID_ENUM_VALUE' | 'INVALID_FEE_PERCENTAGE' | 'INVALID_FIRST_NAME' | 'INVALID_INTERNET_ADDRESS' | 'INVALID_INVITATION_TOKEN' | 'INVALID_INVOICE_LINE_ITEM_ID' | 'INVALID_LAST_NAME' | 'INVALID_LAWFIRM' | 'INVALID_LAWYER_ID' | 'INVALID_LEGAL_SERVICE' | 'INVALID_LINE_ITEM' | 'INVALID_MESSAGE_ID' | 'INVALID_PAGINATION_TOKEN' | 'INVALID_PARAMETER_VALUE' | 'INVALID_PASSWORD' | 'INVALID_PASSWORD_RESET_TOKEN' | 'INVALID_PUSH_TOKEN' | 'INVALID_RECIPIENT_LIST' | 'INVALID_REQUEST' | 'INVALID_REQUEST_BODY' | 'INVALID_RESOLUTION_STATUS' | 'INVALID_REVIEW_COPY' | 'INVALID_ROLE_TYPE' | 'INVALID_STATE' | 'INVALID_STRIPE_ACCOUNT' | 'INVALID_STRIPE_CHARGE_ID' | 'INVALID_STRIPE_REQUEST' | 'INVALID_STRIPE_TRANSACTION_ID' | 'INVALID_SUBSCRIPTION_TYPE' | 'INVALID_TASK_ID' | 'INVALID_TICKET_ID' | 'INVALID_TICKET_REVIEW_ID' | 'INVALID_TRAFFIC_VIOLATION' | 'INVALID_USER_ID' | 'INVALID_USER_NAME' | 'INVITATION_ALREADY_SENT' | 'INVITATION_ALREADY_VERIFIED' | 'INVITATION_CANCELLED' | 'INVITATION_HAS_EXPIRED' | 'INVITATION_RECIPIENT_NO_ACCOUNT' | 'IO_ERROR' | 'LAMBDA_URL_INVOKE_FAILURE' | 'LAWFIRM_CASE_CAPACITY_REACHED' | 'LAWFIRM_CASE_NOT_ACTIVE' | 'LAWFIRM_DOES_NOT_HANDLE_ACCIDENTS' | 'LAWFIRM_DOES_NOT_HANDLE_PAST_DUE' | 'LAWFIRM_FEE_HAS_STRIPE_REFERENCE' | 'LAWFIRM_MISSING_ACCOUNT_FEE' | 'LAWFIRM_NOT_ELIGIBLE' | 'LAWFIRM_ON_VACATION_MODE' | 'LAWFIRM_PAYOUT_HAS_STRIPE_REFERENCE' | 'LAW_FIRM_NEEDS_ADDRESS' | 'LEGAL_SERVICE_NOT_SUPPORTED' | 'LINE_ITEM_MISSING_RECIPIENT' | 'LINKS_NOT_ALLOWED' | 'LOB_ADDRESS_CREATION_FAILURE' | 'LOB_ADDRESS_VALIDATION_FAILURE' | 'LOB_CANCEL_CHECK_DELIVERY_FAILURE' | 'LOB_CANCEL_MAIL_DELIVERY_FAILURE' | 'LOB_CHECK_MAIL_DELIVERY_FAILURE' | 'LOB_POSTCARD_CREATION_FAILURE' | 'MEDIA_TYPE_INCORRECT' | 'MERGE_ROLLBACK_NOT_ALLOWED' | 'MISSING_ACTION_TYPE' | 'MISSING_ADJUSTED_FINE_AMOUNT' | 'MISSING_CASE' | 'MISSING_CITATION_ID' | 'MISSING_COURT_ID' | 'MISSING_EMAIL_ADDRESS' | 'MISSING_FEEDBACK_CONTENT' | 'MISSING_FIRSTNAME' | 'MISSING_IMAGE_URL' | 'MISSING_LASTNAME' | 'MISSING_LAWFIRM_ID' | 'MISSING_LAWYER_ID' | 'MISSING_MEDIA_DATA' | 'MISSING_NUM_VIOLATIONS' | 'MISSING_PARAMETER' | 'MISSING_PASSWORD' | 'MISSING_RECIPIENT_EMAIL' | 'MISSING_REQUEST_BODY' | 'MISSING_RESOLUTION_STATUS' | 'MISSING_SENDER_EMAIL' | 'MISSING_SENDER_PHONE_NUMBER' | 'MISSING_SEO_URL' | 'MISSING_STRIPE_TOKEN' | 'MISSING_SUBSCRIBER' | 'MISSING_TICKET_ISSUE_DATE' | 'MISSING_USER_NAME' | 'MULTIPLE_LAWFIRM_FEES' | 'MULTIPLE_LAWFIRM_PAYOUTS' | 'MULTIPLE_REFUNDS_ON_CHARGE' | 'MULTIPLE_STRIPE_CUSTOMER_ACCOUNTS_FOUND' | 'MULTIPLE_STRIPE_TRANSFERS_FOUND' | 'MUST_BE_POSITIVE' | 'NOTIFICATION_ERROR' | 'NOTIFICATION_INCORRECT_ROLE' | 'NOTIFICATION_TOO_LONG' | 'NOTIFICATION_TO_SELF' | 'NOT_AUTHENTICATED' | 'NO_ACCOUNT_WITH_EMAIL' | 'NO_CASE_OWNER' | 'NO_CHARGES_ON_CASE' | 'NO_INSURANCE' | 'NO_LAWFIRM_AVAILABLE' | 'NO_LEGAL_SERVICES_IN_REGION' | 'NO_STRIPE_ACCOUNT' | 'OWNER_CASE_MESSAGE_MISMATCH' | 'PAYMENT_PLANS_DENIED' | 'PAYMENT_PLAN_LEGAL_FEE_HAS_CENTS' | 'PAYMENT_PLAN_NOT_SUPPORTED_WITH_PREPAID_CARD' | 'PDF_PASSWORD_PROTECTED' | 'PLAID_ERROR' | 'QBO_BILL_CREATION_FAILURE' | 'QBO_VENDOR_CREATION_FAILURE' | 'REFERRALS_NOT_ALLOWED_TO_BE_REDEEMED' | 'REFUND_NOT_ALLOWED' | 'REFUND_NOT_ELIGIBLE' | 'REFUND_NOT_ELIGIBLE_CRIMINAL' | 'REQUEST_NOT_WELL_FORMATTED' | 'RESET_TOKEN_EXPIRED' | 'RESOURCE_NOT_FOUND' | 'REVIEW_ALREADY_EXISTS' | 'ROLE_NOT_SUPPORTED' | 'S3_CLIENT_FAILED' | 'S3_SERVER_FAILED' | 'SAME_USER_CANNOT_BE_MERGED' | 'SEO_URL_ALREADY_EXISTS' | 'SERVICE_RATE_NOT_FOUND' | 'SIMILAR_COURT' | 'SOCIAL_PROFILE_MISSING_EMAIL' | 'SSO_SERVICE_PROVIDER_ID_NOT_FOUND' | 'STATE_NOT_SUPPORTED' | 'STRIPE_API_CONNECTION_EXCEPTION' | 'STRIPE_API_EXCEPTION' | 'STRIPE_APPLICATION_FEE_ALREADY_REFUNDED' | 'STRIPE_APPLICATION_FEE_NOT_FOUND' | 'STRIPE_AUTHENTICATION_EXCEPTION' | 'STRIPE_CARD_EXCEPTION' | 'STRIPE_CONNECT_ACCOUNT_NOT_FOUND' | 'STRIPE_ERROR' | 'STRIPE_FAILED_CHARGE' | 'STRIPE_OAUTH_CONNECT_FAILED' | 'STRIPE_OBJECT_MISSING_METADATA' | 'STRIPE_RESOURCE_NOT_FOUND' | 'STRIPE_TRANSFER_EXISTS' | 'STRIPE_TRANSFER_NOT_FOUND' | 'SUBSCRIPTION_NOT_OWNED_BY_USER' | 'TEMPLATE_NOT_SUPPORTED' | 'TRANSFER_ALREADY_REVERSED' | 'TRANSFER_ID_DOESNT_MATCH_CHARGE' | 'TRANSFER_NOT_SAFE' | 'TRANSFER_REVERSAL_NOT_ALLOWED' | 'TRANSFER_TO_SAME_LAWFIRM' | 'UNAUTHORIZED' | 'UNEXPECTED_CASE_STATUS' | 'UNEXPECTED_NULL_INPUT' | 'UNEXPECTED_NUMBER_OF_CHARGES' | 'UNKNOWN' | 'URL_ENTITY_MISMATCH' | 'USER_ALREADY_HAS_SECONDARY_ACCOUNT' | 'USER_ALREADY_LOGGED_IN' | 'USER_ALREADY_MERGED' | 'USER_CANT_USE_OWN_CODE' | 'USER_DOES_NOT_MATCH_CITATION' | 'USER_IS_NOT_THE_OWNER' | 'USER_NOT_FOUND' | 'USER_NOT_FOUND_IN_LAWFIRM' | 'VERIFICATION_LINK_NOT_VALID';
|
|
18
|
+
export type OtrErrorEnum = 'ACCESS_DENIED' | 'ACCOUNT_DISABLED' | 'ARAG_NOT_CAPTURED' | 'AUTHENTICATION_CREDENTIALS_NOT_FOUND' | 'AUTHENTICATION_FAILED' | 'AUTHENTICATION_SERVICE_FAILURE' | 'AUTHORIZATION_SERVICE_FAILURE' | 'AUTHORIZED_CHARGES_ON_CASE' | 'BAD_CREDENTIALS' | 'CANCELLATION_WINDOW_CLOSED' | 'CASE_ALREADY_EXISTS' | 'CASE_ALREADY_PAID' | 'CASE_ALREADY_RESOLVED' | 'CASE_ID_COLLISION' | 'CASE_IS_CANCELLED' | 'CASE_MATCH_FAILED' | 'CASE_MISSING_LAWFIRM' | 'CASE_NOT_ACCEPTED_BY_LAWFIRM' | 'CASE_NOT_CONFIRMED' | 'CASE_PAYMENT_ASSOCIATED_WITH_MULTIPLE_LAWFIRM_FEES' | 'CASE_PAYMENT_ASSOCIATED_WITH_MULTIPLE_LAWFIRM_PAYOUTS' | 'CASE_PAYMENT_HAS_STRIPE_CHARGE' | 'CASE_STATUS_NOT_ALLOWED' | 'CASE_USER_MISMATCH' | 'CC_WILL_EXPIRE_BEFORE_PAYMENT_PLAN' | 'CHARGE_ALREADY_CAPTURED' | 'CHARGE_EXPIRED' | 'CHARGE_NOT_ALLOWED' | 'CHARGE_NOT_CAPTURED' | 'CHARGE_NO_LONGER_AUTHORIZED' | 'CHARGE_REFUNDED' | 'CITATION_ALREADY_DELETED' | 'CITATION_DOES_NOT_MATCH_USER' | 'CITATION_NOT_OWNED_BY_USER' | 'CODE_ALREADY_EXISTS_FOR_DRIVER' | 'CODE_BENEFIT_TYPE_NOT_SUPPORTED' | 'CODE_DOES_NOT_EXIST' | 'CODE_EXCEEDED_MAX_USAGE' | 'CODE_HAS_EXPIRED' | 'CODE_IS_ALREADY_TAKEN' | 'CODE_IS_NOT_ACTIVE' | 'CODE_NOT_ALLOWED_DUE_TO_CREDIT' | 'CODE_NOT_SUPPORTED_BY_LAWFIRM' | 'CODE_NOT_YET_APPROVED' | 'CODE_REFERRER_BENEFITS_NOT_AUTHORIZED' | 'COMMENT_ALREADY_EXISTS' | 'COURT_MISSING_ADDRESS' | 'COURT_NOT_IN_SUPPORTED_REGION' | 'COURT_NOT_SUPPORTED_BY_LAWFIRM' | 'CURRENT_PASSWORD_INCORRECT' | 'DATABASE_RECORD_LOCKED' | 'DATA_ACCESS_ERROR' | 'DIRECT_MAIL_RECONCILATION_ID_NOT_EXIST' | 'DIRECT_MAIL_SENT_ALREADY' | 'DIRECT_MAIL_TEMPLATE_DUPLICATE_DETECTED' | 'DIRECT_MAIL_TEMPLATE_NOT_EXIST' | 'DRIP_DEPENDENCY_FAILURE' | 'DUPLICATE_COURT' | 'DUPLICATE_EMAIL' | 'DUPLICATE_ENTRY' | 'DUPLICATE_LANDING_PAGE_URL' | 'DUPLICATE_MESSAGE_ATTEMPT' | 'EMAIL_ADDRESS_ALREADY_SUBSCRIBED' | 'EMAIL_ADDRESS_BLACKLISTED' | 'EMAIL_ALREADY_EXISTS' | 'EMAIL_ALREADY_IN_USE' | 'EMAIL_ALREADY_SENT' | 'EMAIL_NOT_CONFIRMED' | 'EMAIL_NOT_SENT' | 'EXPECTED_NULL_INPUT' | 'EXPECTED_ROLE_MISSING' | 'FAILED_TO_REVERSE_TRANSFER' | 'FRESHDESK_TICKET_NOT_FOUND' | 'FRESHDESK_UNEXPECTED_NUMBER_OF_RESULTS' | 'IMAGE_NOT_COMPRESSED_PROPERLY' | 'INACTIVE_STOREFRONT' | 'INCORRECT_DIMENSIONS' | 'INCORRECT_ENCODING' | 'INELIGIBLE_STATUS_FOR_TRANSFER' | 'INVALID_ADDRESS_ID' | 'INVALID_AMOUNT' | 'INVALID_API_TOKEN' | 'INVALID_API_USAGE' | 'INVALID_CASE_ACTION_ID' | 'INVALID_CASE_ID' | 'INVALID_CASE_PAYMENT_ID' | 'INVALID_CITATION_ID' | 'INVALID_CODE' | 'INVALID_COURT_ID' | 'INVALID_DATE' | 'INVALID_DISPUTE_ID' | 'INVALID_DOCUMENT_ID' | 'INVALID_EMAIL_ADDRESS' | 'INVALID_EMAIL_TEMPLATE' | 'INVALID_END_DATE' | 'INVALID_ENUM_VALUE' | 'INVALID_FEE_PERCENTAGE' | 'INVALID_FIRST_NAME' | 'INVALID_INTERNET_ADDRESS' | 'INVALID_INVITATION_TOKEN' | 'INVALID_INVOICE_LINE_ITEM_ID' | 'INVALID_LAST_NAME' | 'INVALID_LAWFIRM' | 'INVALID_LAWYER_ID' | 'INVALID_LEGAL_SERVICE' | 'INVALID_LINE_ITEM' | 'INVALID_MESSAGE_ID' | 'INVALID_PAGINATION_TOKEN' | 'INVALID_PARAMETER_VALUE' | 'INVALID_PASSWORD' | 'INVALID_PASSWORD_RESET_TOKEN' | 'INVALID_PUSH_TOKEN' | 'INVALID_RECIPIENT_LIST' | 'INVALID_REQUEST' | 'INVALID_REQUEST_BODY' | 'INVALID_RESOLUTION_STATUS' | 'INVALID_REVIEW_COPY' | 'INVALID_ROLE_TYPE' | 'INVALID_STATE' | 'INVALID_STRIPE_ACCOUNT' | 'INVALID_STRIPE_CHARGE_ID' | 'INVALID_STRIPE_REQUEST' | 'INVALID_STRIPE_TRANSACTION_ID' | 'INVALID_SUBSCRIPTION_TYPE' | 'INVALID_TASK_ID' | 'INVALID_TICKET_ID' | 'INVALID_TICKET_REVIEW_ID' | 'INVALID_TRAFFIC_VIOLATION' | 'INVALID_USER_ID' | 'INVALID_USER_NAME' | 'INVITATION_ALREADY_SENT' | 'INVITATION_ALREADY_VERIFIED' | 'INVITATION_CANCELLED' | 'INVITATION_HAS_EXPIRED' | 'INVITATION_RECIPIENT_NO_ACCOUNT' | 'IO_ERROR' | 'LAMBDA_URL_INVOKE_FAILURE' | 'LAWFIRM_CASE_CAPACITY_REACHED' | 'LAWFIRM_CASE_NOT_ACTIVE' | 'LAWFIRM_DOES_NOT_HANDLE_ACCIDENTS' | 'LAWFIRM_DOES_NOT_HANDLE_PAST_DUE' | 'LAWFIRM_FEE_HAS_STRIPE_REFERENCE' | 'LAWFIRM_MISSING_ACCOUNT_FEE' | 'LAWFIRM_NOT_ELIGIBLE' | 'LAWFIRM_ON_VACATION_MODE' | 'LAWFIRM_PAYOUT_HAS_STRIPE_REFERENCE' | 'LAW_FIRM_NEEDS_ADDRESS' | 'LEGAL_SERVICE_NOT_SUPPORTED' | 'LINE_ITEM_MISSING_RECIPIENT' | 'LINKS_NOT_ALLOWED' | 'LOB_ADDRESS_CREATION_FAILURE' | 'LOB_ADDRESS_VALIDATION_FAILURE' | 'LOB_CANCEL_CHECK_DELIVERY_FAILURE' | 'LOB_CANCEL_MAIL_DELIVERY_FAILURE' | 'LOB_CHECK_MAIL_DELIVERY_FAILURE' | 'LOB_POSTCARD_CREATION_FAILURE' | 'MEDIA_TYPE_INCORRECT' | 'MERGE_ROLLBACK_NOT_ALLOWED' | 'MISSING_ACTION_TYPE' | 'MISSING_ADJUSTED_FINE_AMOUNT' | 'MISSING_CASE' | 'MISSING_CITATION_ID' | 'MISSING_COURT_ID' | 'MISSING_EMAIL_ADDRESS' | 'MISSING_FEEDBACK_CONTENT' | 'MISSING_FIRSTNAME' | 'MISSING_IMAGE_URL' | 'MISSING_LASTNAME' | 'MISSING_LAWFIRM_ID' | 'MISSING_LAWYER_ID' | 'MISSING_MEDIA_DATA' | 'MISSING_NUM_VIOLATIONS' | 'MISSING_PARAMETER' | 'MISSING_PASSWORD' | 'MISSING_RECIPIENT_EMAIL' | 'MISSING_REQUEST_BODY' | 'MISSING_RESOLUTION_STATUS' | 'MISSING_SENDER_EMAIL' | 'MISSING_SENDER_PHONE_NUMBER' | 'MISSING_SEO_URL' | 'MISSING_STRIPE_TOKEN' | 'MISSING_SUBSCRIBER' | 'MISSING_TICKET_ISSUE_DATE' | 'MISSING_USER_NAME' | 'MULTIPLE_LAWFIRM_FEES' | 'MULTIPLE_LAWFIRM_PAYOUTS' | 'MULTIPLE_REFUNDS_ON_CHARGE' | 'MULTIPLE_STRIPE_CUSTOMER_ACCOUNTS_FOUND' | 'MULTIPLE_STRIPE_TRANSFERS_FOUND' | 'MUST_BE_POSITIVE' | 'NOTIFICATION_ERROR' | 'NOTIFICATION_INCORRECT_ROLE' | 'NOTIFICATION_TOO_LONG' | 'NOTIFICATION_TO_SELF' | 'NOT_AUTHENTICATED' | 'NO_ACCOUNT_WITH_EMAIL' | 'NO_CASE_OWNER' | 'NO_CHARGES_ON_CASE' | 'NO_INSURANCE' | 'NO_LAWFIRM_AVAILABLE' | 'NO_LEGAL_SERVICES_IN_REGION' | 'NO_STRIPE_ACCOUNT' | 'OWNER_CASE_MESSAGE_MISMATCH' | 'PAYMENT_PLANS_DENIED' | 'PAYMENT_PLAN_LEGAL_FEE_HAS_CENTS' | 'PAYMENT_PLAN_NOT_SUPPORTED_WITH_PREPAID_CARD' | 'PDF_PASSWORD_PROTECTED' | 'PLAID_ERROR' | 'QBO_BILL_CREATION_FAILURE' | 'QBO_VENDOR_CREATION_FAILURE' | 'REFERRALS_NOT_ALLOWED_TO_BE_REDEEMED' | 'REFUND_NOT_ALLOWED' | 'REFUND_NOT_ELIGIBLE' | 'REFUND_NOT_ELIGIBLE_CRIMINAL' | 'REQUEST_NOT_WELL_FORMATTED' | 'RESET_TOKEN_EXPIRED' | 'RESOURCE_NOT_FOUND' | 'REVIEW_ALREADY_EXISTS' | 'ROLE_NOT_SUPPORTED' | 'S3_CLIENT_FAILED' | 'S3_SERVER_FAILED' | 'SAME_USER_CANNOT_BE_MERGED' | 'SEO_URL_ALREADY_EXISTS' | 'SERVICE_RATE_NOT_FOUND' | 'SIMILAR_COURT' | 'SOCIAL_PROFILE_MISSING_EMAIL' | 'SSO_SERVICE_PROVIDER_ID_NOT_FOUND' | 'STATE_NOT_SUPPORTED' | 'STRIPE_API_CONNECTION_EXCEPTION' | 'STRIPE_API_EXCEPTION' | 'STRIPE_APPLICATION_FEE_ALREADY_REFUNDED' | 'STRIPE_APPLICATION_FEE_NOT_FOUND' | 'STRIPE_AUTHENTICATION_EXCEPTION' | 'STRIPE_CARD_EXCEPTION' | 'STRIPE_CONNECT_ACCOUNT_NOT_FOUND' | 'STRIPE_ERROR' | 'STRIPE_FAILED_CHARGE' | 'STRIPE_OAUTH_CONNECT_FAILED' | 'STRIPE_OBJECT_MISSING_METADATA' | 'STRIPE_RESOURCE_NOT_FOUND' | 'STRIPE_TRANSFER_EXISTS' | 'STRIPE_TRANSFER_NOT_FOUND' | 'SUBSCRIPTION_NOT_OWNED_BY_USER' | 'TEMPLATE_NOT_SUPPORTED' | 'TRANSFER_ALREADY_REVERSED' | 'TRANSFER_ID_DOESNT_MATCH_CHARGE' | 'TRANSFER_NOT_SAFE' | 'TRANSFER_REVERSAL_NOT_ALLOWED' | 'TRANSFER_TO_SAME_LAWFIRM' | 'UNAUTHORIZED' | 'UNEXPECTED_CASE_STATUS' | 'UNEXPECTED_NULL_INPUT' | 'UNEXPECTED_NUMBER_OF_CHARGES' | 'UNKNOWN' | 'UNKNOWN_CRM_ERROR' | 'URL_ENTITY_MISMATCH' | 'USER_ALREADY_HAS_SECONDARY_ACCOUNT' | 'USER_ALREADY_LOGGED_IN' | 'USER_ALREADY_MERGED' | 'USER_CANT_USE_OWN_CODE' | 'USER_DOES_NOT_MATCH_CITATION' | 'USER_IS_NOT_THE_OWNER' | 'USER_NOT_FOUND' | 'USER_NOT_FOUND_IN_LAWFIRM' | 'VERIFICATION_LINK_NOT_VALID';
|
|
19
19
|
export const OtrErrorEnum = {
|
|
20
20
|
AccessDenied: 'ACCESS_DENIED' as OtrErrorEnum,
|
|
21
21
|
AccountDisabled: 'ACCOUNT_DISABLED' as OtrErrorEnum,
|
|
@@ -271,6 +271,7 @@ export namespace ValidateDirectMailResponse {
|
|
|
271
271
|
UnexpectedNullInput: 'UNEXPECTED_NULL_INPUT' as OtrErrorEnum,
|
|
272
272
|
UnexpectedNumberOfCharges: 'UNEXPECTED_NUMBER_OF_CHARGES' as OtrErrorEnum,
|
|
273
273
|
Unknown: 'UNKNOWN' as OtrErrorEnum,
|
|
274
|
+
UnknownCrmError: 'UNKNOWN_CRM_ERROR' as OtrErrorEnum,
|
|
274
275
|
UrlEntityMismatch: 'URL_ENTITY_MISMATCH' as OtrErrorEnum,
|
|
275
276
|
UserAlreadyHasSecondaryAccount: 'USER_ALREADY_HAS_SECONDARY_ACCOUNT' as OtrErrorEnum,
|
|
276
277
|
UserAlreadyLoggedIn: 'USER_ALREADY_LOGGED_IN' as OtrErrorEnum,
|
|
@@ -9,17 +9,21 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { ViolationPenaltyModel } from './violationPenaltyModel';
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
export interface ViolationModel {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
insuranceIncreasePercent?: number;
|
|
17
|
+
isCriminal?: boolean;
|
|
18
|
+
isMovingViolation?: boolean;
|
|
19
|
+
isWobblerToCriminal?: boolean;
|
|
20
|
+
penalties?: Array<ViolationPenaltyModel>;
|
|
21
|
+
userFriendlyName?: string;
|
|
22
|
+
userFriendlyShortForm?: string;
|
|
20
23
|
violationClassification?: ViolationModel.ViolationClassificationEnum;
|
|
21
24
|
violationCode?: string;
|
|
22
|
-
|
|
25
|
+
violationDesc?: string;
|
|
26
|
+
violationTypeId?: number;
|
|
23
27
|
}
|
|
24
28
|
export namespace ViolationModel {
|
|
25
29
|
export type ViolationClassificationEnum = 'CLASS_1_FELONY' | 'CLASS_1_MISDEMEANOR' | 'CLASS_2_FELONY' | 'CLASS_2_MISDEMEANOR' | 'CLASS_3_FELONY' | 'CLASS_3_MISDEMEANOR' | 'CLASS_4_FELONY' | 'CLASS_4_MISDEMEANOR' | 'CLASS_5_FELONY' | 'CLASS_6_FELONY' | 'CLASS_A1_MISDEMEANOR' | 'CLASS_A_FELONY' | 'CLASS_A_INFRACTION' | 'CLASS_A_MISDEMEANOR' | 'CLASS_A_VIOLATION' | 'CLASS_B_FELONY' | 'CLASS_B_INFRACTION' | 'CLASS_B_MISDEMEANOR' | 'CLASS_B_VIOLATION' | 'CLASS_C_FELONY' | 'CLASS_C_INFRACTION' | 'CLASS_C_MISDEMEANOR' | 'CLASS_C_VIOLATION' | 'CLASS_D_FELONY' | 'CLASS_D_MISDEMEANOR' | 'CLASS_D_VIOLATION' | 'CLASS_E_FELONY' | 'CLASS_F_FELONY' | 'CLASS_H_FELONY' | 'DISORDERLY_PERSONS_OFFENSE' | 'FELONY' | 'FELONY_1ST_DEGREE' | 'FELONY_2ND_DEGREE' | 'FELONY_3RD_DEGREE' | 'FELONY_4TH_DEGREE' | 'FELONY_5TH_DEGREE' | 'GROSS_MISDEMEANOR' | 'HIGH_AND_AGGRAVATED_MISDEMEANOR' | 'INFRACTION' | 'LEVEL_4_FELONY' | 'LEVEL_5_FELONY' | 'LEVEL_6_FELONY' | 'MINOR_MISDEMEANOR' | 'MISDEMEANOR' | 'MISDEMEANOR_1ST_DEGREE' | 'MISDEMEANOR_2ND_DEGREE' | 'MISDEMEANOR_3RD_DEGREE' | 'MISDEMEANOR_4TH_DEGREE' | 'MISDEMEANOR_WITH_REFUND' | 'NON_MOVING' | 'NON_REPORTABLE' | 'PETTY_MISDEMEANOR' | 'QUASI_CRIMINAL' | 'SUMMARY_OFFENSE' | 'SUMMARY_OFFENSE_NO_REFUND' | 'WOBBLER_TO_FELONY' | 'WOBBLER_TO_MISDEMEANOR';
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export interface ViolationPenaltyModel {
|
|
15
|
+
additionalTip?: string;
|
|
16
|
+
penaltyFriendlyDescription?: string;
|
|
17
|
+
penaltyMerged?: boolean;
|
|
18
|
+
penaltyType?: ViolationPenaltyModel.PenaltyTypeEnum;
|
|
19
|
+
penaltyTypeId?: number;
|
|
20
|
+
penaltyValue?: string;
|
|
21
|
+
vectorImageUrl?: string;
|
|
22
|
+
}
|
|
23
|
+
export namespace ViolationPenaltyModel {
|
|
24
|
+
export type PenaltyTypeEnum = 'DEMERIT_POINTS' | 'INCARCERATION_MAX_DAYS' | 'INCARCERATION_MIN_DAYS' | 'INSURANCE_POINTS' | 'INSURANCE_RATE_INCREASE' | 'LICENSE_REVOCATION_MAX_DAYS' | 'LICENSE_REVOCATION_MIN_DAYS' | 'LICENSE_SUSPENSION_MAX_DAYS' | 'LICENSE_SUSPENSION_MIN_DAYS' | 'MANDATORY_COURT_APPEARANCE' | 'MANDATORY_COURT_APPEARANCE_WITH_ATTORNEY' | 'MAX_BAIL_AMOUNT' | 'MIN_BAIL_AMOUNT' | 'PROBATION_IN_DAYS' | 'TOTAL_BAIL_AMOUNT';
|
|
25
|
+
export const PenaltyTypeEnum = {
|
|
26
|
+
DemeritPoints: 'DEMERIT_POINTS' as PenaltyTypeEnum,
|
|
27
|
+
IncarcerationMaxDays: 'INCARCERATION_MAX_DAYS' as PenaltyTypeEnum,
|
|
28
|
+
IncarcerationMinDays: 'INCARCERATION_MIN_DAYS' as PenaltyTypeEnum,
|
|
29
|
+
InsurancePoints: 'INSURANCE_POINTS' as PenaltyTypeEnum,
|
|
30
|
+
InsuranceRateIncrease: 'INSURANCE_RATE_INCREASE' as PenaltyTypeEnum,
|
|
31
|
+
LicenseRevocationMaxDays: 'LICENSE_REVOCATION_MAX_DAYS' as PenaltyTypeEnum,
|
|
32
|
+
LicenseRevocationMinDays: 'LICENSE_REVOCATION_MIN_DAYS' as PenaltyTypeEnum,
|
|
33
|
+
LicenseSuspensionMaxDays: 'LICENSE_SUSPENSION_MAX_DAYS' as PenaltyTypeEnum,
|
|
34
|
+
LicenseSuspensionMinDays: 'LICENSE_SUSPENSION_MIN_DAYS' as PenaltyTypeEnum,
|
|
35
|
+
MandatoryCourtAppearance: 'MANDATORY_COURT_APPEARANCE' as PenaltyTypeEnum,
|
|
36
|
+
MandatoryCourtAppearanceWithAttorney: 'MANDATORY_COURT_APPEARANCE_WITH_ATTORNEY' as PenaltyTypeEnum,
|
|
37
|
+
MaxBailAmount: 'MAX_BAIL_AMOUNT' as PenaltyTypeEnum,
|
|
38
|
+
MinBailAmount: 'MIN_BAIL_AMOUNT' as PenaltyTypeEnum,
|
|
39
|
+
ProbationInDays: 'PROBATION_IN_DAYS' as PenaltyTypeEnum,
|
|
40
|
+
TotalBailAmount: 'TOTAL_BAIL_AMOUNT' as PenaltyTypeEnum
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
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 { WorkflowViolationPenaltyModel } from './workflowViolationPenaltyModel';
|
|
13
|
+
import { WorkflowCitationModel } from './workflowCitationModel';
|
|
14
|
+
import { LegalServiceModel } from './legalServiceModel';
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export interface WorkflowCaseModel {
|
|
18
|
+
caseId?: string;
|
|
19
|
+
citation?: WorkflowCitationModel;
|
|
20
|
+
isLawfirmCodeApplied?: boolean;
|
|
21
|
+
legalServices?: Array<LegalServiceModel>;
|
|
22
|
+
maxPenalties?: Array<WorkflowViolationPenaltyModel>;
|
|
23
|
+
referralCodeOwner?: WorkflowCaseModel.ReferralCodeOwnerEnum;
|
|
24
|
+
userId?: number;
|
|
25
|
+
}
|
|
26
|
+
export namespace WorkflowCaseModel {
|
|
27
|
+
export type ReferralCodeOwnerEnum = 'LAWFIRM' | 'OTR';
|
|
28
|
+
export const ReferralCodeOwnerEnum = {
|
|
29
|
+
Lawfirm: 'LAWFIRM' as ReferralCodeOwnerEnum,
|
|
30
|
+
Otr: 'OTR' as ReferralCodeOwnerEnum
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
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 { WorkflowViolationModel } from './workflowViolationModel';
|
|
13
|
+
import { CourtDomain } from './courtDomain';
|
|
14
|
+
import { AddressDomain } from './addressDomain';
|
|
15
|
+
import { PureDate } from './pureDate';
|
|
16
|
+
import { Timestamp } from './timestamp';
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
export interface WorkflowCitationModel {
|
|
20
|
+
address?: AddressDomain;
|
|
21
|
+
citationId?: number;
|
|
22
|
+
citationIssueDate?: PureDate;
|
|
23
|
+
citationIssueDateUtc?: Timestamp;
|
|
24
|
+
court?: CourtDomain;
|
|
25
|
+
fineAmount?: number;
|
|
26
|
+
involvesAccident?: boolean;
|
|
27
|
+
isDeleted?: boolean;
|
|
28
|
+
signedTicketImageUrl?: string;
|
|
29
|
+
ticketImageUrl?: string;
|
|
30
|
+
ticketNumber?: string;
|
|
31
|
+
violations?: Array<WorkflowViolationModel>;
|
|
32
|
+
}
|
|
33
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
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 { WorkflowCaseModel } from './workflowCaseModel';
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export interface WorkflowStateResponse {
|
|
16
|
+
projectedInsuranceCostInCents?: number;
|
|
17
|
+
theCase?: WorkflowCaseModel;
|
|
18
|
+
}
|
|
19
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
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 { WorkflowViolationPenaltyModel } from './workflowViolationPenaltyModel';
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export interface WorkflowViolationModel {
|
|
16
|
+
isCriminal?: boolean;
|
|
17
|
+
isWobblerToCriminal?: boolean;
|
|
18
|
+
penalties?: Array<WorkflowViolationPenaltyModel>;
|
|
19
|
+
violationClassification?: WorkflowViolationModel.ViolationClassificationEnum;
|
|
20
|
+
violationCode?: string;
|
|
21
|
+
violationDesc?: string;
|
|
22
|
+
violationTypeId?: number;
|
|
23
|
+
}
|
|
24
|
+
export namespace WorkflowViolationModel {
|
|
25
|
+
export type ViolationClassificationEnum = 'CLASS_1_FELONY' | 'CLASS_1_MISDEMEANOR' | 'CLASS_2_FELONY' | 'CLASS_2_MISDEMEANOR' | 'CLASS_3_FELONY' | 'CLASS_3_MISDEMEANOR' | 'CLASS_4_FELONY' | 'CLASS_4_MISDEMEANOR' | 'CLASS_5_FELONY' | 'CLASS_6_FELONY' | 'CLASS_A1_MISDEMEANOR' | 'CLASS_A_FELONY' | 'CLASS_A_INFRACTION' | 'CLASS_A_MISDEMEANOR' | 'CLASS_A_VIOLATION' | 'CLASS_B_FELONY' | 'CLASS_B_INFRACTION' | 'CLASS_B_MISDEMEANOR' | 'CLASS_B_VIOLATION' | 'CLASS_C_FELONY' | 'CLASS_C_INFRACTION' | 'CLASS_C_MISDEMEANOR' | 'CLASS_C_VIOLATION' | 'CLASS_D_FELONY' | 'CLASS_D_MISDEMEANOR' | 'CLASS_D_VIOLATION' | 'CLASS_E_FELONY' | 'CLASS_F_FELONY' | 'CLASS_H_FELONY' | 'DISORDERLY_PERSONS_OFFENSE' | 'FELONY' | 'FELONY_1ST_DEGREE' | 'FELONY_2ND_DEGREE' | 'FELONY_3RD_DEGREE' | 'FELONY_4TH_DEGREE' | 'FELONY_5TH_DEGREE' | 'GROSS_MISDEMEANOR' | 'HIGH_AND_AGGRAVATED_MISDEMEANOR' | 'INFRACTION' | 'LEVEL_4_FELONY' | 'LEVEL_5_FELONY' | 'LEVEL_6_FELONY' | 'MINOR_MISDEMEANOR' | 'MISDEMEANOR' | 'MISDEMEANOR_1ST_DEGREE' | 'MISDEMEANOR_2ND_DEGREE' | 'MISDEMEANOR_3RD_DEGREE' | 'MISDEMEANOR_4TH_DEGREE' | 'MISDEMEANOR_WITH_REFUND' | 'NON_MOVING' | 'NON_REPORTABLE' | 'PETTY_MISDEMEANOR' | 'QUASI_CRIMINAL' | 'SUMMARY_OFFENSE' | 'SUMMARY_OFFENSE_NO_REFUND' | 'WOBBLER_TO_FELONY' | 'WOBBLER_TO_MISDEMEANOR';
|
|
26
|
+
export const ViolationClassificationEnum = {
|
|
27
|
+
Class1Felony: 'CLASS_1_FELONY' as ViolationClassificationEnum,
|
|
28
|
+
Class1Misdemeanor: 'CLASS_1_MISDEMEANOR' as ViolationClassificationEnum,
|
|
29
|
+
Class2Felony: 'CLASS_2_FELONY' as ViolationClassificationEnum,
|
|
30
|
+
Class2Misdemeanor: 'CLASS_2_MISDEMEANOR' as ViolationClassificationEnum,
|
|
31
|
+
Class3Felony: 'CLASS_3_FELONY' as ViolationClassificationEnum,
|
|
32
|
+
Class3Misdemeanor: 'CLASS_3_MISDEMEANOR' as ViolationClassificationEnum,
|
|
33
|
+
Class4Felony: 'CLASS_4_FELONY' as ViolationClassificationEnum,
|
|
34
|
+
Class4Misdemeanor: 'CLASS_4_MISDEMEANOR' as ViolationClassificationEnum,
|
|
35
|
+
Class5Felony: 'CLASS_5_FELONY' as ViolationClassificationEnum,
|
|
36
|
+
Class6Felony: 'CLASS_6_FELONY' as ViolationClassificationEnum,
|
|
37
|
+
ClassA1Misdemeanor: 'CLASS_A1_MISDEMEANOR' as ViolationClassificationEnum,
|
|
38
|
+
ClassAFelony: 'CLASS_A_FELONY' as ViolationClassificationEnum,
|
|
39
|
+
ClassAInfraction: 'CLASS_A_INFRACTION' as ViolationClassificationEnum,
|
|
40
|
+
ClassAMisdemeanor: 'CLASS_A_MISDEMEANOR' as ViolationClassificationEnum,
|
|
41
|
+
ClassAViolation: 'CLASS_A_VIOLATION' as ViolationClassificationEnum,
|
|
42
|
+
ClassBFelony: 'CLASS_B_FELONY' as ViolationClassificationEnum,
|
|
43
|
+
ClassBInfraction: 'CLASS_B_INFRACTION' as ViolationClassificationEnum,
|
|
44
|
+
ClassBMisdemeanor: 'CLASS_B_MISDEMEANOR' as ViolationClassificationEnum,
|
|
45
|
+
ClassBViolation: 'CLASS_B_VIOLATION' as ViolationClassificationEnum,
|
|
46
|
+
ClassCFelony: 'CLASS_C_FELONY' as ViolationClassificationEnum,
|
|
47
|
+
ClassCInfraction: 'CLASS_C_INFRACTION' as ViolationClassificationEnum,
|
|
48
|
+
ClassCMisdemeanor: 'CLASS_C_MISDEMEANOR' as ViolationClassificationEnum,
|
|
49
|
+
ClassCViolation: 'CLASS_C_VIOLATION' as ViolationClassificationEnum,
|
|
50
|
+
ClassDFelony: 'CLASS_D_FELONY' as ViolationClassificationEnum,
|
|
51
|
+
ClassDMisdemeanor: 'CLASS_D_MISDEMEANOR' as ViolationClassificationEnum,
|
|
52
|
+
ClassDViolation: 'CLASS_D_VIOLATION' as ViolationClassificationEnum,
|
|
53
|
+
ClassEFelony: 'CLASS_E_FELONY' as ViolationClassificationEnum,
|
|
54
|
+
ClassFFelony: 'CLASS_F_FELONY' as ViolationClassificationEnum,
|
|
55
|
+
ClassHFelony: 'CLASS_H_FELONY' as ViolationClassificationEnum,
|
|
56
|
+
DisorderlyPersonsOffense: 'DISORDERLY_PERSONS_OFFENSE' as ViolationClassificationEnum,
|
|
57
|
+
Felony: 'FELONY' as ViolationClassificationEnum,
|
|
58
|
+
Felony1StDegree: 'FELONY_1ST_DEGREE' as ViolationClassificationEnum,
|
|
59
|
+
Felony2NdDegree: 'FELONY_2ND_DEGREE' as ViolationClassificationEnum,
|
|
60
|
+
Felony3RdDegree: 'FELONY_3RD_DEGREE' as ViolationClassificationEnum,
|
|
61
|
+
Felony4ThDegree: 'FELONY_4TH_DEGREE' as ViolationClassificationEnum,
|
|
62
|
+
Felony5ThDegree: 'FELONY_5TH_DEGREE' as ViolationClassificationEnum,
|
|
63
|
+
GrossMisdemeanor: 'GROSS_MISDEMEANOR' as ViolationClassificationEnum,
|
|
64
|
+
HighAndAggravatedMisdemeanor: 'HIGH_AND_AGGRAVATED_MISDEMEANOR' as ViolationClassificationEnum,
|
|
65
|
+
Infraction: 'INFRACTION' as ViolationClassificationEnum,
|
|
66
|
+
Level4Felony: 'LEVEL_4_FELONY' as ViolationClassificationEnum,
|
|
67
|
+
Level5Felony: 'LEVEL_5_FELONY' as ViolationClassificationEnum,
|
|
68
|
+
Level6Felony: 'LEVEL_6_FELONY' as ViolationClassificationEnum,
|
|
69
|
+
MinorMisdemeanor: 'MINOR_MISDEMEANOR' as ViolationClassificationEnum,
|
|
70
|
+
Misdemeanor: 'MISDEMEANOR' as ViolationClassificationEnum,
|
|
71
|
+
Misdemeanor1StDegree: 'MISDEMEANOR_1ST_DEGREE' as ViolationClassificationEnum,
|
|
72
|
+
Misdemeanor2NdDegree: 'MISDEMEANOR_2ND_DEGREE' as ViolationClassificationEnum,
|
|
73
|
+
Misdemeanor3RdDegree: 'MISDEMEANOR_3RD_DEGREE' as ViolationClassificationEnum,
|
|
74
|
+
Misdemeanor4ThDegree: 'MISDEMEANOR_4TH_DEGREE' as ViolationClassificationEnum,
|
|
75
|
+
MisdemeanorWithRefund: 'MISDEMEANOR_WITH_REFUND' as ViolationClassificationEnum,
|
|
76
|
+
NonMoving: 'NON_MOVING' as ViolationClassificationEnum,
|
|
77
|
+
NonReportable: 'NON_REPORTABLE' as ViolationClassificationEnum,
|
|
78
|
+
PettyMisdemeanor: 'PETTY_MISDEMEANOR' as ViolationClassificationEnum,
|
|
79
|
+
QuasiCriminal: 'QUASI_CRIMINAL' as ViolationClassificationEnum,
|
|
80
|
+
SummaryOffense: 'SUMMARY_OFFENSE' as ViolationClassificationEnum,
|
|
81
|
+
SummaryOffenseNoRefund: 'SUMMARY_OFFENSE_NO_REFUND' as ViolationClassificationEnum,
|
|
82
|
+
WobblerToFelony: 'WOBBLER_TO_FELONY' as ViolationClassificationEnum,
|
|
83
|
+
WobblerToMisdemeanor: 'WOBBLER_TO_MISDEMEANOR' as ViolationClassificationEnum
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export interface WorkflowViolationPenaltyModel {
|
|
15
|
+
penaltyFriendlyDescription?: string;
|
|
16
|
+
penaltyType?: WorkflowViolationPenaltyModel.PenaltyTypeEnum;
|
|
17
|
+
penaltyValue?: string;
|
|
18
|
+
}
|
|
19
|
+
export namespace WorkflowViolationPenaltyModel {
|
|
20
|
+
export type PenaltyTypeEnum = 'DEMERIT_POINTS' | 'INCARCERATION_MAX_DAYS' | 'INCARCERATION_MIN_DAYS' | 'INSURANCE_POINTS' | 'INSURANCE_RATE_INCREASE' | 'LICENSE_REVOCATION_MAX_DAYS' | 'LICENSE_REVOCATION_MIN_DAYS' | 'LICENSE_SUSPENSION_MAX_DAYS' | 'LICENSE_SUSPENSION_MIN_DAYS' | 'MANDATORY_COURT_APPEARANCE' | 'MANDATORY_COURT_APPEARANCE_WITH_ATTORNEY' | 'MAX_BAIL_AMOUNT' | 'MIN_BAIL_AMOUNT' | 'PROBATION_IN_DAYS' | 'TOTAL_BAIL_AMOUNT';
|
|
21
|
+
export const PenaltyTypeEnum = {
|
|
22
|
+
DemeritPoints: 'DEMERIT_POINTS' as PenaltyTypeEnum,
|
|
23
|
+
IncarcerationMaxDays: 'INCARCERATION_MAX_DAYS' as PenaltyTypeEnum,
|
|
24
|
+
IncarcerationMinDays: 'INCARCERATION_MIN_DAYS' as PenaltyTypeEnum,
|
|
25
|
+
InsurancePoints: 'INSURANCE_POINTS' as PenaltyTypeEnum,
|
|
26
|
+
InsuranceRateIncrease: 'INSURANCE_RATE_INCREASE' as PenaltyTypeEnum,
|
|
27
|
+
LicenseRevocationMaxDays: 'LICENSE_REVOCATION_MAX_DAYS' as PenaltyTypeEnum,
|
|
28
|
+
LicenseRevocationMinDays: 'LICENSE_REVOCATION_MIN_DAYS' as PenaltyTypeEnum,
|
|
29
|
+
LicenseSuspensionMaxDays: 'LICENSE_SUSPENSION_MAX_DAYS' as PenaltyTypeEnum,
|
|
30
|
+
LicenseSuspensionMinDays: 'LICENSE_SUSPENSION_MIN_DAYS' as PenaltyTypeEnum,
|
|
31
|
+
MandatoryCourtAppearance: 'MANDATORY_COURT_APPEARANCE' as PenaltyTypeEnum,
|
|
32
|
+
MandatoryCourtAppearanceWithAttorney: 'MANDATORY_COURT_APPEARANCE_WITH_ATTORNEY' as PenaltyTypeEnum,
|
|
33
|
+
MaxBailAmount: 'MAX_BAIL_AMOUNT' as PenaltyTypeEnum,
|
|
34
|
+
MinBailAmount: 'MIN_BAIL_AMOUNT' as PenaltyTypeEnum,
|
|
35
|
+
ProbationInDays: 'PROBATION_IN_DAYS' as PenaltyTypeEnum,
|
|
36
|
+
TotalBailAmount: 'TOTAL_BAIL_AMOUNT' as PenaltyTypeEnum
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
|
|
@@ -15423,6 +15423,42 @@ angular.module('otrBackendService', [])
|
|
|
15423
15423
|
|
|
15424
15424
|
return deferred.promise;
|
|
15425
15425
|
};
|
|
15426
|
+
/**
|
|
15427
|
+
* getWorkflowState
|
|
15428
|
+
* @method
|
|
15429
|
+
* @name OtrService#getWorkflowStateUsingGET
|
|
15430
|
+
* @param {object} parameters - method options and parameters
|
|
15431
|
+
* @param {string} parameters.caseId - caseId
|
|
15432
|
+
* @param {integer} parameters.citationId - citationId
|
|
15433
|
+
*/
|
|
15434
|
+
OtrService.prototype.getWorkflowStateUsingGET = function(parameters) {
|
|
15435
|
+
if (parameters === undefined) {
|
|
15436
|
+
parameters = {};
|
|
15437
|
+
}
|
|
15438
|
+
var deferred = $q.defer();
|
|
15439
|
+
var domain = this.domain,
|
|
15440
|
+
path = '/api/v1/workflow-state';
|
|
15441
|
+
var body = {},
|
|
15442
|
+
queryParameters = {},
|
|
15443
|
+
headers = {},
|
|
15444
|
+
form = {};
|
|
15445
|
+
|
|
15446
|
+
headers['Accept'] = ['*/*'];
|
|
15447
|
+
|
|
15448
|
+
if (parameters['caseId'] !== undefined) {
|
|
15449
|
+
queryParameters['caseId'] = parameters['caseId'];
|
|
15450
|
+
}
|
|
15451
|
+
|
|
15452
|
+
if (parameters['citationId'] !== undefined) {
|
|
15453
|
+
queryParameters['citationId'] = parameters['citationId'];
|
|
15454
|
+
}
|
|
15455
|
+
|
|
15456
|
+
queryParameters = mergeQueryParams(parameters, queryParameters);
|
|
15457
|
+
|
|
15458
|
+
this.request('GET', domain + path, parameters, body, headers, queryParameters, form, deferred);
|
|
15459
|
+
|
|
15460
|
+
return deferred.promise;
|
|
15461
|
+
};
|
|
15426
15462
|
/**
|
|
15427
15463
|
* cancelCase
|
|
15428
15464
|
* @method
|